让我们说我有一个像这样出口的模块:
module.exports = mymodule;
然后在我的测试文件中,我需要模块并将其存根。
var mymodule = require('./mymodule');
describe('Job gets sports data from API', function(){
context('When there is a GET request', function(){
it('will call callback after getting response', sinon.test(function(done){
var getRequest = sinon.stub(mymodule, 'getSports');
getRequest.yields();
var callback = sinon.spy();
mymodule.getSports(callback);
sinon.assert.calledOnce(callback);
done();
}));
});
});
有效,测试通过!但是如果我需要导出多个对象,一切都会崩溃。见下文:
module.exports = {
api: getSports,
other: other
};
然后我尝试调整我的测试代码:
var mymodule = require('./mymodule');
describe('Job gets sports data from API', function(){
context('When there is a GET request', function(){
it('will call callback after getting response', sinon.test(function(done){
var getRequest = sinon.stub(mymodule.api, 'getSports');
getRequest.yields();
var callback = sinon.spy();
mymodule.api.getSports(callback);
sinon.assert.calledOnce(callback);
done();
}));
});
});
在这种情况下,我的测试开始了。如何更改存根代码才能工作?谢谢!
答案 0 :(得分:1)
基于此
module.exports = {
api: getSports,
other: other
};
看起来mymodule.api
本身没有getSports
方法。相反,mymodyle.api
是对模块内部getSports
函数的引用。
而不是存根getSports
,您需要存根api
:
var getRequest = sinon.stub(mymodule, 'api');
但是,考虑到您尝试存根getSports
的方式,您可能想要更新导出函数的方式而不是更新它的方式。