我的服务器代码有一个简单的路径,我需要向客户端发送一个小缩略图(jpeg)进行显示。以下是代码示例:
router.get('/thumbnail/:title/',function(req,resp){
let title = req.params.title;
getFileName(title).then(thumbnailCb,errorCb);
function thumbnailCb(jpeg){
fs.readFile(jpegFile,sendJpegFile);
}
function sendJpegFile(err,data){
if ( err ) {
fs.readFile(DEFAULT_THUMBNAIL,sendDefault);
} else {
resp.send(data);
}
};
function sendDefault(err,data){
if ( err ) {console.log(err);}
else { resp.send(data); }
};
function errorCb(error){
console.log(error);
};
});
我想在摩卡测试这个。我的第一个想法是比较缓冲区,显然,我不是唯一一个这样想的人:https://github.com/mochajs/mocha/issues/1624
所以,这不起作用。以下是我的Mocha / Chai代码。 Mocha挂在断言电话上。有没有人对测试这条路线有任何建议?
it('should get a thumbnail for from a title',function(done){
const DEFAULT_THUMBNAIL = /* some default file */;
const titleNotFound = /* some random title */;
request(app)
.get(URL + '/thumbnail/' + titleNotFound)
.expect(200)
.expect('Content-Type','application/octet-stream')
.end(function(err,res){
fs.readFile(DEFAULT_THUMBNAIL,'utf-8',function(err,data){
if(err){done(err);}
assert(data.toString(),res.text.toString()); // No bueno
done();
});
});
});