mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +03:00
22e13acd65
- All var declarations are now const or let as per ES6 - All comma-separated lists / chained declarations are now one declaration per line - This is for clarity/readability but also made running the var-to-const/let switch smoother - ESLint rules updated to match How this was done: - npm install -g jscodeshift - git clone https://github.com/cpojer/js-codemod.git - git clone git@github.com:TryGhost/Ghost.git shallow-ghost - cd shallow-ghost - jscodeshift -t ../js-codemod/transforms/unchain-variables.js . -v=2 - jscodeshift -t ../js-codemod/transforms/no-vars.js . -v=2 - yarn - yarn test - yarn lint / fix various lint errors (almost all indent) by opening files and saving in vscode - grunt test-regression - sorted!
168 lines
7.0 KiB
JavaScript
168 lines
7.0 KiB
JavaScript
const should = require('should');
|
|
const hbs = require('../../../core/frontend/services/themes/engine');
|
|
const configUtils = require('../../utils/configUtils');
|
|
const path = require('path');
|
|
const helpers = require('../../../core/frontend/helpers');
|
|
|
|
describe('{{pagination}} helper', function () {
|
|
before(function (done) {
|
|
hbs.express4({partialsDir: [configUtils.config.get('paths').helperTemplates]});
|
|
|
|
hbs.cachePartials(function () {
|
|
done();
|
|
});
|
|
|
|
// The pagination partial expects this helper
|
|
// @TODO: change to register with Ghost's own registration tools
|
|
hbs.registerHelper('page_url', helpers.page_url);
|
|
});
|
|
|
|
const paginationRegex = /class="pagination"/;
|
|
const newerRegex = /class="newer-posts"/;
|
|
const olderRegex = /class="older-posts"/;
|
|
const pageRegex = /class="page-number"/;
|
|
|
|
it('should throw if pagination data is incorrect', function () {
|
|
const runHelper = function (data) {
|
|
return function () {
|
|
helpers.pagination.call(data);
|
|
};
|
|
};
|
|
|
|
const expectedMessage = 'The {{pagination}} helper was used outside of a paginated context. See https://ghost.org/docs/api/handlebars-themes/helpers/pagination/.';
|
|
|
|
runHelper('not an object').should.throwError(expectedMessage);
|
|
runHelper(function () {
|
|
}).should.throwError(expectedMessage);
|
|
});
|
|
|
|
it('can render single page with no pagination necessary', function () {
|
|
const rendered = helpers.pagination.call({
|
|
pagination: {page: 1, prev: null, next: null, limit: 15, total: 8, pages: 1},
|
|
tag: {slug: 'slug'}
|
|
});
|
|
should.exist(rendered);
|
|
// strip out carriage returns and compare.
|
|
rendered.string.should.match(paginationRegex);
|
|
rendered.string.should.match(pageRegex);
|
|
rendered.string.should.match(/Page 1 of 1/);
|
|
rendered.string.should.not.match(newerRegex);
|
|
rendered.string.should.not.match(olderRegex);
|
|
});
|
|
|
|
it('can render first page of many with older posts link', function () {
|
|
const rendered = helpers.pagination.call({
|
|
pagination: {page: 1, prev: null, next: 2, limit: 15, total: 8, pages: 3}
|
|
});
|
|
should.exist(rendered);
|
|
|
|
rendered.string.should.match(paginationRegex);
|
|
rendered.string.should.match(pageRegex);
|
|
rendered.string.should.match(olderRegex);
|
|
rendered.string.should.match(/Page 1 of 3/);
|
|
rendered.string.should.not.match(newerRegex);
|
|
});
|
|
|
|
it('can render middle pages of many with older and newer posts link', function () {
|
|
const rendered = helpers.pagination.call({
|
|
pagination: {page: 2, prev: 1, next: 3, limit: 15, total: 8, pages: 3}
|
|
});
|
|
should.exist(rendered);
|
|
|
|
rendered.string.should.match(paginationRegex);
|
|
rendered.string.should.match(pageRegex);
|
|
rendered.string.should.match(olderRegex);
|
|
rendered.string.should.match(newerRegex);
|
|
rendered.string.should.match(/Page 2 of 3/);
|
|
});
|
|
|
|
it('can render last page of many with newer posts link', function () {
|
|
const rendered = helpers.pagination.call({
|
|
pagination: {page: 3, prev: 2, next: null, limit: 15, total: 8, pages: 3}
|
|
});
|
|
should.exist(rendered);
|
|
|
|
rendered.string.should.match(paginationRegex);
|
|
rendered.string.should.match(pageRegex);
|
|
rendered.string.should.match(newerRegex);
|
|
rendered.string.should.match(/Page 3 of 3/);
|
|
rendered.string.should.not.match(olderRegex);
|
|
});
|
|
|
|
it('validates values', function () {
|
|
const runErrorTest = function (data) {
|
|
return function () {
|
|
helpers.pagination.call(data);
|
|
};
|
|
};
|
|
|
|
runErrorTest({pagination: {page: 3, prev: true, next: null, limit: 15, total: 8, pages: 3}})
|
|
.should.throwError('Invalid value, Next/Prev must be a number');
|
|
runErrorTest({pagination: {page: 3, prev: 2, next: true, limit: 15, total: 8, pages: 3}})
|
|
.should.throwError('Invalid value, Next/Prev must be a number');
|
|
|
|
runErrorTest({pagination: {limit: 15, total: 8, pages: 3}})
|
|
.should.throwError('All values must be defined for page, pages, limit and total');
|
|
runErrorTest({pagination: {page: 3, total: 8, pages: 3}})
|
|
.should.throwError('All values must be defined for page, pages, limit and total');
|
|
runErrorTest({pagination: {page: 3, limit: 15, pages: 3}})
|
|
.should.throwError('All values must be defined for page, pages, limit and total');
|
|
runErrorTest({pagination: {page: 3, limit: 15, total: 8}})
|
|
.should.throwError('All values must be defined for page, pages, limit and total');
|
|
|
|
runErrorTest({pagination: {page: null, prev: null, next: null, limit: 15, total: 8, pages: 3}})
|
|
.should.throwError('Invalid value, check page, pages, limit and total are numbers');
|
|
runErrorTest({pagination: {page: 1, prev: null, next: null, limit: null, total: 8, pages: 3}})
|
|
.should.throwError('Invalid value, check page, pages, limit and total are numbers');
|
|
runErrorTest({pagination: {page: 1, prev: null, next: null, limit: 15, total: null, pages: 3}})
|
|
.should.throwError('Invalid value, check page, pages, limit and total are numbers');
|
|
runErrorTest({pagination: {page: 1, prev: null, next: null, limit: 15, total: 8, pages: null}})
|
|
.should.throwError('Invalid value, check page, pages, limit and total are numbers');
|
|
});
|
|
});
|
|
|
|
describe('{{pagination}} helper with custom template', function () {
|
|
before(function (done) {
|
|
hbs.express4({partialsDir: [path.resolve(__dirname, './test_tpl')]});
|
|
|
|
hbs.cachePartials(function () {
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('can render single page with @site.title', function () {
|
|
const rendered = helpers.pagination.call({
|
|
pagination: {page: 1, prev: null, next: null, limit: 15, total: 8, pages: 1},
|
|
tag: {slug: 'slug'}
|
|
}, {
|
|
data: {
|
|
site: {
|
|
title: 'Chaos is a ladder.'
|
|
}
|
|
}
|
|
});
|
|
should.exist(rendered);
|
|
// strip out carriage returns and compare.
|
|
rendered.string.should.match(/Page 1 of 1/);
|
|
rendered.string.should.containEql('Chaos is a ladder');
|
|
rendered.string.should.not.containEql('isHeader is set');
|
|
});
|
|
|
|
it('can pass attributes through', function () {
|
|
const rendered = helpers.pagination.call({
|
|
pagination: {page: 1, prev: null, next: null, limit: 15, total: 8, pages: 1},
|
|
tag: {slug: 'slug'}
|
|
}, {
|
|
hash: {isHeader: true},
|
|
data: {
|
|
site: {}
|
|
}
|
|
});
|
|
should.exist(rendered);
|
|
// strip out carriage returns and compare.
|
|
rendered.string.should.match(/Page 1 of 1/);
|
|
rendered.string.should.not.containEql('Chaos is a ladder');
|
|
rendered.string.should.containEql('isHeader is set');
|
|
});
|
|
});
|