2013-12-31 21:09:49 +04:00
|
|
|
/*global describe, it, before, after */
|
|
|
|
|
|
|
|
// # Frontend Route tests
|
|
|
|
// As it stands, these tests depend on the database, and as such are integration tests.
|
|
|
|
// Mocking out the models to not touch the DB would turn these into unit tests, and should probably be done in future,
|
|
|
|
// But then again testing real code, rather than mock code, might be more useful...
|
|
|
|
|
2013-12-31 03:13:25 +04:00
|
|
|
var request = require('supertest'),
|
2014-03-25 16:42:52 +04:00
|
|
|
express = require('express'),
|
2013-12-31 03:13:25 +04:00
|
|
|
should = require('should'),
|
|
|
|
moment = require('moment'),
|
2014-02-22 05:25:31 +04:00
|
|
|
path = require('path'),
|
2013-12-31 03:13:25 +04:00
|
|
|
|
|
|
|
testUtils = require('../../utils'),
|
2014-03-25 16:42:52 +04:00
|
|
|
ghost = require('../../../../core'),
|
|
|
|
httpServer,
|
2013-12-31 03:13:25 +04:00
|
|
|
|
|
|
|
ONE_HOUR_S = 60 * 60,
|
|
|
|
ONE_YEAR_S = 365 * 24 * ONE_HOUR_S,
|
|
|
|
cacheRules = {
|
|
|
|
'public': 'public, max-age=0',
|
|
|
|
'hour': 'public, max-age=' + ONE_HOUR_S,
|
|
|
|
'year': 'public, max-age=' + ONE_YEAR_S,
|
|
|
|
'private': 'no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0'
|
|
|
|
};
|
2013-12-31 21:09:49 +04:00
|
|
|
|
|
|
|
describe('Frontend Routing', function () {
|
|
|
|
function doEnd(done) {
|
|
|
|
return function (err, res) {
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
2013-12-31 03:13:25 +04:00
|
|
|
|
|
|
|
should.not.exist(res.headers['x-cache-invalidate']);
|
|
|
|
should.not.exist(res.headers['X-CSRF-Token']);
|
|
|
|
should.not.exist(res.headers['set-cookie']);
|
|
|
|
should.exist(res.headers.date);
|
|
|
|
|
2013-12-31 21:09:49 +04:00
|
|
|
done();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
before(function (done) {
|
2014-03-25 16:42:52 +04:00
|
|
|
var app = express();
|
|
|
|
|
|
|
|
ghost({app: app}).then(function (_httpServer) {
|
|
|
|
// Setup the request object with the ghost express app
|
|
|
|
httpServer = _httpServer;
|
|
|
|
request = request(app);
|
|
|
|
testUtils.clearData().then(function () {
|
|
|
|
// we initialise data, but not a user. No user should be required for navigating the frontend
|
|
|
|
return testUtils.initData();
|
|
|
|
}).then(function () {
|
|
|
|
done();
|
2014-05-06 00:58:58 +04:00
|
|
|
}).catch(done);
|
|
|
|
}).catch(function (e) {
|
2014-03-25 16:42:52 +04:00
|
|
|
console.log('Ghost Error: ', e);
|
|
|
|
console.log(e.stack);
|
|
|
|
});
|
|
|
|
});
|
2013-12-31 21:09:49 +04:00
|
|
|
|
2014-03-25 16:42:52 +04:00
|
|
|
after(function () {
|
|
|
|
httpServer.close();
|
2013-12-31 21:09:49 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Home', function () {
|
|
|
|
it('should respond with html', function (done) {
|
|
|
|
request.get('/')
|
|
|
|
.expect('Content-Type', /html/)
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not have as second page', function (done) {
|
|
|
|
request.get('/page/2/')
|
|
|
|
.expect('Location', '/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Welcome post', function () {
|
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/welcome-to-ghost')
|
|
|
|
.expect('Location', '/welcome-to-ghost/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules.year)
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should respond with html', function (done) {
|
|
|
|
request.get('/welcome-to-ghost/')
|
|
|
|
.expect('Content-Type', /html/)
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not work with date permalinks', function (done) {
|
|
|
|
// get today's date
|
|
|
|
var date = moment().format("YYYY/MM/DD");
|
|
|
|
|
|
|
|
request.get('/' + date + '/welcome-to-ghost/')
|
2014-03-05 07:22:00 +04:00
|
|
|
//.expect('Cache-Control', cacheRules['private'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(404)
|
|
|
|
.expect(/Page Not Found/)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should 404 for unknown post', function (done) {
|
|
|
|
request.get('/spectacular/')
|
2014-03-05 07:22:00 +04:00
|
|
|
.expect('Cache-Control', cacheRules['private'])
|
2014-04-20 08:48:14 +04:00
|
|
|
.expect(404)
|
|
|
|
.expect(/Page Not Found/)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Post edit', function () {
|
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/welcome-to-ghost/edit')
|
|
|
|
.expect('Location', '/welcome-to-ghost/edit/')
|
|
|
|
.expect('Cache-Control', cacheRules.year)
|
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect to editor', function (done) {
|
|
|
|
request.get('/welcome-to-ghost/edit/')
|
|
|
|
.expect('Location', '/ghost/editor/1/')
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should 404 for non-edit parameter', function (done) {
|
|
|
|
request.get('/welcome-to-ghost/notedit/')
|
|
|
|
.expect('Cache-Control', cacheRules['private'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(404)
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect(/Page Not Found/)
|
2013-12-31 21:09:49 +04:00
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
2014-07-01 03:26:08 +04:00
|
|
|
|
2014-02-22 05:25:31 +04:00
|
|
|
// we'll use X-Forwarded-Proto: https to simulate an 'https://' request behind a proxy
|
|
|
|
describe('HTTPS', function() {
|
|
|
|
var forkedGhost, request;
|
|
|
|
before(function (done) {
|
|
|
|
var configTestHttps = testUtils.fork.config();
|
|
|
|
configTestHttps.forceAdminSSL = {redirect: false};
|
|
|
|
configTestHttps.urlSSL = 'https://localhost/';
|
|
|
|
|
|
|
|
testUtils.fork.ghost(configTestHttps, 'testhttps')
|
|
|
|
.then(function(child) {
|
|
|
|
forkedGhost = child;
|
|
|
|
request = require('supertest');
|
|
|
|
request = request(configTestHttps.url.replace(/\/$/, ''));
|
2014-05-06 00:58:58 +04:00
|
|
|
}).then(done).catch(done);
|
2014-02-22 05:25:31 +04:00
|
|
|
});
|
2014-07-01 03:26:08 +04:00
|
|
|
|
2014-02-22 05:25:31 +04:00
|
|
|
after(function (done) {
|
|
|
|
if (forkedGhost) {
|
|
|
|
forkedGhost.kill(done);
|
|
|
|
}
|
|
|
|
});
|
2014-07-01 03:26:08 +04:00
|
|
|
|
2014-02-22 05:25:31 +04:00
|
|
|
it('should set links to url over non-HTTPS', function(done) {
|
|
|
|
request.get('/')
|
|
|
|
.expect(200)
|
|
|
|
.expect(/\<link rel="canonical" href="http:\/\/127.0.0.1:2370\/" \/\>/)
|
2014-07-23 02:26:13 +04:00
|
|
|
.expect(/\<a href="http:\/\/127.0.0.1:2370">Ghost\<\/a\>/)
|
2014-02-22 05:25:31 +04:00
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set links to urlSSL over HTTPS', function(done) {
|
|
|
|
request.get('/')
|
|
|
|
.set('X-Forwarded-Proto', 'https')
|
|
|
|
.expect(200)
|
|
|
|
.expect(/\<link rel="canonical" href="https:\/\/localhost\/" \/\>/)
|
2014-07-23 02:26:13 +04:00
|
|
|
.expect(/\<a href="https:\/\/localhost">Ghost\<\/a\>/)
|
2014-02-22 05:25:31 +04:00
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
2013-12-31 21:09:49 +04:00
|
|
|
|
|
|
|
describe('RSS', function () {
|
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/rss')
|
|
|
|
.expect('Location', '/rss/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules.year)
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should respond with xml', function (done) {
|
|
|
|
request.get('/rss/')
|
|
|
|
.expect('Content-Type', /xml/)
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not have as second page', function (done) {
|
|
|
|
request.get('/rss/2/')
|
2013-12-31 03:13:25 +04:00
|
|
|
// TODO this should probably redirect straight to /rss/ with 301?
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect('Location', '/rss/1/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
2014-03-24 01:49:43 +04:00
|
|
|
|
|
|
|
it('should get redirected to /rss/ from /feed/', function (done) {
|
|
|
|
request.get('/feed/')
|
|
|
|
.expect('Location', '/rss/')
|
|
|
|
.expect('Cache-Control', cacheRules.year)
|
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
2013-12-31 21:09:49 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ### The rest of the tests require more data
|
|
|
|
|
|
|
|
describe('Archive pages', function () {
|
|
|
|
|
2014-07-22 00:34:51 +04:00
|
|
|
// Add enough posts to trigger pages for both the archive (5 pp) and rss (15 pp)
|
2013-12-31 21:09:49 +04:00
|
|
|
// insertPosts adds 5 published posts, 1 draft post, 1 published static page and one draft page
|
|
|
|
// we then insert with max 11 which ensures we have 16 published posts
|
|
|
|
before(function (done) {
|
2014-07-21 21:50:04 +04:00
|
|
|
testUtils.fixtures.insertPosts().then(function () {
|
2014-07-22 00:34:51 +04:00
|
|
|
return testUtils.fixtures.insertMorePosts(9);
|
2013-12-31 21:09:49 +04:00
|
|
|
}).then(function () {
|
|
|
|
done();
|
2014-05-06 00:58:58 +04:00
|
|
|
}).catch(done);
|
2013-12-31 21:09:49 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/page/2')
|
|
|
|
.expect('Location', '/page/2/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules.year)
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should respond with html', function (done) {
|
|
|
|
request.get('/page/2/')
|
|
|
|
.expect('Content-Type', /html/)
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect page 1', function (done) {
|
|
|
|
request.get('/page/1/')
|
|
|
|
.expect('Location', '/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
// TODO: This should probably be a 301?
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
2014-03-06 02:03:39 +04:00
|
|
|
it('should redirect to last page if page too high', function (done) {
|
2013-12-31 21:09:49 +04:00
|
|
|
request.get('/page/4/')
|
|
|
|
.expect('Location', '/page/3/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
2014-03-06 02:03:39 +04:00
|
|
|
it('should redirect to first page if page too low', function (done) {
|
2013-12-31 21:09:49 +04:00
|
|
|
request.get('/page/0/')
|
|
|
|
.expect('Location', '/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('RSS pages', function () {
|
2014-07-22 00:34:51 +04:00
|
|
|
before(function (done) {
|
|
|
|
testUtils.fixtures.insertMorePosts(2).then(function () {
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
|
|
|
});
|
2013-12-31 21:09:49 +04:00
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/rss/2')
|
|
|
|
.expect('Location', '/rss/2/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules.year)
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should respond with xml', function (done) {
|
|
|
|
request.get('/rss/2/')
|
|
|
|
.expect('Content-Type', /xml/)
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect page 1', function (done) {
|
|
|
|
request.get('/rss/1/')
|
|
|
|
.expect('Location', '/rss/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
// TODO: This should probably be a 301?
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
2014-03-06 02:03:39 +04:00
|
|
|
it('should redirect to last page if page too high', function (done) {
|
2013-12-31 21:09:49 +04:00
|
|
|
request.get('/rss/3/')
|
|
|
|
.expect('Location', '/rss/2/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
2014-03-06 02:03:39 +04:00
|
|
|
it('should redirect to first page if page too low', function (done) {
|
2013-12-31 21:09:49 +04:00
|
|
|
request.get('/rss/0/')
|
|
|
|
.expect('Location', '/rss/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-03-06 02:03:39 +04:00
|
|
|
describe('Tag based RSS pages', function () {
|
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/tag/getting-started/rss')
|
|
|
|
.expect('Location', '/tag/getting-started/rss/')
|
|
|
|
.expect('Cache-Control', cacheRules.year)
|
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should respond with xml', function (done) {
|
|
|
|
request.get('/tag/getting-started/rss/')
|
|
|
|
.expect('Content-Type', /xml/)
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect page 1', function (done) {
|
|
|
|
request.get('/tag/getting-started/rss/1/')
|
|
|
|
.expect('Location', '/tag/getting-started/rss/')
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
// TODO: This should probably be a 301?
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect to last page if page too high', function (done) {
|
|
|
|
request.get('/tag/getting-started/rss/2/')
|
|
|
|
.expect('Location', '/tag/getting-started/rss/1/')
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect to first page if page too low', function (done) {
|
|
|
|
request.get('/tag/getting-started/rss/0/')
|
|
|
|
.expect('Location', '/tag/getting-started/rss/')
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-12-31 21:09:49 +04:00
|
|
|
describe('Static page', function () {
|
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/static-page-test')
|
|
|
|
.expect('Location', '/static-page-test/')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules.year)
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should respond with xml', function (done) {
|
|
|
|
request.get('/static-page-test/')
|
|
|
|
.expect('Content-Type', /html/)
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
2013-12-31 21:09:49 +04:00
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-01-12 21:08:12 +04:00
|
|
|
describe('Post with Ghost in the url', function () {
|
|
|
|
// All of Ghost's admin depends on the /ghost/ in the url to work properly
|
|
|
|
// Badly formed regexs can cause breakage if a post slug starts with the 5 letters ghost
|
|
|
|
it('should retrieve a blog post with ghost at the start of the url', function (done) {
|
|
|
|
request.get('/ghostly-kitchen-sink/')
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-12-31 03:13:25 +04:00
|
|
|
describe('Static assets', function () {
|
|
|
|
it('should retrieve shared assets', function (done) {
|
2014-01-13 01:48:34 +04:00
|
|
|
request.get('/shared/img/user-image.png')
|
|
|
|
.expect('Cache-Control', cacheRules.hour)
|
|
|
|
.expect(200)
|
2013-12-31 03:13:25 +04:00
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should retrieve theme assets', function (done) {
|
|
|
|
request.get('/assets/css/screen.css')
|
2014-05-22 07:56:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules.year)
|
2014-01-13 01:48:34 +04:00
|
|
|
.expect(200)
|
2013-12-31 03:13:25 +04:00
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should retrieve built assets', function (done) {
|
2014-07-18 02:34:21 +04:00
|
|
|
request.get('/ghost/scripts/vendor-dev.js')
|
2013-12-31 03:13:25 +04:00
|
|
|
.expect('Cache-Control', cacheRules.year)
|
2014-01-13 01:48:34 +04:00
|
|
|
.expect(200)
|
2013-12-31 03:13:25 +04:00
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
2014-03-09 13:28:58 +04:00
|
|
|
it('should retrieve default robots.txt', function (done) {
|
|
|
|
request.get('/robots.txt')
|
|
|
|
.expect('Cache-Control', cacheRules.year)
|
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
2014-05-06 00:58:58 +04:00
|
|
|
});
|
2014-03-09 13:28:58 +04:00
|
|
|
|
2013-12-31 03:13:25 +04:00
|
|
|
// at the moment there is no image fixture to test
|
|
|
|
// it('should retrieve image assets', function (done) {
|
2014-01-13 01:48:34 +04:00
|
|
|
// request.get('/content/images/some.jpg')
|
2013-12-31 03:13:25 +04:00
|
|
|
// .expect('Cache-Control', cacheRules.year)
|
|
|
|
// .end(doEnd(done));
|
|
|
|
// });
|
|
|
|
});
|
|
|
|
|
2014-02-13 07:26:56 +04:00
|
|
|
describe('Tag pages', function () {
|
|
|
|
|
|
|
|
// Add enough posts to trigger tag pages
|
|
|
|
before(function (done) {
|
|
|
|
testUtils.clearData().then(function () {
|
|
|
|
// we initialise data, but not a user. No user should be required for navigating the frontend
|
|
|
|
return testUtils.initData();
|
|
|
|
}).then(function () {
|
|
|
|
|
2014-07-21 21:50:04 +04:00
|
|
|
return testUtils.fixtures.insertPosts();
|
2014-02-13 07:26:56 +04:00
|
|
|
}).then(function () {
|
2014-07-21 21:50:04 +04:00
|
|
|
return testUtils.fixtures.insertMorePosts(22);
|
2014-05-06 00:58:58 +04:00
|
|
|
}).then(function () {
|
2014-07-21 21:50:04 +04:00
|
|
|
return testUtils.fixtures.insertMorePostsTags(22);
|
2014-02-13 07:26:56 +04:00
|
|
|
}).then(function () {
|
|
|
|
done();
|
2014-05-06 00:58:58 +04:00
|
|
|
}).catch(done);
|
2014-02-13 07:26:56 +04:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect without slash', function (done) {
|
|
|
|
request.get('/tag/injection/page/2')
|
|
|
|
.expect('Location', '/tag/injection/page/2/')
|
|
|
|
.expect('Cache-Control', cacheRules.year)
|
|
|
|
.expect(301)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should respond with html', function (done) {
|
|
|
|
request.get('/tag/injection/page/2/')
|
|
|
|
.expect('Content-Type', /html/)
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(200)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should redirect page 1', function (done) {
|
|
|
|
request.get('/tag/injection/page/1/')
|
|
|
|
.expect('Location', '/tag/injection/')
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
// TODO: This should probably be a 301?
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
2014-03-06 02:03:39 +04:00
|
|
|
it('should redirect to last page if page too high', function (done) {
|
2014-02-13 07:26:56 +04:00
|
|
|
request.get('/tag/injection/page/4/')
|
2014-07-22 00:34:51 +04:00
|
|
|
.expect('Location', '/tag/injection/page/3/')
|
2014-02-13 07:26:56 +04:00
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
|
2014-03-06 02:03:39 +04:00
|
|
|
it('should redirect to first page if page too low', function (done) {
|
2014-02-13 07:26:56 +04:00
|
|
|
request.get('/tag/injection/page/0/')
|
|
|
|
.expect('Location', '/tag/injection/')
|
|
|
|
.expect('Cache-Control', cacheRules['public'])
|
|
|
|
.expect(302)
|
|
|
|
.end(doEnd(done));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-12-31 21:09:49 +04:00
|
|
|
// ### The rest of the tests switch to date permalinks
|
|
|
|
|
|
|
|
// describe('Date permalinks', function () {
|
|
|
|
// before(function (done) {
|
|
|
|
// // Only way to swap permalinks setting is to login and visit the URL because
|
|
|
|
// // poking the database doesn't work as settings are cached
|
|
|
|
// });
|
|
|
|
//
|
|
|
|
// it('should load a post with date permalink', function (done) {
|
|
|
|
//
|
|
|
|
// // get today's date
|
|
|
|
// var date = moment().format("YYYY/MM/DD");
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// request.get('/' + date + '/welcome-to-ghost/')
|
|
|
|
// .expect(200)
|
|
|
|
// .expect('Content-Type', /html/)
|
|
|
|
// .end(doEnd(done));
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|