Ghost/test/unit/frontend/helpers/page_url.test.js
Hannah Wolfe 95d27e7f58
Moved frontend unit tests into their own folder
- 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
2021-10-06 11:58:29 +01:00

45 lines
1.6 KiB
JavaScript

const should = require('should');
// Stuff we are testing
const page_url = require('../../../../core/frontend/helpers/page_url');
describe('{{page_url}} helper', function () {
const options = {data: {root: {pagination: {}}}};
beforeEach(function () {
options.data.root = {pagination: {}};
});
it('can return a valid url when the relative URL is /', function () {
options.data.root.relativeUrl = '/';
options.data.root.pagination.next = 3;
options.data.root.pagination.prev = 6;
page_url(1, options).should.equal('/');
page_url(2, options).should.equal('/page/2/');
page_url(50, options).should.equal('/page/50/');
page_url('next', options).should.eql('/page/3/');
page_url('prev', options).should.eql('/page/6/');
});
it('can return a valid url when the relative url has a path', function () {
options.data.root.relativeUrl = '/tag/pumpkin/';
options.data.root.pagination.next = 10;
options.data.root.pagination.prev = 2;
page_url(1, options).should.equal('/tag/pumpkin/');
page_url(2, options).should.equal('/tag/pumpkin/page/2/');
page_url(50, options).should.equal('/tag/pumpkin/page/50/');
page_url('next', options).should.eql('/tag/pumpkin/page/10/');
page_url('prev', options).should.eql('/tag/pumpkin/page/2/');
});
it('should assume 1 if page is undefined', function () {
options.data.root.relativeUrl = '/tag/pumpkin/';
options.data.root.pagination.next = 10;
options.data.root.pagination.prev = 2;
page_url(options).should.equal(page_url(1, options));
});
});