0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/core/test/unit/middleware/static-theme_spec.js
JT Turner cdc98dce15 Fixed ghost admin error when missing theme folder.
closes #6368
- Add test to recreate the error in the static theme middleware.
- Updated static theme middleware to not error if missing theme folder.
2016-01-23 14:01:26 -08:00

88 lines
2.4 KiB
JavaScript

/*globals describe, it, beforeEach */
/*jshint expr:true*/
var sinon = require('sinon'),
should = require('should'),
express = require('express'),
staticTheme = require('../../../server/middleware/static-theme');
should.equal(true, true);
describe('staticTheme', function () {
var next;
beforeEach(function () {
next = sinon.spy();
});
it('should call next if hbs file type', function () {
var req = {
url: 'mytemplate.hbs'
};
staticTheme(null)(req, null, next);
next.called.should.be.true;
});
it('should call next if md file type', function () {
var req = {
url: 'README.md'
};
staticTheme(null)(req, null, next);
next.called.should.be.true;
});
it('should call next if json file type', function () {
var req = {
url: 'sample.json'
};
staticTheme(null)(req, null, next);
next.called.should.be.true;
});
it('should call express.static if valid file type', function (done) {
var req = {
url: 'myvalidfile.css',
app: {
get: function () { return 'casper'; }
}
},
activeThemeStub,
sandbox = sinon.sandbox.create(),
expressStatic = sinon.spy(express, 'static');
activeThemeStub = sandbox.spy(req.app, 'get');
staticTheme(null)(req, null, function (reqArg, res, next2) {
/*jshint unused:false */
sandbox.restore();
next.called.should.be.false;
activeThemeStub.called.should.be.true;
expressStatic.called.should.be.true;
expressStatic.args[0][1].maxAge.should.exist;
done();
});
});
it('should not error if active theme is missing', function (done) {
var req = {
url: 'myvalidfile.css',
app: {
get: function () { return undefined; }
}
},
activeThemeStub,
sandbox = sinon.sandbox.create();
activeThemeStub = sandbox.spy(req.app, 'get');
staticTheme(null)(req, null, function (reqArg, res, next2) {
/*jshint unused:false */
sandbox.restore();
next.called.should.be.false;
done();
});
});
});