9ba251238a
refs https://github.com/TryGhost/Team/issues/2400 - we've deemed it useful to start to return `Content-Version` for all API requests, because it becomes useful to know which version of Ghost a response has come from in logs - this should also help us detect Admin<->Ghost API mismatches, which was the cause of a bug recently (ref'd issue)
30 lines
868 B
JavaScript
30 lines
868 B
JavaScript
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
|
const {anyEtag, anyContentLength, anyContentVersion} = matchers;
|
|
|
|
const settingsMatcher = {
|
|
version: matchers.anyString
|
|
};
|
|
|
|
describe('Settings Content API', function () {
|
|
let agent;
|
|
|
|
before(async function () {
|
|
agent = await agentProvider.getContentAPIAgent();
|
|
await fixtureManager.init('api_keys');
|
|
await agent.authenticate();
|
|
});
|
|
|
|
it('Can request settings', async function () {
|
|
await agent.get('settings/')
|
|
.expectStatus(200)
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag,
|
|
'content-version': anyContentVersion,
|
|
'content-length': anyContentLength
|
|
})
|
|
.matchBodySnapshot({
|
|
settings: settingsMatcher
|
|
});
|
|
});
|
|
});
|