我正在尝试测试特定实例方法是否至少被调用过一次。使用mocha
和sinon
。有两个类:A
和B
。在B#render
内调用A#render
。在测试文件中无法访问B
的实例。
sinon.spy B.prototype, 'render'
@instanceA.render
B.prototype.render.called.should.equal true
B.prototype.render.restore()
这是一种正确的方法吗? 谢谢
答案 0 :(得分:0)
你应该这样做:
const chai = require('chai');
const sinon = require('sinon');
const SinonChai = require('sinon-chai');
chai.use(SinonChai);
chai.should();
/**
* Class A
* @type {B}
*/
class A {
constructor(){
this.b = new B();
}
render(){
this.b.render();
}
}
/**
* Class B
* @type {[type]}
*/
class B {
constructor(){
}
render(){
}
}
context('test', function() {
beforeEach(() => {
if (!this.sandbox) {
this.sandbox = sinon.sandbox.create();
} else {
this.sandbox.restore();
}
});
it('should pass',
(done) => {
const a = new A();
const spyA = this.sandbox.spy(A.prototype, 'render');
const spyB = this.sandbox.spy(B.prototype, 'render');
a.render();
spyA.should.have.been.called;
spyB.should.have.been.called;
done();
});
});
你的假设是正确的。您可以在类的原型级别添加间谍。希望它有所帮助:)