0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/test/unit/web/middleware/request-id_spec.js
Hannah Wolfe 7f1d3ebc07
Move tests from core to root (#11700)
- move all test files from core/test to test/
- updated all imports and other references
- all code inside of core/ is then application code
- tests are correctly at the root level
- consistent with other repos/projects

Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
2020-03-30 16:26:47 +01:00

46 lines
1.2 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const validator = require('validator');
const requestId = require('../../../../core/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();
});
});