我觉得Mocha令人沮丧的一件事是,当测试失败时,他们不会给出失败行的实际错误消息,而是以错误结束:超过2000ms的超时。确保在此测试中调用done()回调。
以此测试为例:
describe("myTest", function() {
it("should return valid JSON.", function(done) {
api.myCall("valid value").then(function(result) {
console.log(result);
var resultObj = JSON.parse(result);
assert.isFalse(resultObj.hasOwnProperty("error"), "result has an error");
done();
});
});
});
输出结果为:
myTest
{"error":null,"status":403}
1) should return valid JSON.
0 passing (2s)
1 failing
1) myTest should return valid JSON.:
Error: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test.
assert.isFalse失败,但不显示应显示的消息(“结果有错误”)。事实上,处理似乎就在那里停止,因为从未调用done()。取出那条线并且测试通过,因为调用了done()。
那么,我错过了什么?为什么摩卡测试表现如此?我正在使用的实际测试库是:
var assert = require("chai").assert;
有谁知道我做错了什么或为什么这样做?
答案 0 :(得分:2)
看起来你的API正在使用promises。在尝试其他任何事情之前,我建议检查API的文档中有关promises的内容以及如何处理未处理的异常,因为这可能是这里发生的事情。一些承诺实现要求您在调用链的末尾调用.done()
以确保将处理未捕获的异常。有些要求正确配置某些全局承诺设置。 Bluebird文档提供了很好的discussion问题。
Mocha能够在普通代码中处理未捕获的异常:
var chai = require("chai");
var assert = chai.assert;
chai.config.includeStack = true;
describe("foo", function() {
it("let the exception be caught by Mocha", function(done) {
setTimeout(function () {
assert.isFalse(true, "foo");
done();
}, 1000);
});
});
这将导致输出:
foo
1) let the exception be caught by Mocha
0 passing (1s)
1 failing
1) foo let the exception be caught by Mocha:
Uncaught AssertionError: foo: expected true to be false
at Assertion.<anonymous> (/tmp/t7/node_modules/chai/lib/chai/core/assertions.js:286:10)
at Assertion.Object.defineProperty.get (/tmp/t7/node_modules/chai/lib/chai/utils/addProperty.js:35:29)
at Function.assert.isFalse (/tmp/t7/node_modules/chai/lib/chai/interface/assert.js:297:31)
at null._onTimeout (/tmp/t7/test.js:8:20)
at Timer.listOnTimeout (timers.js:119:15)
答案 1 :(得分:1)
我在代码中遇到了相同的问题,使用 String test = request.getParameter("test");
作为承诺。
发生的事情是:
Q
块内的断言失败。then
块的其余部分(包括then
语句)未执行。done()
区块,但那里没有。我通过做这样的事情来解决这个问题:
catch