Ghost/test/unit/data/meta/paginated_url_spec.js
Naz 143921948d Fixed "no-shadow" eslint warning in tests
refs b6728ecb0f

- The "no-shadow" eslint rune was introduced into ghost's eslint plugin (referenced commmit), which resulted in flood of warning in console output when linting the project codebase.
- This cleanup is aiming to make any new linting issues more visible. Follow up commits will contain similar cleanups in other parts of the codebase
2020-10-19 17:45:26 +13:00

172 lines
6.4 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const getPaginatedUrl = require('../../../../core/frontend/meta/paginated_url');
const urlUtils = require('../../../utils/urlUtils');
describe('getPaginatedUrl', function () {
let data;
beforeEach(function () {
data = {};
});
const getTestUrls = function getTestUrls() {
return {
next: getPaginatedUrl('next', data, true),
prev: getPaginatedUrl('prev', data, true),
page1: getPaginatedUrl(1, data),
page5: getPaginatedUrl(5, data),
page10: getPaginatedUrl(10, data)
};
};
it('should be a function', function () {
should.exist(getPaginatedUrl);
});
describe('index', function () {
it('should calculate correct urls for the first page of an index collection', function () {
// Setup tests
data.relativeUrl = '/';
data.pagination = {prev: null, next: 2};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', 'http://127.0.0.1:2369/page/2/');
urls.should.have.property('prev', null);
urls.should.have.property('page1', '/');
urls.should.have.property('page5', '/page/5/');
urls.should.have.property('page10', '/page/10/');
});
it('should calculate correct urls for the second page of an index collection', function () {
// Setup tests
data.relativeUrl = '/page/2/';
data.pagination = {prev: 1, next: 3};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', 'http://127.0.0.1:2369/page/3/');
urls.should.have.property('prev', 'http://127.0.0.1:2369/');
urls.should.have.property('page1', '/');
urls.should.have.property('page5', '/page/5/');
urls.should.have.property('page10', '/page/10/');
});
it('should calculate correct urls for the last page of an index collection', function () {
// Setup tests
data.relativeUrl = '/page/10/';
data.pagination = {prev: 9, next: null};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', null);
urls.should.have.property('prev', 'http://127.0.0.1:2369/page/9/');
urls.should.have.property('page1', '/');
urls.should.have.property('page5', '/page/5/');
urls.should.have.property('page10', '/page/10/');
});
});
describe('other', function () {
it('should calculate correct urls for the first page of another collection', function () {
// Setup tests
data.relativeUrl = '/featured/';
data.pagination = {prev: null, next: 2};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', 'http://127.0.0.1:2369/featured/page/2/');
urls.should.have.property('prev', null);
urls.should.have.property('page1', '/featured/');
urls.should.have.property('page5', '/featured/page/5/');
urls.should.have.property('page10', '/featured/page/10/');
});
it('should calculate correct urls for the second page of another collection', function () {
// Setup tests
data.relativeUrl = '/featured/page/2/';
data.pagination = {prev: 1, next: 3};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', 'http://127.0.0.1:2369/featured/page/3/');
urls.should.have.property('prev', 'http://127.0.0.1:2369/featured/');
urls.should.have.property('page1', '/featured/');
urls.should.have.property('page5', '/featured/page/5/');
urls.should.have.property('page10', '/featured/page/10/');
});
it('should calculate correct urls for the last page of another collection', function () {
// Setup tests
data.relativeUrl = '/featured/page/10/';
data.pagination = {prev: 9, next: null};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', null);
urls.should.have.property('prev', 'http://127.0.0.1:2369/featured/page/9/');
urls.should.have.property('page1', '/featured/');
urls.should.have.property('page5', '/featured/page/5/');
urls.should.have.property('page10', '/featured/page/10/');
});
});
describe('with /blog subdirectory', function () {
let sandbox;
before(function () {
sandbox = sinon.createSandbox();
urlUtils.stubUrlUtils({url: 'http://localhost:65535/blog'}, sandbox);
});
after(function () {
sandbox.restore();
});
it('should calculate correct urls for index', function () {
// Setup tests
data.relativeUrl = '/page/2/';
data.pagination = {prev: 1, next: 3};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', 'http://localhost:65535/blog/page/3/');
urls.should.have.property('prev', 'http://localhost:65535/blog/');
urls.should.have.property('page1', '/blog/');
urls.should.have.property('page5', '/blog/page/5/');
urls.should.have.property('page10', '/blog/page/10/');
});
it('should calculate correct urls for another collection', function () {
// Setup tests
data.relativeUrl = '/featured/page/2/';
data.pagination = {prev: 1, next: 3};
// Execute test
const urls = getTestUrls();
// Check results
urls.should.have.property('next', 'http://localhost:65535/blog/featured/page/3/');
urls.should.have.property('prev', 'http://localhost:65535/blog/featured/');
urls.should.have.property('page1', '/blog/featured/');
urls.should.have.property('page5', '/blog/featured/page/5/');
urls.should.have.property('page10', '/blog/featured/page/10/');
});
});
});