47e00900cc
no issue - change out should.equal for // jshint ignore:line - ensure should is the first require in every test, and ALWAYS require - make sinon the second require, and sandbox the last thing - ALWAYS use sandbox, futureproofs tests against contributors who don't know it - change require formatting
65 lines
2.0 KiB
JavaScript
65 lines
2.0 KiB
JavaScript
var should = require('should'), // jshint ignore:line
|
|
sinon = require('sinon'),
|
|
|
|
// Thing we are testing
|
|
redirectAdminUrls = require('../../server/admin/middleware')[0],
|
|
|
|
sandbox = sinon.sandbox.create();
|
|
|
|
describe('Admin App', function () {
|
|
afterEach(function () {
|
|
sandbox.restore();
|
|
});
|
|
|
|
describe('middleware', function () {
|
|
describe('redirectAdminUrls', function () {
|
|
var req, res, next;
|
|
// Input: req.originalUrl
|
|
// Output: either next or res.redirect are called
|
|
beforeEach(function () {
|
|
req = {};
|
|
res = {};
|
|
next = sandbox.stub();
|
|
res.redirect = sandbox.stub();
|
|
});
|
|
|
|
it('should redirect a url which starts with ghost', function () {
|
|
req.originalUrl = '/ghost/x';
|
|
|
|
redirectAdminUrls(req, res, next);
|
|
|
|
next.called.should.be.false();
|
|
res.redirect.called.should.be.true();
|
|
res.redirect.calledWith('/ghost/#/x').should.be.true();
|
|
});
|
|
|
|
it('should not redirect /ghost/ on its owh', function () {
|
|
req.originalUrl = '/ghost/';
|
|
|
|
redirectAdminUrls(req, res, next);
|
|
|
|
next.called.should.be.true();
|
|
res.redirect.called.should.be.false();
|
|
});
|
|
|
|
it('should not redirect url that has no slash', function () {
|
|
req.originalUrl = 'ghost/x';
|
|
|
|
redirectAdminUrls(req, res, next);
|
|
|
|
next.called.should.be.true();
|
|
res.redirect.called.should.be.false();
|
|
});
|
|
|
|
it('should not redirect url that starts with something other than /ghost/', function () {
|
|
req.originalUrl = 'x/ghost/x';
|
|
|
|
redirectAdminUrls(req, res, next);
|
|
|
|
next.called.should.be.true();
|
|
res.redirect.called.should.be.false();
|
|
});
|
|
});
|
|
});
|
|
});
|