如何使用 NodeJs 在 Mocha 中模拟客户端和服务器。具体来说,我有以下代码:
app.post ('path name', function (req, res) {
// Some Action
res.send(response);
});
我想模拟req
,res
参数和测试res
(状态、标题、消息)。
Mocha 本身不提供模拟/存根/间谍类型功能。Sinon是一个受欢迎的图书馆。主页包括测试 ajax 及其 Fake XMLHTTPRequest 对象的示例。
我发现Node-Fakeweb很有用
var request = require('request');
// Mocking a client request
request.get({ uri: 'URI', body: 'body' }, function (err, resp, body) {
// Some Action
});
});
你可以使用 mocha 和supertest来模拟一个请求。这是一个关于如何做到这一点的精彩教程:http: //thewayofcode.wordpress.com/2013/04/21/how-to-build-and-test-rest-api-with-nodejs-express-mocha/