Ghost/test/unit/frontend/services/routing/controllers/entry.test.js
Naz 979474a8cc Refactored bootstrap module into RouterManager class
refs https://linear.app/tryghost/issue/CORE-104/decouple-frontend-routing-events-from-urlserver-events

- The "bootstrap" didn't give enough credit to everything this module was doing - it's responsible for managing correct initialization and reinitialization of the frontend Routes as well as passing router creation information back to the frontend's URL service
- The refactor is done in two steps - the "bootstrap.js" will be renamed in the follow-up commit to have a clean history of how the file evolved
2021-10-19 07:29:09 +13:00

240 lines
6.9 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const testUtils = require('../../../../../utils');
const configUtils = require('../../../../../utils/configUtils');
const urlUtils = require('../../../../../../core/shared/url-utils');
const bootstrap = require('../../../../../../core/frontend/services/routing/').bootstrap;
const controllers = require('../../../../../../core/frontend/services/routing/controllers');
const helpers = require('../../../../../../core/frontend/services/routing/helpers');
const EDITOR_URL = `/#/editor/post/`;
describe('Unit - services/routing/controllers/entry', function () {
let req;
let res;
let entryLookUpStub;
let secureStub;
let renderStub;
let post;
let page;
beforeEach(function () {
post = testUtils.DataGenerator.forKnex.createPost();
post.url = '/does-exist/';
page = testUtils.DataGenerator.forKnex.createPost({page: 1});
secureStub = sinon.stub();
entryLookUpStub = sinon.stub();
renderStub = sinon.stub();
sinon.stub(helpers, 'entryLookup').get(function () {
return entryLookUpStub;
});
sinon.stub(helpers, 'secure').get(function () {
return secureStub;
});
sinon.stub(helpers, 'renderEntry').get(function () {
return renderStub;
});
sinon.stub(urlUtils, 'redirectToAdmin');
sinon.stub(urlUtils, 'redirect301');
sinon.stub(bootstrap, 'getResourceById');
req = {
path: '/',
params: {},
route: {}
};
res = {
routerOptions: {
resourceType: 'posts'
},
render: sinon.spy(),
redirect: sinon.spy(),
locals: {}
};
});
afterEach(function () {
sinon.restore();
});
it('resource not found', function (done) {
req.path = '/does-not-exist/';
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves(null);
controllers.entry(req, res, function (err) {
should.not.exist(err);
done();
});
});
it('resource found', function (done) {
req.path = post.url;
req.originalUrl = req.path;
res.routerOptions.resourceType = 'posts';
bootstrap.getResourceById.withArgs(post.id).returns({
config: {
type: 'posts'
}
});
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves({
entry: post
});
controllers.entry(req, res, function () {
secureStub.calledOnce.should.be.true();
done();
}).catch(done);
});
describe('[edge cases] resource found', function () {
it('isUnknownOption: true', function (done) {
req.path = post.url;
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves({
isUnknownOption: true,
entry: post
});
controllers.entry(req, res, function (err) {
should.not.exist(err);
done();
});
});
it('isEditURL: true', function (done) {
req.path = post.url;
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves({
isEditURL: true,
entry: post
});
urlUtils.redirectToAdmin.callsFake(function (statusCode, _res, editorUrl) {
statusCode.should.eql(302);
editorUrl.should.eql(EDITOR_URL + post.id);
done();
});
controllers.entry(req, res, (err) => {
done(err);
});
});
it('isEditURL: true with admin redirects disabled', function (done) {
configUtils.set('admin:redirects', false);
req.path = post.url;
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves({
isEditURL: true,
entry: post
});
urlUtils.redirectToAdmin.callsFake(function (statusCode, _res, editorUrl) {
configUtils.restore();
done(new Error('redirectToAdmin was called'));
});
controllers.entry(req, res, (err) => {
configUtils.restore();
urlUtils.redirectToAdmin.called.should.eql(false);
should.not.exist(err);
done(err);
});
});
it('type of router !== type of resource', function (done) {
req.path = post.url;
res.routerOptions.resourceType = 'posts';
bootstrap.getResourceById.withArgs(post.id).returns({
config: {
type: 'pages'
}
});
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves({
entry: post
});
controllers.entry(req, res, function (err) {
should.not.exist(err);
done();
});
});
it('requested url !== resource url', function (done) {
post.url = '/2017/08' + post.url;
req.path = '/2017/07' + post.url;
req.originalUrl = req.path;
res.routerOptions.resourceType = 'posts';
bootstrap.getResourceById.withArgs(post.id).returns({
config: {
type: 'posts'
}
});
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves({
entry: post
});
urlUtils.redirect301.callsFake(function (_res, postUrl) {
postUrl.should.eql(post.url);
done();
});
controllers.entry(req, res, function (err) {
should.exist(err);
done(err);
});
});
it('requested url !== resource url: with query params', function (done) {
post.url = '/2017/08' + post.url;
req.path = '/2017/07' + post.url;
req.originalUrl = req.path + '?query=true';
res.routerOptions.resourceType = 'posts';
bootstrap.getResourceById.withArgs(post.id).returns({
config: {
type: 'posts'
}
});
entryLookUpStub.withArgs(req.path, res.routerOptions)
.resolves({
entry: post
});
urlUtils.redirect301.callsFake(function (_res, postUrl) {
postUrl.should.eql(post.url + '?query=true');
done();
});
controllers.entry(req, res, function (err) {
done(err);
});
});
});
});