mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 01:03:23 +03:00
7f1d3ebc07
- move all test files from core/test to test/ - updated all imports and other references - all code inside of core/ is then application code - tests are correctly at the root level - consistent with other repos/projects Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
76 lines
2.9 KiB
JavaScript
76 lines
2.9 KiB
JavaScript
const url = require('url');
|
|
const should = require('should');
|
|
const supertest = require('supertest');
|
|
const testUtils = require('../../utils');
|
|
const configUtils = require('../../utils/configUtils');
|
|
const config = require('../../../core/server/config');
|
|
const localUtils = require('./utils');
|
|
|
|
const ghost = testUtils.startGhost;
|
|
let request;
|
|
|
|
describe('Pages Content API', function () {
|
|
before(function () {
|
|
return ghost()
|
|
.then(function () {
|
|
request = supertest.agent(config.get('url'));
|
|
})
|
|
.then(function () {
|
|
return testUtils.initFixtures('users:no-owner', 'user:inactive', 'posts', 'tags:extra', 'api_keys');
|
|
});
|
|
});
|
|
|
|
afterEach(function () {
|
|
configUtils.restore();
|
|
});
|
|
|
|
it('Can request pages', function () {
|
|
const key = localUtils.getValidKey();
|
|
return request.get(localUtils.API.getApiQuery(`pages/?key=${key}`))
|
|
.set('Origin', testUtils.API.getURL())
|
|
.expect('Content-Type', /json/)
|
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
|
.expect(200)
|
|
.then((res) => {
|
|
res.headers.vary.should.eql('Accept-Encoding');
|
|
should.exist(res.headers['access-control-allow-origin']);
|
|
should.not.exist(res.headers['x-cache-invalidate']);
|
|
|
|
const jsonResponse = res.body;
|
|
should.exist(jsonResponse.pages);
|
|
should.exist(jsonResponse.meta);
|
|
jsonResponse.pages.should.have.length(1);
|
|
|
|
res.body.pages[0].slug.should.eql(testUtils.DataGenerator.Content.posts[5].slug);
|
|
|
|
const urlParts = url.parse(res.body.pages[0].url);
|
|
should.exist(urlParts.protocol);
|
|
should.exist(urlParts.host);
|
|
});
|
|
});
|
|
|
|
it('Can request page', function () {
|
|
const key = localUtils.getValidKey();
|
|
return request.get(localUtils.API.getApiQuery(`pages/${testUtils.DataGenerator.Content.posts[5].id}/?key=${key}`))
|
|
.set('Origin', testUtils.API.getURL())
|
|
.expect('Content-Type', /json/)
|
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
|
.expect(200)
|
|
.then((res) => {
|
|
res.headers.vary.should.eql('Accept-Encoding');
|
|
should.exist(res.headers['access-control-allow-origin']);
|
|
should.not.exist(res.headers['x-cache-invalidate']);
|
|
|
|
const jsonResponse = res.body;
|
|
should.exist(jsonResponse.pages);
|
|
jsonResponse.pages.should.have.length(1);
|
|
|
|
res.body.pages[0].slug.should.eql(testUtils.DataGenerator.Content.posts[5].slug);
|
|
|
|
const urlParts = url.parse(res.body.pages[0].url);
|
|
should.exist(urlParts.protocol);
|
|
should.exist(urlParts.host);
|
|
});
|
|
});
|
|
});
|