gpt4 book ai didi

javascript - 为什么sinon认不出我的 stub ?

转载 作者:太空宇宙 更新时间:2023-11-04 00:41:02 27 4
gpt4 key购买 nike

假设我有一个像这样导出的模块:

module.exports = mymodule;

然后在我的测试文件中,我需要该模块并 stub 它。

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();
}));
});
});

在这种情况下,我的测试失败了。如何更改我的 stub 代码以使其正常工作?谢谢!

最佳答案

以此为基础

module.exports = {
api: getSports,
other: other
};

看起来mymodule.api本身没有getSports方法。相反,mymodyle.api 是对模块内部 getSports 函数的引用。

您需要 stub api,而不是 stub getSports:

var getRequest = sinon.stub(mymodule, 'api');

但是,考虑到您尝试 stub getSports 的方式,您可能想要更新导出函数的方式,而不是 stub 它的方式。

关于javascript - 为什么sinon认不出我的 stub ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36805450/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com