03be383d8b
refs https://github.com/TryGhost/Toolbox/issues/135 - Going though local utils allows to have the "withFrontend: false" flag applied only to the e2e-api test suites. This way we can gradually introduce the no-frontend change across all test suites
119 lines
4.9 KiB
JavaScript
119 lines
4.9 KiB
JavaScript
const should = require('should');
|
|
const supertest = require('supertest');
|
|
const _ = require('lodash');
|
|
const url = require('url');
|
|
const configUtils = require('../../utils/configUtils');
|
|
const config = require('../../../core/shared/config');
|
|
const models = require('../../../core/server/models');
|
|
const testUtils = require('../../utils');
|
|
const localUtils = require('./utils');
|
|
|
|
describe('Authors Content API', function () {
|
|
let request;
|
|
|
|
before(async function () {
|
|
await localUtils.startGhost();
|
|
request = supertest.agent(config.get('url'));
|
|
await testUtils.initFixtures('owner:post', 'users:no-owner', 'user:inactive', 'posts', 'api_keys');
|
|
});
|
|
|
|
afterEach(function () {
|
|
configUtils.restore();
|
|
});
|
|
|
|
const validKey = localUtils.getValidKey();
|
|
|
|
it('Can request authors', async function () {
|
|
const res = await request.get(localUtils.API.getApiQuery(`authors/?key=${validKey}`))
|
|
.set('Origin', testUtils.API.getURL())
|
|
.expect('Content-Type', /json/)
|
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
|
.expect(200);
|
|
|
|
should.not.exist(res.headers['x-cache-invalidate']);
|
|
const jsonResponse = res.body;
|
|
should.exist(jsonResponse.authors);
|
|
localUtils.API.checkResponse(jsonResponse, 'authors');
|
|
jsonResponse.authors.should.have.length(3);
|
|
|
|
// We don't expose the email address, status and other attrs.
|
|
localUtils.API.checkResponse(jsonResponse.authors[0], 'author', ['url'], null, null);
|
|
|
|
// Default order 'name asc' check
|
|
jsonResponse.authors[0].name.should.eql('Ghost');
|
|
jsonResponse.authors[2].name.should.eql('Slimer McEctoplasm');
|
|
|
|
should.exist(res.body.authors[0].url);
|
|
should.exist(url.parse(res.body.authors[0].url).protocol);
|
|
should.exist(url.parse(res.body.authors[0].url).host);
|
|
|
|
// Public api returns all authors, but no status! Locked/Inactive authors can still have written articles.
|
|
const response = await models.Author.findPage(Object.assign({status: 'all'}, testUtils.context.internal));
|
|
_.map(response.data, model => model.toJSON()).length.should.eql(3);
|
|
});
|
|
|
|
it('Can request authors including post count', async function () {
|
|
const res = await request.get(localUtils.API.getApiQuery(`authors/?key=${validKey}&include=count.posts&order=count.posts ASC`))
|
|
.set('Origin', testUtils.API.getURL())
|
|
.expect('Content-Type', /json/)
|
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
|
.expect(200);
|
|
|
|
const jsonResponse = res.body;
|
|
|
|
should.exist(jsonResponse.authors);
|
|
jsonResponse.authors.should.have.length(3);
|
|
|
|
// We don't expose the email address.
|
|
localUtils.API.checkResponse(jsonResponse.authors[0], 'author', ['count', 'url'], null, null);
|
|
|
|
// Each user should have the correct count and be more than 0
|
|
_.find(jsonResponse.authors, {slug: 'joe-bloggs'}).count.posts.should.eql(4);
|
|
_.find(jsonResponse.authors, {slug: 'slimer-mcectoplasm'}).count.posts.should.eql(1);
|
|
_.find(jsonResponse.authors, {slug: 'ghost'}).count.posts.should.eql(7);
|
|
|
|
const ids = jsonResponse.authors
|
|
.filter(author => (author.slug !== 'ghost'))
|
|
.map(user => user.id);
|
|
|
|
ids.should.eql([
|
|
testUtils.DataGenerator.Content.users[3].id,
|
|
testUtils.DataGenerator.Content.users[0].id
|
|
]);
|
|
});
|
|
|
|
it('Can request single author', async function () {
|
|
const res = await request.get(localUtils.API.getApiQuery(`authors/slug/ghost/?key=${validKey}`))
|
|
.set('Origin', testUtils.API.getURL())
|
|
.expect('Content-Type', /json/)
|
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
|
.expect(200);
|
|
|
|
should.not.exist(res.headers['x-cache-invalidate']);
|
|
const jsonResponse = res.body;
|
|
|
|
should.exist(jsonResponse.authors);
|
|
jsonResponse.authors.should.have.length(1);
|
|
|
|
// We don't expose the email address.
|
|
localUtils.API.checkResponse(jsonResponse.authors[0], 'author', ['url'], null, null);
|
|
});
|
|
|
|
it('Can request author by id including post count', async function () {
|
|
const res = await request.get(localUtils.API.getApiQuery(`authors/1/?key=${validKey}&include=count.posts`))
|
|
.set('Origin', testUtils.API.getURL())
|
|
.expect('Content-Type', /json/)
|
|
.expect('Cache-Control', testUtils.cacheRules.private)
|
|
.expect(200);
|
|
|
|
should.not.exist(res.headers['x-cache-invalidate']);
|
|
const jsonResponse = res.body;
|
|
|
|
should.exist(jsonResponse.authors);
|
|
jsonResponse.authors.should.have.length(1);
|
|
|
|
// We don't expose the email address.
|
|
localUtils.API.checkResponse(jsonResponse.authors[0], 'author', ['count', 'url'], null, null);
|
|
});
|
|
});
|