我正在构建一个节点模块,我正在尽力对它进行单元测试。我已经设置了mocha和chai来进行测试处理。我在测试异步方法(返回promises的方法)时遇到问题。
在以下测试中,我正在测试“升级”对象上的方法。
it('Should return a list of versions for the default git repo', function (done) {
fs.writeFileSync(appSetup.CONFIG_FILENAME, JSON.stringify(appSetup.DEFAULT_CONFIG));
var upgrade = new Upgrade({
quiet: true
});
upgrade.getVersions().then(function (versions) {
assert(versions && versions.length > 0, 'Should have at least one version.');
assert.equal(1, 2); // this throws the exception which causes the test case not even exist
done();
}, done);
});
getVersions()
调用返回一个promise,因为该方法是异步的。当promise解析时,我想测试versions
变量中返回的值。
assert(versions && versions.length > 0, 'Should have at least one version.');
是实际测试。我添加了assert.equal(1, 2);
,因为我注意到当测试失败时,测试用例甚至不会显示在测试列表中。
我假设断言调用抛出了Mocha应该拾取的异常。然而,它被困在promises then
处理函数中。
这里发生了什么?为什么当断言在该方法中失败时,它不会在列表中显示测试用例(它不会显示为失败;就像它不存在一样)?
答案 0 :(得分:11)
问题的核心是你拥有的代码基本上是:
try {
var versions = upgrade.getVersions();
} catch (err){
return done(err);
}
assert(versions && versions.length > 0, 'Should have at least one version.');
assert.equal(1, 2); // this throws the exception which causes the test case not even exist
done();
看一下,应该很清楚,如果断言抛出,那么 回调都不会运行。
try {
var versions = upgrade.getVersions();
assert(versions && versions.length > 0, 'Should have at least one version.');
assert.equal(1, 2); // this throws the exception which causes the test case not even exist
done();
} catch (err){
return done(err);
}
更像你想要的,那就是:
upgrade.getVersions().then(function (versions) {
assert(versions && versions.length > 0, 'Should have at least one version.');
assert.equal(1, 2); // this throws the exception which causes the test case not even exist
}).then(done, done);
节点,这将执行断言,然后将回调移动到将始终处理错误的辅助.then()
。
也就是说,简单地将承诺作为
返回会更容易return upgrade.getVersions().then(function (versions) {
assert(versions && versions.length > 0, 'Should have at least one version.');
assert.equal(1, 2); // this throws the exception which causes the test case not even exist
});
让Mocha在没有回调的情况下监控承诺。
答案 1 :(得分:4)
在您调用回调之前,测试不会显示在列表中,如果断言失败,则不会发生回调。您需要在最终承诺上调用.catch(done)
以确保始终调用done
。
如果你给它一个超时值,测试将出现,你应该这样做。
所有这一切,mocha
都理解承诺。你根本不需要处理回调:
it('Should return a list of versions for the default git repo', function () {
fs.writeFileSync(appSetup.CONFIG_FILENAME, JSON.stringify(appSetup.DEFAULT_CONFIG));
var upgrade = new Upgrade({
quiet: true
});
return upgrade.getVersions().then(function (versions) {
assert(versions && versions.length > 0, 'Should have at least one version.');
assert.equal(1, 2);
});
});