如何用sinon模拟事件?

时间:2019-08-09 13:55:47

标签: node.js unit-testing mocha sinon

这是我的简单程序,试图通过ldapClient获取用户数据。我需要在没有互联网连接的情况下进行测试,所以想知道如何模拟事件结果以返回适当的数据。

var request = require('request');
var ldap = require('ldapjs');

....
var ldapClient = ldap.createClient(ldapConfig);
....


var MY_CLASS = {
    getData: function (userId, cb) {
        if (!ldapConfig) {
            return cb(new Error('ldap is not configured'));
        }

        ldapClient.search('xxxx.com', { ldapConfig },
            function (err, result) {
                if (err) {
                    return cb(err);
                }

                result.on('searchEntry', function (entry) {
                    if (entry) {
                        return entry;
                    }
                });

                result.on('error', function (err) {
                    cb(err);
                });

                result.on('end', function () {
                    cb(null, 'END');
                });
            });
    }
};

module.exports = MY_CLASS;

正在寻找东西(见下文),但假设我需要使用间谍。但是如何在那个深层嵌套的类中定义它?

before(()=>{
    sinon
    .stub(MY_CLASS.ldapClient, 'search')
    .yields(???);
});
after(()=>{
    MY_CLASS.ldapClient.search.restore();
});

1 个答案:

答案 0 :(得分:2)

如果要对库进行存根,而不是从原始类文件中导出,则需要导入而不是将其作为类的方法/属性引用

然后,您将要使用callsArg from sinon来调用回调函数

var ldapClient = ldap.createClient(ldapConfig);

...

var ldapStub;

before(()=>{
    ldapStub = sinon
        .stub(ldapClient, 'search')
        .callsArg(2);
});
after(()=>{
    ldapStub.restore();
});

然后可以在存根上包含断言(例如ldapStub.calledOnce应该为真,等等)