Ghost/ghost/core/test/e2e-api/content/newsletters.test.js
Daniel Lockyer 9ba251238a Added Content-Version header to all API requests
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)
2023-01-18 08:38:07 +01:00

43 lines
1.4 KiB
JavaScript

const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
const newsletterSnapshot = {
id: matchers.anyObjectId,
uuid: matchers.anyUuid,
created_at: matchers.anyISODateTime,
updated_at: matchers.anyISODateTime
};
describe('Newsletters Content API', function () {
let agent;
before(async function () {
agent = await agentProvider.getContentAPIAgent();
await fixtureManager.init('api_keys', 'newsletters');
await agent.authenticate();
});
it('Can request only active newsletters', async function () {
await agent.get('/newsletters/')
.expectStatus(200)
.matchHeaderSnapshot({
'content-version': matchers.anyContentVersion,
etag: matchers.anyEtag
})
.matchBodySnapshot({
newsletters: Array(3).fill(newsletterSnapshot)
});
});
it('Cannot override filters to fetch archived newsletters', async function () {
await agent.get('/newsletters/?filter=status:archived')
.expectStatus(200)
.matchHeaderSnapshot({
'content-version': matchers.anyContentVersion,
etag: matchers.anyEtag
})
.matchBodySnapshot({
newsletters: Array(3).fill(newsletterSnapshot)
});
});
});