mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
51b78211c5
refs https://linear.app/tryghost/issue/CORE-104/decouple-frontend-routing-events-from-urlserver-events - A follow up rename after bootstrap module was transformed into class
240 lines
6.9 KiB
JavaScript
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 routerManager = require('../../../../../../core/frontend/services/routing/').routerManager;
|
|
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(routerManager, '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';
|
|
|
|
routerManager.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';
|
|
|
|
routerManager.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';
|
|
|
|
routerManager.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';
|
|
|
|
routerManager.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);
|
|
});
|
|
});
|
|
});
|
|
});
|