我目前正在开发一个带有nodejs的小型API,需要通过接收二进制字符串来完成文件上传。
我不知道该怎么做,用mocha测试它,所以我一直在做一些搜索并在堆栈溢出Unit test file upload with mocha上找到它,这是一个很好的开始,但它不会工作,因为它发送一个多部分表单,我要求客户端发送api的是文件作为流。
继承人我的控制人员:
exports.uploadVideo = function(req, res, next) {
var video = "public/video/" + req.params.videoId + ".mp4",
util = require('util'),
exec = require('child_process').exec;
var newFile = fs.createWriteStream("./uploads/" + video);
req.pipe(newFile);
req.on('end', function () {
var cmd = 'qtfaststart ' + './uploads/' + video;
var qtfaststart = exec(cmd, function(error, stdout, stderr){
if (error === "atom not found, is this a valid MOV/MP4 file?\n" || error !== null) {
return next(new restify.ConflictError("Error: " + stdout));
} else {
fs.chmodSync('./uploads/' + video, '644');
Video.findOne( { _id: req.params.videoId }, function(err, video) {
if (err) return next(new restify.ConflictError(err));
if (!video) {
newVideo = new Video({
_id: req.params.videoId,
file: video});
newVideo.save()
} else {
video.file = video;
video.increment();
video.save();
}
});
}
});
});
req.on('error', function(err){
return next(new restify.NetworkConnectTimeoutError(err));
});
};
所以给定这个接收流(二进制文件)的控制器,并将流放在后端,我如何用mocha测试这个控制器?
答案 0 :(得分:1)
你可以使用http
:
it('should be possible to upload a file', function(done) {
var http = require('http');
var options = require('url').parse(YOUR_URL);
options.method = 'POST';
var req = http.request(options, function(response) {
// TODO: check for errors, correct response, etc...
done(...);
});
require('fs').createReadStream(YOUR_TEST_FILE).pipe(req);
});
答案 1 :(得分:0)
您想在mocha中使用request模块。它支持多部分表单。