mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 05:14:12 +03:00
098891ee9a
refs https://linear.app/tryghost/issue/CORE-104/decouple-frontend-routing-events-from-urlserver-events - "routerCreated" call was causing a need to create a dependency on the frontend Router level which didn't fit nicely with the refactor of the bootstrap into a class, it's also makes way more sense having it as an independent parameter instead of a call on a module (makes testing way more readable too!)
120 lines
4.6 KiB
JavaScript
120 lines
4.6 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const settingsCache = require('../../../../../core/shared/settings-cache');
|
|
const controllers = require('../../../../../core/frontend/services/routing/controllers');
|
|
const TaxonomyRouter = require('../../../../../core/frontend/services/routing/TaxonomyRouter');
|
|
const RESOURCE_CONFIG_V2 = require('../../../../../core/frontend/services/routing/config/v2');
|
|
const RESOURCE_CONFIG_CANARY = require('../../../../../core/frontend/services/routing/config/canary');
|
|
const RESOURCE_CONFIG_V3 = require('../../../../../core/frontend/services/routing/config/v3');
|
|
|
|
describe('UNIT - services/routing/TaxonomyRouter', function () {
|
|
let req;
|
|
let res;
|
|
let next;
|
|
let routerCreatedSpy;
|
|
|
|
beforeEach(function () {
|
|
sinon.stub(settingsCache, 'get').withArgs('permalinks').returns('/:slug/');
|
|
|
|
routerCreatedSpy = sinon.spy();
|
|
|
|
sinon.spy(TaxonomyRouter.prototype, 'mountRoute');
|
|
sinon.spy(TaxonomyRouter.prototype, 'mountRouter');
|
|
|
|
req = sinon.stub();
|
|
res = sinon.stub();
|
|
next = sinon.stub();
|
|
|
|
res.locals = {};
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
it('instantiate', function () {
|
|
const taxonomyRouter = new TaxonomyRouter('tag', '/tag/:slug/', {}, routerCreatedSpy);
|
|
|
|
should.exist(taxonomyRouter.router);
|
|
should.exist(taxonomyRouter.rssRouter);
|
|
|
|
taxonomyRouter.taxonomyKey.should.eql('tag');
|
|
taxonomyRouter.getPermalinks().getValue().should.eql('/tag/:slug/');
|
|
|
|
routerCreatedSpy.calledOnce.should.be.true();
|
|
routerCreatedSpy.calledWith(taxonomyRouter).should.be.true();
|
|
|
|
taxonomyRouter.mountRouter.callCount.should.eql(1);
|
|
taxonomyRouter.mountRouter.args[0][0].should.eql('/tag/:slug/');
|
|
taxonomyRouter.mountRouter.args[0][1].should.eql(taxonomyRouter.rssRouter.router());
|
|
|
|
taxonomyRouter.mountRoute.callCount.should.eql(3);
|
|
|
|
// permalink route
|
|
taxonomyRouter.mountRoute.args[0][0].should.eql('/tag/:slug/');
|
|
taxonomyRouter.mountRoute.args[0][1].should.eql(controllers.channel);
|
|
|
|
// pagination feature
|
|
taxonomyRouter.mountRoute.args[1][0].should.eql('/tag/:slug/page/:page(\\d+)');
|
|
taxonomyRouter.mountRoute.args[1][1].should.eql(controllers.channel);
|
|
|
|
// edit feature
|
|
taxonomyRouter.mountRoute.args[2][0].should.eql('/tag/:slug/edit');
|
|
taxonomyRouter.mountRoute.args[2][1].should.eql(taxonomyRouter._redirectEditOption.bind(taxonomyRouter));
|
|
});
|
|
|
|
it('v2:fn: _prepareContext', function () {
|
|
const taxonomyRouter = new TaxonomyRouter('tag', '/tag/:slug/', RESOURCE_CONFIG_V2, routerCreatedSpy);
|
|
taxonomyRouter._prepareContext(req, res, next);
|
|
next.calledOnce.should.eql(true);
|
|
|
|
res.routerOptions.should.eql({
|
|
type: 'channel',
|
|
name: 'tag',
|
|
permalinks: '/tag/:slug/',
|
|
resourceType: RESOURCE_CONFIG_V2.QUERY.tag.resource,
|
|
data: {tag: RESOURCE_CONFIG_V2.QUERY.tag},
|
|
filter: RESOURCE_CONFIG_V2.TAXONOMIES.tag.filter,
|
|
context: ['tag'],
|
|
slugTemplate: true,
|
|
identifier: taxonomyRouter.identifier
|
|
});
|
|
});
|
|
|
|
it('canary:fn: _prepareContext', function () {
|
|
const taxonomyRouter = new TaxonomyRouter('tag', '/tag/:slug/', RESOURCE_CONFIG_CANARY, routerCreatedSpy);
|
|
taxonomyRouter._prepareContext(req, res, next);
|
|
next.calledOnce.should.eql(true);
|
|
|
|
res.routerOptions.should.eql({
|
|
type: 'channel',
|
|
name: 'tag',
|
|
permalinks: '/tag/:slug/',
|
|
resourceType: RESOURCE_CONFIG_V2.QUERY.tag.resource,
|
|
data: {tag: RESOURCE_CONFIG_V2.QUERY.tag},
|
|
filter: RESOURCE_CONFIG_V2.TAXONOMIES.tag.filter,
|
|
context: ['tag'],
|
|
slugTemplate: true,
|
|
identifier: taxonomyRouter.identifier
|
|
});
|
|
});
|
|
|
|
it('v3:fn: _prepareContext', function () {
|
|
const taxonomyRouter = new TaxonomyRouter('tag', '/tag/:slug/', RESOURCE_CONFIG_V3, routerCreatedSpy);
|
|
taxonomyRouter._prepareContext(req, res, next);
|
|
next.calledOnce.should.eql(true);
|
|
|
|
res.routerOptions.should.eql({
|
|
type: 'channel',
|
|
name: 'tag',
|
|
permalinks: '/tag/:slug/',
|
|
resourceType: RESOURCE_CONFIG_V2.QUERY.tag.resource,
|
|
data: {tag: RESOURCE_CONFIG_V2.QUERY.tag},
|
|
filter: RESOURCE_CONFIG_V2.TAXONOMIES.tag.filter,
|
|
context: ['tag'],
|
|
slugTemplate: true,
|
|
identifier: taxonomyRouter.identifier
|
|
});
|
|
});
|
|
});
|