gpt4 book ai didi

node.js - 如何在 sinon 中获取 stub 的参数并将其中一个参数 + 其他数据用于特定 stub 调用的返回值

转载 作者:行者123 更新时间:2023-11-28 21:08:24 25 4
gpt4 key购买 nike

我想要实现的是 stub 一个将返回特定值的调用。该返回值由一个传递的参数和一个新值组成。

我如何获取 stub 的参数并使用它为给定的 stub 调用形成返回值

例如

mockDb.query.onCall(0).return(
Tuple(this.args(0), "Some other data");
);

我知道我可以做到:

sinon.stub(obj, "hello", function (a) {
return a;
});

但是,这适用于整个 stub 而不是单个 stub 调用。不幸的是,我无法为不同的调用提供不同的 stub ,因为我只有一个对象(数据库 stub )。

最佳答案

要在第一次调用 stub 时访问函数参数,您可以使用:

sinon.stub(obj, "method").onCall(0).callsFake( function(arg) {
return "data" + arg;
});

这将首先调用 stub 以返回与传递的参数连接的“数据”。

我已经使用 node v7.10 和 sinon v4 对其进行了测试。整个测试脚本如下:

const sinon = require('sinon');
let obj = {
test: (arg1, arg2) => {
return arg1 + arg2;
}
}

let stub = sinon.stub(obj, "test");
stub.onCall(0).callsFake((arg1, arg2) => {
return "STB" + arg1 + arg2;
})


console.log(stub("lol", "lol2")); // -> STBlollol2
console.log(stub("lol", "lol3")); // -> undefined

关于node.js - 如何在 sinon 中获取 stub 的参数并将其中一个参数 + 其他数据用于特定 stub 调用的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46476546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com