我尝试在节点中使用测试工具mocha。请考虑以下测试场景
var requirejs = require('requirejs');
requirejs.config({
//Pass the top-level main.js/index.js require
//function to requirejs so that node modules
//are loaded relative to the top-level JS file.
nodeRequire: require
});
describe('Testing controller', function () {
it('Should be pass', function (done) {
(4).should.equal(4);
done();
});
it('Should avoid name king', function (done) {
requirejs(['../server/libs/validate_name'], function (validateName) {
var err_test, accountExists_test, notAllow_test, available_test;
validateName('anu', function (err, accountExists, notAllow, available) {
accountExists.should.not.be.true;
done();
});
});
});
});
作为我的测试结果:
$ make test
./node_modules/.bin/mocha \
--reporter list
. Testing controller Should be pass: 0ms
1) Testing controller Should avoid name anu
1 passing (560 ms)
1 failing
1) Testing controller Should avoid name anu:
Uncaught TypeError: Cannot read property 'should' of null
at d:\townspeech\test\test.spec.js:23:30
at d:\townspeech\server\libs\validate_name.js:31:20
at d:\townspeech\test\test.spec.js:22:13
at Object.context.execCb (d:\townspeech\node_modules\requirejs\bin\r.js:1869:33)
at Object.Module.check (d:\townspeech\node_modules\requirejs\bin\r.js:1105:51)
at Object.Module.enable (d:\townspeech\node_modules\requirejs\bin\r.js:1376:22)
at Object.Module.init (d:\townspeech\node_modules\requirejs\bin\r.js:1013:26)
at null._onTimeout (d:\townspeech\node_modules\requirejs\bin\r.js:1646:36)
at Timer.listOnTimeout [as ontimeout] (timers.js:110:15)
make: *** [test] Error 1
第一次传球没有任何复杂但第二次,似乎,无法附加模块shouldjs。为什么呢?
答案 0 :(得分:77)
我遇到了同样的问题。我用以下方法解决了这个问题:
(err === null).should.be.true;
答案 1 :(得分:28)
你可以直接使用
should.not.exist(err);
答案 2 :(得分:9)
这是should
库的已知问题:当它扩展object
时,它当然只有在你有一个具体对象时才有效。根据定义,null
表示您没有对象,您无法在其上调用任何方法或访问其任何属性。
因此,should
在这种情况下不可用。
基本上,您有两种方法可以解决这个问题:
actual
和expected
。这样,只要您不期望null
,就会在开头有一个对象,因此可以访问其should
属性。但是,这并不好,因为它改变了语义,并不适用于所有情况。should
库。就我个人而言,我选择了第2选项,我个人最喜欢的是node-assertthat(这是我写的,因此它是我的最爱)。
无论如何,还有很多其他选项,例如expect。随意使用任何最适合您编写测试风格的断言库。
答案 3 :(得分:5)
我在这里看到的另一个选项是:
should(err === null).be.null
在你的例子中会是:
should(accountExists).be.null
答案 4 :(得分:0)
我总是发现expect
与null
和undefined
的搭配效果更好,如下所示:
expect(err).be.null