我有两个返回 bluebird 承诺的异步函数:
Async1: function() {
return new Promise(function(resolve, reject) {
execute(query)
.then(function(resp) {
resolve(resp);
})
.catch(function(err) {
reject(err);
});
});
}
Async2: function() {
return new Promise(function(resolve, reject) {
execute(query2)
.then(function(resp) {
resolve(resp);
})
.catch(function(err) {
reject(err);
});
});
}
我有另一个模块调用这些方法,如下所示:
module.exports = Foo {
Bar: require(./'Bar');
caller: function() {
this.Bar.Async1()
.then(function(resp) {
this.Bar.Async2()
.then(function(resp) {
// do something
}.bind(this))
}.bind(this))
}
}
在我的测试用例中,我想检查 Bar.Async2 是否被调用并且我有以下测试用例失败:
it('should call Foo.Bar.Async2', function(done) {
var spy;
sinon.stub(Foo.Bar, 'Async1').returns(
new Promise(function(resolve) {
resolve();
})
);
sinon.stub(Foo.Bar, 'Async2').returns(
new Promise(function(resolve) {
resolve();
})
);
spy = chai.spy.on(Foo.Bar, 'Async2');
Foo.caller();
expect(spy).to.be.called();
done();
});
我从控制台日志中知道 Async2 确实被调用了,所以我想知道为什么间谍不接它?