几天来我一直在尝试解决这个问题;使用 mocha 为这种情况创建测试:
app.post('/approval', function(req, response){
request.post('https://git.ecommchannel.com/api/v4/users/' + req.body.content.id + '/' + req.body.content.state + '?private_token=blabla', function (error, resp, body) {
if (resp.statusCode == 201) {
//do something
} else {
response.send("failed"), response.end();
}
});
} else {
response.send("failed"), response.end();
}
});
});
我尝试了几种方法,使用 supertest 来测试 '/approval' 并使用 nock 来测试对 git api 的 post 请求。但它总是把“statusCode”变成未定义的。我认为这是因为 index.js 中对 git api 的请求不在某个函数内(?)所以我无法实现这样的东西: https ://codeburst.io/testing-mocking-http-requests-with- nock-480e3f164851或 https://scotch.io/tutorials/nodejs-tests-mocking-http-requests
const nockingGit = () => {
nock('https://git.ecommchannel.com/api/v4/users')
.post('/1/yes', 'private_token=blabla')
.reply(201, { "statusCode": 201 });
};
it('approval', (done) => {
let req = {
content: {
id: 1,
state: 'yes'
},
_id: 1
}
request(_import.app)
.post('/approval')
.send(req)
.expect(200)
.expect('Content-Type', /html/)
.end(function (err, res) {
if (!err) {
nockingGit();
} else {
done(err);
}
});
done();
})
然后我尝试使用 supertest 作为承诺
it('approve-block-using-promise', () => {
return promise(_import.app)
.post('/approval')
.send(req = {
content: {
id: 1,
state: 'yes'
},
_id: 1
})
.expect(200)
.then(function(res){
return promise(_import.app)
.post("https://git.ecommchannel.com/api/v4/users/")
.send('1/yes', 'private_token=blabla')
.expect(201);
})
})
但它给出了错误: ECONNEREFUSED:连接被拒绝。我没有找到解决该错误的任何解决方案。一些消息来源说它需要 done() .. 但它给出了另一个错误消息,'确保调用“done()”“>。<
那么我找到了另一种方法,使用异步(https://code-examples.net/en/q/141ce32)
it('should respond to only certain methods', function(done) {
async.series([
function(cb) { request(_import.app).post('/approval')
.send(req = {
content: {
id: 1,
state: 'yes'
},
_id: 1
})
.expect(200, cb); },
function(cb) { request(_import.app).post('/https://git.ecommchannel.com/api/v4/users/').send('1/yes', 'private_token=blabla').expect(201, cb); },
], done);
});
它给出了这个错误:预期 201“已创建”,得到 404“未找到”。好吧,如果我在浏览器中打开https://git.ecommchannel.com/api/v4/users/1/yes?private_token=blabla它确实返回 404。但我期望的是我已经从单元测试;所以无论实际响应是什么,statusCode 都应该是 201,对吧?但是既然它给出了那个错误,这是否意味着单元测试真的将请求发送到api?请帮我解决这个问题;如何测试我分享的第一个代码。我真的是单元测试的新手。