如何监视 node.js 中定义的变量
how spy a defined variable in node.js
请帮帮我!我一直在破坏我的思想,但我不知道我应该如何存根变量!我错了吗?我应该使用 Spy 吗?
我该如何测试这段代码
module.exports = async () => {
var variable = 'something';
var taskProcessor = require('taskprocessor');
try {
taskProcessor(variable).then().catch();
//blah blah
//blah blah
//blah blah
//blah blah
} catch (error) {
console.log(err);
}
};
首先,你应该知道什么是 stub 或 spy(我特意排除了 mocks)
我们使用 double 来控制方法的行为,然后更改测试方向以覆盖我们测试中的所有路径。
间谍包裹了函数,它并没有取代它的功能!但是使用存根我们可以定义输出。间谍实际上是在你的敌人(在这种情况下是你的代码 :D)中派遣一名间谍来模仿真实实体的行为并为你收集信息!
现在让我们回到你的问题!
这种情况下可以使用rewire模块。来自 git 页
rewire adds a special setter and getter to modules so you can modify
their behavior for better unit testing. You may
- inject mocks for other modules or globals like process
- inspect private variables
- override variables within the module.
因此您可以设置任何变量,如下所示:
请帮帮我!我一直在破坏我的思想,但我不知道我应该如何存根变量!我错了吗?我应该使用 Spy 吗?
我该如何测试这段代码
module.exports = async () => {
var variable = 'something';
var taskProcessor = require('taskprocessor');
try {
taskProcessor(variable).then().catch();
//blah blah
//blah blah
//blah blah
//blah blah
} catch (error) {
console.log(err);
}
};
首先,你应该知道什么是 stub 或 spy(我特意排除了 mocks)
我们使用 double 来控制方法的行为,然后更改测试方向以覆盖我们测试中的所有路径。
间谍包裹了函数,它并没有取代它的功能!但是使用存根我们可以定义输出。间谍实际上是在你的敌人(在这种情况下是你的代码 :D)中派遣一名间谍来模仿真实实体的行为并为你收集信息!
现在让我们回到你的问题!
这种情况下可以使用rewire模块。来自 git 页
rewire adds a special setter and getter to modules so you can modify their behavior for better unit testing. You may
- inject mocks for other modules or globals like process
- inspect private variables
- override variables within the module.
因此您可以设置任何变量,如下所示: