Sinon监视所有方法调用

时间:2017-05-09 16:47:58

标签: testing coffeescript sinon

我正在尝试测试特定实例方法是否至少被调用过一次。使用mochasinon。有两个类:AB。在B#render内调用A#render。在测试文件中无法访问B的实例。

sinon.spy B.prototype, 'render'
@instanceA.render
B.prototype.render.called.should.equal true
B.prototype.render.restore()

这是一种正确的方法吗? 谢谢

1 个答案:

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

});

你的假设是正确的。您可以在类的原型级别添加间谍。希望它有所帮助:)