我创建了一个简单的模块,它将一些数据发布到外部服务,该服务返回一条消息和一些其他结果。
我正在尝试用 Mocha 对此进行测试,但我发现很难理解如何访问返回的值。
我可以看到它记录在控制台中,但不知道如何将其设置为变量。你肯定会注意到,我是一个新手 javacripter。我敢肯定这很简单,我只是看不出怎么做。
我的模块:
module.exports = {
foo: function(id,serial) {
var querystring = require('querystring');
var http = require('http');
var fs = require('fs');
var post_data = querystring.stringify({
'serial' : serial,
'id': id
});
var post_options = {
host: 'localhost',
port: '8080',
path: '/api/v1/status',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': post_data.length
}
};
var post_req = http.request(post_options, function(res) {
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log(chunk);
return chunk;
});
});
post_req.write(post_data);
post_req.end();
}
}
我称之为:
describe('Functions and modules', function() {
it('does some shizzle', function(done) {
var tools = require('../tools');
chunk = '';
id = 123;
serial =456;
tools.foo(id,serial);
chunk.should.equal.......
});
});
我基本上需要从 tools.foo(id,serial) 返回的消息但是块比空白的东西更空白。
在我的终端中,我可以看到如下内容:
{"message":"This device is still in use","live":"nop"}