mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
3d989eba23
refs https://github.com/TryGhost/Toolbox/issues/354 - this commit turns the Ghost repo into a monorepo so we can bring our internal packages back in, which makes life easier when working on Ghost
41 lines
1.2 KiB
JavaScript
41 lines
1.2 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({
|
|
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({
|
|
etag: matchers.anyEtag
|
|
})
|
|
.matchBodySnapshot({
|
|
newsletters: Array(3).fill(newsletterSnapshot)
|
|
});
|
|
});
|
|
});
|