我是 nodejs 和 jasmine 的新手。从事一个学习 javascript/node 和 jasmine 的小项目。我试图监视节点中的对象 child_process 并查看使用指定的参数调用方法'spawn'。
jasmine 错误报告当调用 spawn 方法的对象(在本例中为 Nndb)时,从不调用 spawn。但是实际工作是由子进程执行的,因为我在控制台中看到了打印的结果。
这是我在运行 jasmine-node 脚本时看到的失败:
失败:
1) 抓取 xyz 生成子进程消息:预期的 spy spawn 已使用 ['../src/scrape_nndb.js', 0] 调用,但它从未被调用过。Stacktrace:错误:使用 ['../src/scrape_nndb.js', 0] 调用了预期的间谍生成,但从未调用过它。在空。(/Users/arun.bakt/skunkWorks/scraping/spec/nndb_spec.js:30:41) 在 Timer.listOnTimeout [as ontimeout] (timers.js:110:15)
6.024 秒内完成 1 次测试,1 次断言,1 次失败,0 次跳过”
它的茉莉花测试文件:
require('../src/nndb.js');
describe("scrape for XYZ", function() {
var child = require('child_process');
it("spawns child process", function() {
var nndb = new Nndb();
var child_process = nndb.child_process;
spyOn(child_process, "spawn");
runs(function(){
flag= false;
nndb.scrapeForXYZ('../src/scrape_nndb.js', 0);
setTimeout(function() {
flag = true;
},6000)
});
waitsFor(function(){
return flag;
}, "Scraping done", 6000);
runs(function(){
expect(child_process.spawn).toHaveBeenCalledWith('../src/scrape_nndb.js',0);
});
});
});
下面正在测试的文件 nndb.js:
var StringDecoder = require('string_decoder').StringDecoder;
var decoder = new StringDecoder('utf8');
var child_process = require('child_process');
Nndb = function() {
this.child_process = child_process;
this.spawn = this.child_process.spawn;
};
Nndb.prototype.scrapeForXYZ = function( phantomScriptToRun, offSet) {
var child = this.spawn('phantomjs', [phantomScriptToRun, offSet]);
child.stdout.on('data',function(data){
console.log("MATCH "+decoder.write(data));
});
child.stderr.on('data', function (data) {
console.log('stderr: ' + data);
});
child.on('exit', function (code) {
console.log('child process exited with code ' + code);
});
return 0;
};
exports.Nndb = Nndb;