我正在尝试使用chai-as-promised来测试我用bluebird promises编写的一段代码。
我要测试的方法会返回拒绝承诺,如下所示:
/**
* Creates a new user entry in the database.
* @param {JSONObject} userData -- User details for creation.
* @return => {boolean} true if succefully created, false otherwise.
**/
createUser: function(userData) {
return Promise.reject();
},
测试代码如下:
describe('User creation test suite', function() {
it('Should successfully create root user', function(done) {
expect(users.createUser(sampleUsers.raam))
.to.eventually.have.property('id').and.notify(done);
//expect(Promise.resolve({foo:'bar'})).to.eventually.have.property('id').and.notify(done);
});
尽管如此,该方法故意失败,但测试用例被标记为已通过。这是输出。
用户创建测试套件
✓ Should successfully create root user
如果我直接使用像
这样的硬编码字符串进行测试expect(Promise.resolve({foo:'bar'})).to.eventually.have.property('id').and.notify(done);
然后它似乎工作。我在这里做错了什么?
修改 我发现它与蓝鸟的承诺或我正在测试的方法没什么关系。简单的硬编码拒绝也无法正常工作。那是......,
expect(Promise.reject({foo:'bar'})).to.eventually.have.property('id').and.notify(done)
以传递方式返回,而不是失败。我在这里做了一件非常错的事吗?
答案 0 :(得分:0)
调用将回调传递给您的Mocha测试,然后在执行完成后调用它 - 正如您使用done
回调 - 只是处理asynchronous code in Mocha的一种方法。另一种方法是简单地从您的测试中返回一个承诺,您可以从chai-as-promised
获得该承诺。尝试修改你的测试:
it('Should successfully create root user', function() {
return expect(users.createUser(sampleUsers.raam)).to.eventually.have.property('id');
});