4

嗨,我想对我的 express js 代码进行单元测试,我想模拟数据,所以在搜索多个网站和博客后,我找到了这个库,但我不清楚如何使用这个库来模拟或数据。我的测试代码是

var request = require('supertest');
var server = require('./app');
var chai = require('chai');
var chaiHttp = require('chai-http');

var server = require('./app');

var should = chai.should();
chai.use(chaiHttp);

describe('loading express', function () {

  it('responds to /', function testSlash(done) {
    request(server)
      .get('/')
      .expect(200, done);
  });

  it('404 everything else', function testPath(done) {
    request(server)
      .get('/foo/bar')
      .expect(404, done);
  });

  it('responds to /customers/getCustomerData', function testPath(done) {
    request(server)
      .get('/customers/getCustomerData?id=0987654321')
      .end(function(err, res){
        res.should.have.status(200);
        res.body.should.be.a('object');
        res.body.status.should.equal("success");
        res.body.data.customerId.should.equal("0987654321");

        done();
      });
  });

});

目前此代码正在从数据库中获取数据,但我希望使用模拟数据进行单元测试。我怎样才能做到这一点?

__编辑__

我想测试写在 Express js 路由文件中的代码。我在app.js文件中调用这条路线,就像这样

var customers = require('./routes/customers');
app.use('/customers', customers);

现在客户路线文件包含的代码是

function getCustomerData(req, res, next) {
    var response = {};
    var cb = function (response) {
        res.send(response);
    }
    var modelObj = req.models.customer_master;
    var data = req.query;
    controllers.customers.get(modelObj, data, cb);
};
router.get('/getCustomerData', function (req, res, next) {
    getCustomerData(req, res, next);
});

我想使用模拟数据测试“get”方法的响应

4

3 回答 3

4

我猜你想存根你的控制器中间件。由于您没有提供任何服务器端代码,我只是假设一些事情:

app.get('/', rootController.get);

现在你想存根这个控制器:

it('responds to /', function testSlash(done) {
  const rootController = require('./path/to/your/controller');
  const rootControllerStub = sinon.stub(rootController, "get",
    function(req, res, next){
      res.status(200).json({stubbed: 'data'});
    });
  request(server)
    .get('/')
    .expect(200)
    .expect({stubbed: 'data'})
    .end(done);
});
于 2016-09-28T12:51:57.850 回答
0

另外,如果您编写许多测试文件,存根可能由于缓存而无法工作。在初始化存根和服务器之前,我必须清除缓存。顺序也很重要。

// have to clear every module which belongs to the require chain
// APP require FOO ROUTE require FOO CONTROLLER require BAR LIB
const caches = [
    '../app',
    '../routes/foo',
    '../controller/foo',
];
caches.forEach(cache => {
    delete require.cache[require.resolve(cache)];
});
// mock
const bar = require('../lib/bar');
sinon.stub(bar, 'bar').callsFake(async function() {
    return null;
});
app = require('../app');

// ... then the test ...

我发现这个线程 很有帮助。

于 2019-09-26T08:06:09.373 回答
0

如果你想模拟,你可以在这里使用 sinon express mocks或者如果你想测试实际的响应数据,JSON,使用这个例子

示例中的 express 路由接受一个参数并返回一个 JSON

it('should respond with JSON data', function (done) {
  request(server)
    .get('/about/jv')
    .expect(200)
    .end(function (err, response) {
      assert.equal(response.header['content-type'], 'application/json; charset=utf-8');
      assert.deepEqual(response.body, {
        "data":{
        "username":"hellojv"}
      });
      done();
    });

但是如上所述,如果您想使用 sinon,请使用模拟库。该示例使用 Mocha 和 supertest。

于 2017-07-05T20:26:12.477 回答