mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 02:41:50 +03:00
8fe56852e0
- Moved request-id from shared to parent as it is not shared - This file is only used in one place, this updates the code structure to reflect this - This is one of many similar changes needed to make it easier to refactor to the existing setup
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const validator = require('validator');
|
|
|
|
const requestId = require('../../../../../core/server/web/parent/middleware/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();
|
|
});
|
|
});
|