2020-04-29 18:44:27 +03:00
|
|
|
const should = require('should');
|
2014-10-10 18:54:07 +04:00
|
|
|
|
2020-04-29 18:44:27 +03:00
|
|
|
// Stuff we are testing
|
2021-10-06 12:52:46 +03:00
|
|
|
const page_url = require('../../../../core/frontend/helpers/page_url');
|
2014-10-10 18:54:07 +04:00
|
|
|
|
|
|
|
describe('{{page_url}} helper', function () {
|
2020-04-29 18:44:27 +03:00
|
|
|
const options = {data: {root: {pagination: {}}}};
|
2016-03-21 00:48:15 +03:00
|
|
|
|
|
|
|
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;
|
2014-10-10 18:54:07 +04:00
|
|
|
|
2021-10-04 18:30:54 +03:00
|
|
|
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/');
|
2014-10-10 18:54:07 +04:00
|
|
|
});
|
|
|
|
|
2016-03-21 00:48:15 +03:00
|
|
|
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;
|
2014-10-10 18:54:07 +04:00
|
|
|
|
2021-10-04 18:30:54 +03:00
|
|
|
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/');
|
2014-10-10 18:54:07 +04:00
|
|
|
});
|
2016-04-14 13:22:23 +03:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2021-10-04 18:30:54 +03:00
|
|
|
page_url(options).should.equal(page_url(1, options));
|
2016-04-14 13:22:23 +03:00
|
|
|
});
|
2014-10-10 18:54:07 +04:00
|
|
|
});
|