我正在使用supertest测试我的API端点,它运行良好,但我无法弄清楚如何测试文件下载是否成功。
在我的路线文件中,我已将端点定义为:
app.get('/api/attachment/:id/file', attachment.getFile);
并且函数getFile()
看起来像这样:
exports.getFile = function(req, res, next) {
Attachment.getById(req.params.id, function(err, att) {
[...]
if (att) {
console.log('File found!');
return res.download(att.getPath(), att.name);
}
然后,在我的测试文件中,我尝试以下操作:
describe('when trying to download file', function() {
it('should respond with "200 OK"', function(done) {
request(url)
.get('/api/attachment/' + attachment._id + '/file');
.expect(200)
.end(function(err, res) {
if (err) {
return done(err);
}
return done();
});
});
});
我确定已找到该文件,因为它会注销File found!
。如果我手动尝试它也可以正常工作,但由于某种原因,mocha返回Error: expected 200 "OK", got 404 "Not Found"
。
我尝试过不同的mime-types和supertest .set("Accept-Encoding": "*")
,但没有任何效果。
任何人都知道怎么做?
答案 0 :(得分:3)
问题已在库中修复,或者代码的其他部分存在错误。您的示例运行正常,并提供
when trying to download file
File found!
✓ should respond with "200 OK"