基于Express,Mocha + Istanbul。
Github: https://github.com/prufeng/autotest-node
npm i -D mocha
var assert = require('assert');
describe('Array', function() {
describe('#indexOf()', function() {
it('should return -1 when the value is not present', function() {
assert.equal([1,2,3].indexOf(4), -1);
});
});
});
Add test
to package.json scripts
node as below.
"scripts": {
"start": "node ./bin/www",
"test": "mocha"
}
Run npm test
, will get result in the terminal.
> mocha
Array
#indexOf()
√ should return -1 when the value is not present
1 passing (5ms)
新版本Istanbul命令行工具已经改为nyc。
$ npm i -D nyc
修改package.json
{
"scripts": {
"test": "nyc mocha --timeout=3000"
}
}
运行npm test
,得结果如下:
> nyc mocha --timeout=3000
Array
#indexOf()
√ should return -1 when the value is not present
1 passing (8ms)
----------|----------|----------|----------|----------|-------------------|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
----------|----------|----------|----------|----------|-------------------|
All files | 0 | 0 | 0 | 0 | |
----------|----------|----------|----------|----------|-------------------|
因为没有测试到任何代码,所以上例各项覆盖率为0。
添加如下代码供测试。
//calc.js
let calc = new Object();
calc.add = function(x, y){
return x+y;
}
calc.minus = function(x,y){
return x-y;
}
module.exports = calc;
新建calc.spec.js。
//test/calc.spec.js
var assert = require('assert');
var calc = require('../calc');
describe('Calculator', function() {
describe('add', function() {
it('add(1,2) should return 3', function() {
assert.equal(calc.add(1,2),3);
});
});
});
运行测试,结果变为:
----------|----------|----------|----------|----------|-------------------|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
----------|----------|----------|----------|----------|-------------------|
All files | 83.33 | 100 | 50 | 83.33 | |
calc.js | 83.33 | 100 | 50 | 83.33 | 6 |
----------|----------|----------|----------|----------|-------------------|
修改calc.spec.js,添加测试用例。
//test/calc.spec.js
var assert = require('assert');
var calc = require('../calc');
describe('Calculator', function() {
describe('add', function() {
it('add(1,2) should return 3', function() {
assert.equal(calc.add(1,2),3);
});
});
describe('minus', function() {
it('minus(1,2) should return -1', function() {
assert.equal(calc.minus(1,2),-1);
});
});
});
运行测试,结果变为100%。
----------|----------|----------|----------|----------|-------------------|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
----------|----------|----------|----------|----------|-------------------|
All files | 100 | 100 | 100 | 100 | |
calc.js | 100 | 100 | 100 | 100 | |
----------|----------|----------|----------|----------|-------------------|
以上report还是有点问题,只包含了一个文件,并没有出现项目中的其他文件,说明Istanbul只是统计了测试中的文件。
var app = require('../app');
把App入口文件import进去test.js以后,得结果如下。
-----------------|----------|----------|----------|----------|-------------------|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
-----------------|----------|----------|----------|----------|-------------------|
All files | 82.93 | 0 | 33.33 | 82.93 | |
autotest | 83.87 | 0 | 50 | 83.87 | |
app.js | 80 | 0 | 0 | 80 | 27,33,34,37,38 |
calc.js | 100 | 100 | 100 | 100 | |
autotest/routes | 80 | 100 | 0 | 80 | |
index.js | 80 | 100 | 0 | 80 | 6 |
users.js | 80 | 100 | 0 | 80 | 6 |
-----------------|----------|----------|----------|----------|-------------------|
要把所有文件包含进去,可以为nyc命令增加-a参数,即修改如下。
"test": "nyc -a --reporter=clover mocha --recursive"