95d27e7f58
- this is a small part of a bit of cleanup of our test files - the goal is to make the existing tests clearer with a view to making it easier to write more tests - this makes the test structure follow the codebase structure more closely - eventually we will colocate the frontend tests with the frontend code
168 lines
6.3 KiB
JavaScript
168 lines
6.3 KiB
JavaScript
const should = require('should');
|
|
const getPaginatedUrl = require('../../../../core/frontend/meta/paginated-url');
|
|
const configUtils = require('../../../utils/configUtils');
|
|
|
|
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 () {
|
|
before(function () {
|
|
configUtils.set({url: 'http://localhost:65535/blog'});
|
|
});
|
|
|
|
after(function () {
|
|
configUtils.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/');
|
|
});
|
|
});
|
|
});
|