瀏覽代碼

Clock moved from common to the root src path. Renamed some tests. Combined utils.bcd and utils.bitman tests into a unified utils test. Utils path can now be imported like a module.

master
Bryan Miller 5 年之前
父節點
當前提交
e65b597706
共有 7 個檔案被更改,包括 71 行新增67 行删除
  1. +0
    -0
      src/clock.js
  2. +6
    -0
      src/utils/index.js
  3. +1
    -1
      test/unit.src.clock.spec.js
  4. +0
    -0
      test/unit.src.memory.spec.js
  5. +0
    -35
      test/unit.src.utils.bcd.spec.js
  6. +0
    -31
      test/unit.src.utils.bitman.spec.js
  7. +64
    -0
      test/unit.src.utils.spec.js

src/common/clock.js → src/clock.js 查看文件


+ 6
- 0
src/utils/index.js 查看文件

@@ -0,0 +1,6 @@

module.exports = {
BCD: require('./bcd.js'),
Bitman: require('./bitman.js')
};


test/unit.src.common.clock.spec.js → test/unit.src.clock.spec.js 查看文件

@@ -1,6 +1,6 @@
const expect = require('chai').expect;
const sinon = require('sinon');
const Clock = require('../src/common/clock.js');
const Clock = require('../src/clock.js');

describe("Clock Tests", function(){
var count = 0;

test/unit.src.memory.memory.spec.js → test/unit.src.memory.spec.js 查看文件


+ 0
- 35
test/unit.src.utils.bcd.spec.js 查看文件

@@ -1,35 +0,0 @@
const expect = require('chai').expect;
const BCD = require('../src/utils/bcd.js');



describe("BCD Utils Tests...", function(){
it(".isValid()", function(){
expect(BCD.isValid(0x01, 2)).to.be.true;
expect(BCD.isValid(0x78, 2)).to.be.true;
expect(BCD.isValid(0xF4, 2)).to.be.false;
expect(BCD.isValid(0xF4, 1)).to.be.true;
});

it(".int2BCD()");

it(".BCD2Int()", function(){
expect(BCD.BCD2Int(0x10, 2)).to.equal(10);
expect(BCD.BCD2Int(0x15, 1)).to.equal(5);
expect(BCD.BCD2Int(0x144, 3)).to.equal(144);
expect(BCD.BCD2Int(0x144, 2)).to.equal(44);
expect(BCD.BCD2Int(0x12, 3)).to.equal(12);
});

it(".add()", function(){
expect(BCD.add(0x05, 0x11, 2)).to.equal(0x16);
expect(BCD.add(0x5, 0x11, 2)).to.equal(0x16);
expect(BCD.add(0x111, 0x12, 3)).to.equal(0x123);
expect(BCD.add(0x90, 0x11, 3)).to.equal(0x101);
expect(BCD.add(0x90, 0x11, 2)).to.equal(0x01);
});
});





+ 0
- 31
test/unit.src.utils.bitman.spec.js 查看文件

@@ -1,31 +0,0 @@
const BIT = require('../src/utils/bitman.js');
const expect = require('chai').expect;

describe("Testing utils/bitman ...", function(){
it(".isOn() 'true' test", function(){
expect(BIT.isOn(parseInt("0010", 2), 1)).be.true;
});

it(".isOn() 'false' test", function(){
expect(BIT.isOn(parseInt('0111', 2), 3)).be.false;
});

it(".set()", function(){
let num = 1;
num = BIT.set(num, 1);
expect(num).to.equal(3);
});

it(".clear()", function(){
let num = 15;
num = BIT.clear(num, 2);
expect(num).to.equal(11);
});

it(".toggle()", function(){
let num = 9;
num = BIT.toggle(num, 3);
num = BIT.toggle(num, 2);
expect(num).to.equal(5);
});
});

+ 64
- 0
test/unit.src.utils.spec.js 查看文件

@@ -0,0 +1,64 @@
const expect = require('chai').expect;
const utils = require('../src/utils');
const BCD = utils.BCD;
const BIT = utils.Bitman;


describe("Utils Tests...", function(){
describe("BCD Tests...", function(){
it(".isValid()", function(){
expect(BCD.isValid(0x01, 2)).to.be.true;
expect(BCD.isValid(0x78, 2)).to.be.true;
expect(BCD.isValid(0xF4, 2)).to.be.false;
expect(BCD.isValid(0xF4, 1)).to.be.true;
});

it(".int2BCD()");

it(".BCD2Int()", function(){
expect(BCD.BCD2Int(0x10, 2)).to.equal(10);
expect(BCD.BCD2Int(0x15, 1)).to.equal(5);
expect(BCD.BCD2Int(0x144, 3)).to.equal(144);
expect(BCD.BCD2Int(0x144, 2)).to.equal(44);
expect(BCD.BCD2Int(0x12, 3)).to.equal(12);
});

it(".add()", function(){
expect(BCD.add(0x05, 0x11, 2)).to.equal(0x16);
expect(BCD.add(0x5, 0x11, 2)).to.equal(0x16);
expect(BCD.add(0x111, 0x12, 3)).to.equal(0x123);
expect(BCD.add(0x90, 0x11, 3)).to.equal(0x101);
expect(BCD.add(0x90, 0x11, 2)).to.equal(0x01);
});
});


describe("Bitman Tests...", function(){
it(".isOn() 'true' test", function(){
expect(BIT.isOn(parseInt("0010", 2), 1)).be.true;
});

it(".isOn() 'false' test", function(){
expect(BIT.isOn(parseInt('0111', 2), 3)).be.false;
});

it(".set()", function(){
let num = 1;
num = BIT.set(num, 1);
expect(num).to.equal(3);
});

it(".clear()", function(){
let num = 15;
num = BIT.clear(num, 2);
expect(num).to.equal(11);
});

it(".toggle()", function(){
let num = 9;
num = BIT.toggle(num, 3);
num = BIT.toggle(num, 2);
expect(num).to.equal(5);
});
});
});

Loading…
取消
儲存