mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
ab80a132f3
fixes #1810 - updates frontend.single route to accept ‘edit’ as the last param - updates controller.frontend to handle redirection only when we would otherwise have rendered the page - added unit tests for this behavior
361 lines
13 KiB
JavaScript
361 lines
13 KiB
JavaScript
/*globals describe, beforeEach, afterEach, it*/
|
|
var assert = require('assert'),
|
|
moment = require('moment'),
|
|
should = require('should'),
|
|
sinon = require('sinon'),
|
|
when = require('when'),
|
|
|
|
// Stuff we are testing
|
|
config = require('../../server/config'),
|
|
api = require('../../server/api'),
|
|
frontend = require('../../server/controllers/frontend');
|
|
|
|
describe('Frontend Controller', function () {
|
|
|
|
var ghost,
|
|
sandbox,
|
|
apiSettingsStub,
|
|
adminEditPagePath = '/ghost/editor/';
|
|
|
|
beforeEach(function () {
|
|
sandbox = sinon.sandbox.create();
|
|
});
|
|
|
|
afterEach(function () {
|
|
sandbox.restore();
|
|
});
|
|
|
|
|
|
describe('homepage', function () {
|
|
// No tests yet, shows up in coverage report
|
|
});
|
|
|
|
describe('single', function () {
|
|
var mockStaticPost = {
|
|
'status': 'published',
|
|
'id': 1,
|
|
'title': 'Test static page',
|
|
'slug': 'test-static-page',
|
|
'markdown': 'Test static page content',
|
|
'page': 1,
|
|
'published_at': new Date('2013/12/30').getTime()
|
|
},
|
|
mockPost = {
|
|
'status': 'published',
|
|
'id': 2,
|
|
'title': 'Test normal post',
|
|
'slug': 'test-normal-post',
|
|
'markdown': 'The test normal post content',
|
|
'page': 0,
|
|
'published_at': new Date('2014/1/2').getTime()
|
|
};
|
|
|
|
beforeEach(function () {
|
|
sandbox.stub(api.posts, 'read', function (args) {
|
|
return when(args.slug === mockStaticPost.slug ? mockStaticPost : mockPost);
|
|
});
|
|
|
|
apiSettingsStub = sandbox.stub(api.settings, 'read');
|
|
|
|
apiSettingsStub.withArgs('activeTheme').returns(when({
|
|
'key': 'activeTheme',
|
|
'value': 'casper'
|
|
}));
|
|
|
|
sandbox.stub(config, 'paths', function () {
|
|
return {
|
|
'subdir': '',
|
|
'availableThemes': {
|
|
'casper': {
|
|
'assets': null,
|
|
'default': '/content/themes/casper/default.hbs',
|
|
'index': '/content/themes/casper/index.hbs',
|
|
'page': '/content/themes/casper/page.hbs',
|
|
'post': '/content/themes/casper/post.hbs'
|
|
}
|
|
}
|
|
};
|
|
});
|
|
});
|
|
|
|
describe('permalink set to slug', function () {
|
|
beforeEach(function () {
|
|
apiSettingsStub.withArgs('permalinks').returns(when({
|
|
value: '/:slug/'
|
|
}));
|
|
});
|
|
|
|
it('can render a static page', function (done) {
|
|
var req = {
|
|
params: [undefined, mockStaticPost.slug]
|
|
},
|
|
res = {
|
|
render: function (view, context) {
|
|
assert.equal(view, 'page');
|
|
assert.equal(context.post, mockStaticPost);
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT render a static page accessed as a date url', function (done) {
|
|
var req = {
|
|
params: ['2012/12/30/', mockStaticPost.slug]
|
|
},
|
|
res = {
|
|
render: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('can render a normal post', function (done) {
|
|
var req = {
|
|
params: [undefined, mockPost.slug]
|
|
},
|
|
res = {
|
|
render: function (view, context) {
|
|
assert.equal(view, 'post');
|
|
assert(context.post, 'Context object has post attribute');
|
|
assert.equal(context.post, mockPost);
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT render a normal post accessed as a date url', function (done) {
|
|
var req = {
|
|
params: ['2012/12/30/', mockPost.slug]
|
|
},
|
|
res = {
|
|
render: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Handle Edit append
|
|
it('will redirect to admin edit page for a normal post', function (done) {
|
|
var req = {
|
|
params: [undefined, mockPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: function(arg) {
|
|
res.render.called.should.be.false;
|
|
arg.should.eql(adminEditPagePath + mockPost.id + '/');
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT redirect to admin edit page for a normal post accessed as a date url', function (done) {
|
|
var req = {
|
|
params: ['2012/12/30/', mockPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
res.redirect.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('will redirect to admin edit page for a static page accessed as a slug', function (done) {
|
|
var req = {
|
|
params: [undefined, mockStaticPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: function(arg) {
|
|
res.render.called.should.be.false;
|
|
arg.should.eql(adminEditPagePath + mockStaticPost.id + '/');
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT redirect to admin edit page for a static page accessed as a date url', function (done) {
|
|
var req = {
|
|
params: ['2012/12/30/', mockStaticPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
res.redirect.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('permalink set to date', function () {
|
|
beforeEach(function () {
|
|
apiSettingsStub.withArgs('permalinks').returns(when({
|
|
value: '/:year/:month/:day/:slug/'
|
|
}));
|
|
});
|
|
|
|
it('can render a static page', function (done) {
|
|
var req = {
|
|
params: [undefined, mockStaticPost.slug]
|
|
},
|
|
res = {
|
|
render: function (view, context) {
|
|
assert.equal(view, 'page');
|
|
assert.equal(context.post, mockStaticPost);
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT render a static page accessed as a date url', function (done) {
|
|
var req = {
|
|
params: ['2012/12/30/', 'test-static-page']
|
|
},
|
|
res = {
|
|
render: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('can render a normal post', function (done) {
|
|
var date = moment(mockPost.published_at).format('YYYY/MM/DD/'),
|
|
req = {
|
|
params: [date, mockPost.slug]
|
|
},
|
|
res = {
|
|
render: function (view, context) {
|
|
assert.equal(view, 'post');
|
|
assert(context.post, 'Context object has post attribute');
|
|
assert.equal(context.post, mockPost);
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT render a normal post with the wrong date', function (done) {
|
|
var date = moment(mockPost.published_at).subtract('days', 1).format('YYYY/MM/DD/'),
|
|
req = {
|
|
params: [date, mockPost.slug]
|
|
},
|
|
res = {
|
|
render: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('will NOT render a normal post accessed as a slug url', function (done) {
|
|
var req = {
|
|
params: [undefined, mockPost.slug]
|
|
},
|
|
res = {
|
|
render: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Handle Edit append
|
|
it('will redirect to admin edit page for a normal post', function (done) {
|
|
var req = {
|
|
params: [moment(mockPost.published_at).format('YYYY/MM/DD/'), mockPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: function (arg) {
|
|
res.render.called.should.be.false;
|
|
arg.should.eql(adminEditPagePath + mockPost.id + '/');
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT redirect to admin edit page for a normal post accessed as a slug url', function (done) {
|
|
var req = {
|
|
params: [undefined, mockPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
res.redirect.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('will redirect to admin edit page for a static page accessed as a slug url', function (done) {
|
|
var req = {
|
|
params: [undefined, mockStaticPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: function (arg) {
|
|
res.render.called.should.be.false;
|
|
arg.should.eql(adminEditPagePath + mockStaticPost.id + '/');
|
|
done();
|
|
}
|
|
};
|
|
|
|
frontend.single(req, res, null);
|
|
});
|
|
|
|
it('will NOT redirect to admin edit page for a static page accessed as a date url', function (done) {
|
|
var req = {
|
|
params: ['2012/12/30/', mockStaticPost.slug, 'edit']
|
|
},
|
|
res = {
|
|
render: sinon.spy(),
|
|
redirect: sinon.spy()
|
|
};
|
|
|
|
frontend.single(req, res, function () {
|
|
res.render.called.should.be.false;
|
|
res.redirect.called.should.be.false;
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}); |