我正在使用Slack API,我想测试它是否可以在响应状态代码下正常工作。这是发送功能:
sendMsg(msg) {
return this.slack.webhook({text: msg}, (err, res) => {
if (err) {
throw err;
}
console.log(res.statusCode) // = 200
return res.statusCode;
});
}
我的测试:
it('Checks connection with Slack', (() => {
let slack = new Slack();
let res = slack.sendMsg('test');
expect(res).to.equal(200);
}));
但是。这给了我请求对象以放松。我想等待来自松弛API的响应对象。预先感谢。
答案 0 :(得分:1)
看起来slack.webhook
接受了回调,这是您检索状态的方式。问题在于sendMsg
的调用者无法获得该状态。
解决此问题的一种方法是让sendMsg
接受回调:
sendMsg(msg, onStatusReceived) {
this.slack.webhook({text: msg}, (err, res) => {
if (err) {
throw err;
}
console.log(res.statusCode) // = 200
onStatusReceived(res.statusCode);
});
}
然后在您的测试中,在调用回调时使用done
结束测试:
it('Checks connection with Slack', (done) => {
let slack = new Slack();
slack.sendMsg('message', status => {
expect(status).to.equal(200);
done();
});
});
另一种方法是将sendMsg
包装在slack.webhook
中,以便呼叫者可以执行sendMsg().then(...)
。
答案 1 :(得分:0)
我处理返回的回调进行测试的方法之一如下:
it('receives successful response', async () => {
nock('https://localhost')
.persist()
.log(console.log)
.post(‘/getData’, (unitData, callback) => {
return true;
})
.delayBody(1000)
.reply(200, {statusCode: 'Some Status'});
const getSomeData = await getResponse(unitData, function callBack(unitData, error, data){
expect(data.statusCode).to.be.equal(200);
}) })
getResponse函数(返回回调):
getResponse(unitData, function callBack(unitData, error, data){
try {
return request.post(unitData, function (err, resp) {
if (!err && resp.statusCode === 200) {
if (resp.body.error) {
return callback(obj, JSON.stringify(resp.body.error), null);
}
return callback(obj, null, resp);
} else {
if (err == null) {
err = { statusCode: resp.statusCode, error: 'Error occured.' };
}
return callback(obj, err, null);
}
});
} catch (err) {
return callback(obj, err, null);
}
}