mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
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
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const errors = require('@tryghost/errors');
|
|
const urlUtils = require('../../../../../../core/shared/url-utils');
|
|
const middlewares = require('../../../../../../core/frontend/services/routing/middlewares');
|
|
|
|
describe('UNIT: services/routing/middlewares/page-param', function () {
|
|
let req;
|
|
let res;
|
|
let next;
|
|
|
|
beforeEach(function () {
|
|
req = sinon.stub();
|
|
req.params = {};
|
|
|
|
res = sinon.stub();
|
|
next = sinon.stub();
|
|
|
|
sinon.stub(urlUtils, 'redirect301');
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
it('success', function () {
|
|
req.originalUrl = 'http://localhost:2368/blog/page/2/';
|
|
req.url = '/blog/page/2/';
|
|
|
|
middlewares.pageParam(req, res, next, 2);
|
|
|
|
urlUtils.redirect301.called.should.be.false();
|
|
next.calledOnce.should.be.true();
|
|
req.params.page.should.eql(2);
|
|
});
|
|
|
|
it('redirect for /page/1/', function () {
|
|
req.originalUrl = 'http://localhost:2368/blog/page/1/';
|
|
req.url = '/blog/page/1/';
|
|
|
|
middlewares.pageParam(req, res, next, 1);
|
|
|
|
urlUtils.redirect301.calledOnce.should.be.true();
|
|
next.called.should.be.false();
|
|
});
|
|
|
|
it('404 for /page/0/', function () {
|
|
req.originalUrl = 'http://localhost:2368/blog/page/0/';
|
|
req.url = '/blog/page/0/';
|
|
|
|
middlewares.pageParam(req, res, next, 0);
|
|
|
|
urlUtils.redirect301.called.should.be.false();
|
|
next.calledOnce.should.be.true();
|
|
(next.args[0][0] instanceof errors.NotFoundError).should.be.true();
|
|
});
|
|
|
|
it('404 for /page/something/', function () {
|
|
req.originalUrl = 'http://localhost:2368/blog/page/something/';
|
|
req.url = '/blog/page/something/';
|
|
|
|
middlewares.pageParam(req, res, next, 'something');
|
|
|
|
urlUtils.redirect301.called.should.be.false();
|
|
next.calledOnce.should.be.true();
|
|
(next.args[0][0] instanceof errors.NotFoundError).should.be.true();
|
|
});
|
|
|
|
it('redirect for /rss/page/1/', function () {
|
|
req.originalUrl = 'http://localhost:2368/blog/rss/page/1/';
|
|
req.url = '/blog/rss/page/1/';
|
|
|
|
middlewares.pageParam(req, res, next, 1);
|
|
|
|
urlUtils.redirect301.calledOnce.should.be.true();
|
|
next.called.should.be.false();
|
|
});
|
|
});
|