简体   繁体   English

使用 mocha/chai 来确保 REST API 提供文件?

[英]Using mocha/chai to ensure REST API serves up a file?

I am wanting to validate that a call to one of my REST API's end-point is serving up a file, but I am not sure how to go about it and I am not seeing any examples on this?我想验证对我的 REST API 端点之一的调用是否正在提供文件,但我不知道如何去做,而且我没有看到任何关于此的示例? I did look at the documentation , but this didn't help me much.我确实看过文档,但这对我没有多大帮助。

The server side code essentially does (in Express):服务器端代码本质上是(在 Express 中):

handleRetrieveContent(req, res, next) {
   const filepaht = '...';
   res.sendFile(filepath)
}

and the test case:和测试用例:

it('Should get a file', (done) => {
    chai.request(url)
        .get('/api/exercise/1?token=' + token)
        .end(function(err, res) {
            if (err) { done(err); }
            res.should.have.status(200);
            // Not sure what the test here should be?
            res.should.be.json;
            // TODO get access to saved file and do tests on it                
        });
});     

I am essentially wanting to do the following tests:我基本上想做以下测试:

  • ensure the response is a file确保响应是一个文件
  • ensure the file is of valid content (checksum test)确保文件内容有效(校验和测试)

Any help would be appreciated.任何帮助将不胜感激。

The solution provided was based on further experimenting and an answer provided in https://github.com/chaijs/chai-http/issues/126 - note code assumes ES6 (tested with Node 6.7.0).提供的解决方案基于进一步的实验和https://github.com/chaijs/chai-http/issues/126 中提供的答案 - 注意代码假定 ES6(使用 Node 6.7.0 测试)。

const chai = require('chai');
const chaiHttp = require('chai-http');
const md5 = require('md5');
const expect = chai.expect;

const binaryParser = function (res, cb) {
    res.setEncoding('binary');
    res.data = '';
    res.on("data", function (chunk) {
        res.data += chunk;
    });
    res.on('end', function () {
        cb(null, new Buffer(res.data, 'binary'));
    });
};

it('Should get a file', (done) => {
    chai.request(url)
    .get('/api/exercise/1?token=' + token)
        .buffer()
        .parse(binaryParser)
        .end(function(err, res) {
            if (err) { done(err); }
            res.should.have.status(200);

            // Check the headers for type and size
            res.should.have.header('content-type');
            res.header['content-type'].should.be.equal('application/pdf');
            res.should.have.header('content-length');
            const size = fs.statSync(filepath).size.toString();
            res.header['content-length'].should.be.equal(size);
           
            // verify checksum                
            expect(md5(res.body)).to.equal('fa7d7e650b2cec68f302b31ba28235d8');              
        });
});

Edit: Most of this was in Read response output buffer/stream with supertest/superagent on node.js server with possible improvements编辑:其中大部分是在node.js 服务器上使用 supertest/superagent 读取响应输出缓冲区/流,并有可能的改进

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM