如何在Mongoose模型中存根方法?

时间:2016-08-15 14:10:10

标签: javascript node.js mongoose sinon stub

如何存根以下虚构架构的实例方法bark

var dogSchema = mongoose.Schema({
  // ...
});

dogSchema.methods = {
  bark() { console.log('Woof!') },
};

例如,如果我想测试以下函数barkOne()

function barkOne() {
  Dog.findOne().exec().then(dog => dog.bark());
}

我怎样才能将它存根,以便像这样进行测试?

describe('barkOne', () =>
  it('should make all dogs bark', () => {
    barkOne().then(() => {
      assert(barkStub.calledOnce);
    });
  })
});

谢谢!

1 个答案:

答案 0 :(得分:0)

从mongoose 4.4.5开始,我能够使用Model.prototype存根方法。 e.g。

const stub = sandbox.stub(Dog.prototype, 'bark');

Dog.findOne().exec().then(dog => {
  // dog[0].bark === stub
})