mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
34d2cc1b0b
refs: bf0823c9a2
- continuing the work of splitting up the theme service into logical components
- this is where it starts to get fiddly as the getActive function in themeService index is required across the frontend/backend mostly due to its use in the getApiVersion method
- for now left one usage of the getActive method in place in ghost-locals middleware ready for the next phase of the refactor, which will move some of the themeService index into a shared location
121 lines
3.2 KiB
JavaScript
121 lines
3.2 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const testUtils = require('../../../../utils');
|
|
const api = require('../../../../../core/server/api');
|
|
const themeEngine = require('../../../../../core/frontend/services/theme-engine');
|
|
const helpers = require('../../../../../core/frontend/services/routing/helpers');
|
|
const controllers = require('../../../../../core/frontend/services/routing/controllers');
|
|
|
|
function failTest(done) {
|
|
return function (err) {
|
|
should.exist(err);
|
|
done(err);
|
|
};
|
|
}
|
|
|
|
describe('Unit - services/routing/controllers/static', function () {
|
|
let req;
|
|
let res;
|
|
let secureStub;
|
|
let renderStub;
|
|
let handleErrorStub;
|
|
let formatResponseStub;
|
|
let postsPerPage;
|
|
let tagsReadStub;
|
|
|
|
beforeEach(function () {
|
|
postsPerPage = 5;
|
|
|
|
secureStub = sinon.stub();
|
|
renderStub = sinon.stub();
|
|
handleErrorStub = sinon.stub();
|
|
formatResponseStub = sinon.stub();
|
|
formatResponseStub.entries = sinon.stub();
|
|
|
|
tagsReadStub = sinon.stub().resolves();
|
|
sinon.stub(api.v2, 'tagsPublic').get(() => {
|
|
return {
|
|
read: tagsReadStub
|
|
};
|
|
});
|
|
|
|
sinon.stub(helpers, 'secure').get(function () {
|
|
return secureStub;
|
|
});
|
|
|
|
sinon.stub(helpers, 'handleError').get(function () {
|
|
return handleErrorStub;
|
|
});
|
|
|
|
sinon.stub(themeEngine, 'getActive').returns({
|
|
config: function (key) {
|
|
if (key === 'posts_per_page') {
|
|
return postsPerPage;
|
|
}
|
|
}
|
|
});
|
|
|
|
sinon.stub(helpers, 'renderer').get(function () {
|
|
return renderStub;
|
|
});
|
|
|
|
sinon.stub(helpers, 'formatResponse').get(function () {
|
|
return formatResponseStub;
|
|
});
|
|
|
|
req = {
|
|
path: '/',
|
|
params: {},
|
|
route: {}
|
|
};
|
|
|
|
res = {
|
|
routerOptions: {},
|
|
render: sinon.spy(),
|
|
redirect: sinon.spy(),
|
|
locals: {
|
|
apiVersion: 'v2'
|
|
}
|
|
};
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
it('no extra data to fetch', function (done) {
|
|
helpers.renderer.callsFake(function () {
|
|
helpers.formatResponse.entries.calledOnce.should.be.true();
|
|
tagsReadStub.called.should.be.false();
|
|
helpers.secure.called.should.be.false();
|
|
done();
|
|
});
|
|
|
|
controllers.static(req, res, failTest(done));
|
|
});
|
|
|
|
it('extra data to fetch', function (done) {
|
|
res.routerOptions.data = {
|
|
tag: {
|
|
controller: 'tagsPublic',
|
|
resource: 'tags',
|
|
type: 'read',
|
|
options: {
|
|
slug: 'bacon'
|
|
}
|
|
}
|
|
};
|
|
|
|
tagsReadStub = sinon.stub().resolves({tags: [{slug: 'bacon'}]});
|
|
|
|
helpers.renderer.callsFake(function () {
|
|
tagsReadStub.called.should.be.true();
|
|
helpers.formatResponse.entries.calledOnce.should.be.true();
|
|
helpers.secure.calledOnce.should.be.true();
|
|
done();
|
|
});
|
|
|
|
controllers.static(req, res, failTest(done));
|
|
});
|
|
});
|