用 sinon 模拟/存根猫鼬 findById

Posted

技术标签:

【中文标题】用 sinon 模拟/存根猫鼬 findById【英文标题】:Mocking / stubbing mongoose findById with sinon 【发布时间】:2014-04-02 13:38:35 【问题描述】:

我正在尝试存根我的猫鼬模型,特别是猫鼬的findById 方法

当 findById 使用 'abc123' 调用时,我正在尝试让 mongoose 返回指定的数据

这是我目前所拥有的:

require('../../model/account');

sinon = require('sinon'),
mongoose = require('mongoose'),
accountStub = sinon.stub(mongoose.model('Account').prototype, 'findById');
controller = require('../../controllers/account');

describe('Account Controller', function() 

    beforeEach(function()
        accountStub.withArgs('abc123')
            .returns('_id': 'abc123', 'name': 'Account Name');
    );

    describe('account id supplied in querystring', function()
        it('should retrieve acconunt and return to view', function()
            var req = query: accountId: 'abc123';
            var res = render: function();

            controller.index(req, res);
                //asserts would go here
            );
    );

我的问题是运行 mocha 时出现以下异常

TypeError: 试图将未定义的属性 findById 包装为函数

我做错了什么?

【问题讨论】:

【参考方案1】:

看看sinon-mongoose。您可以期望只有几行代码的链式方法:

// If you are using callbacks, use yields so your callback will be called
sinon.mock(YourModel)
  .expects('findById').withArgs('abc123')
  .chain('exec')
  .yields(someError, someResult);

// If you are using Promises, use 'resolves' (using sinon-as-promised npm) 
sinon.mock(YourModel)
  .expects('findById').withArgs('abc123')
  .chain('exec')
  .resolves(someResult);

您可以在 repo 上找到工作示例。

另外,一个建议:使用mock 方法而不是stub,这将检查该方法是否真的存在。

【讨论】:

可以在示例中添加更多内容,展示如何取回模拟数据?就用户的要求而言,答案似乎不完整。 @lostintranslation 模拟数据将是“yield”和“resolves”上的“someResult”参数。【参考方案2】:

由于您似乎正在测试单个类,所以我会使用泛型

var mongoose = require('mongoose');
var accountStub = sinon.stub(mongoose.Model, 'findById');

这将存根对Model.findById 的任何调用,并修补by mongoose。

【讨论】:

以上是关于用 sinon 模拟/存根猫鼬 findById的主要内容,如果未能解决你的问题,请参考以下文章

轻松清理 sinon 存根

用 sinon 存根,用 chai 测试

Sinon stub - 模拟一个返回对象数组的函数

Mocha/Sinon 测试猫鼬里面的快递

如何正确指定使用 ts-sinon 的模拟的两种类型?

如何使用 sinon 存根 new Date()?