Skip to content

Commit

Permalink
Added tests for x-request-id handling
Browse files Browse the repository at this point in the history
refs 0107ac8

- added unit tests for middleware added yesterday
  • Loading branch information
ErisDS committed Sep 23, 2019
1 parent 93e04b0 commit 36db3ce
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions core/test/unit/web/middleware/request-id_spec.js
@@ -0,0 +1,46 @@
const should = require('should');
const sinon = require('sinon');
const validator = require('validator');

const requestId = require('../../../../server/web/shared/middlewares/request-id');

describe('Request ID middleware', function () {
var res, req, next;
beforeEach(function () {
req = {
get: sinon.stub()
};
res = {
redirect: sinon.spy(),
set: sinon.spy()
};

next = sinon.spy();
});

afterEach(function () {
sinon.restore();
});

it('generates a new request ID if X-Request-ID not present', function () {
should.not.exist(req.requestId);

requestId(req, res, next);

should.exist(req.requestId);
validator.isUUID(req.requestId).should.be.true();
res.set.calledOnce.should.be.false();
});

it('keeps the request ID if X-Request-ID is present', function () {
should.not.exist(req.requestId);
req.get.withArgs('X-Request-ID').returns('abcd');

requestId(req, res, next);

should.exist(req.requestId);
req.requestId.should.eql('abcd');
res.set.calledOnce.should.be.true();
res.set.calledWith('X-Request-ID', 'abcd').should.be.true();
});
});

0 comments on commit 36db3ce

Please sign in to comment.