admin管理员组文章数量:1341452
This is my code: start_end.js
var glb_obj, test={};
var timer = 10;
test.start_pool = function(cb) {
timer--;
if(timer < 1) {
glb_obj = {"close": true}; // setting object
cb(null, "hello world");
} else {
start_pool(cb);
}
}
test.end_pool = function(){
if(glb_obj && glb_obj.close) {
console.log("closed");
}
}
module.exports = test;
Testcase:
var sinon = require('sinon');
var start_end = require('./start_end');
describe("start_end", function(){
before(function () {
cb_spy = sinon.spy();
});
afterEach(function () {
cb_spy.reset();
});
it("start_pool()", function(done){
// how to make timer variable < 1, so that if(timer < 1) will meet
start_end.start_pool(cb_spy);
sinon.assert.calledWith(cb_spy, null, "hello world");
});
});
how to change the variable timer
and glb_obj
within the functions using sinon?
This is my code: start_end.js
var glb_obj, test={};
var timer = 10;
test.start_pool = function(cb) {
timer--;
if(timer < 1) {
glb_obj = {"close": true}; // setting object
cb(null, "hello world");
} else {
start_pool(cb);
}
}
test.end_pool = function(){
if(glb_obj && glb_obj.close) {
console.log("closed");
}
}
module.exports = test;
Testcase:
var sinon = require('sinon');
var start_end = require('./start_end');
describe("start_end", function(){
before(function () {
cb_spy = sinon.spy();
});
afterEach(function () {
cb_spy.reset();
});
it("start_pool()", function(done){
// how to make timer variable < 1, so that if(timer < 1) will meet
start_end.start_pool(cb_spy);
sinon.assert.calledWith(cb_spy, null, "hello world");
});
});
how to change the variable timer
and glb_obj
within the functions using sinon?
2 Answers
Reset to default 5If someone wants to still stub with Sinon, we can stub the getters method and mock get method of the object tested, and works fine for me
sinon.stub(myObj, 'propertyName').get(() => 'mockedValue');
This is not possible using Sinon
as of v4.1.2
.
Sinon
focuses on testing behaviour through stubbing and mocking - rather than changing internal state.
If you want to change the values of the private variables, look into using something like rewire
:
https://github./jhnns/rewire
本文标签: javascriptHow to mock variable with SinonMocha in nodejsStack Overflow
版权声明:本文标题:javascript - How to mock variable with SinonMocha in node.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743676086a2520335.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论