mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 19:02:29 +03:00
c222d1f64e
- Updated express-test to latest version with new expectEmptyBody assertion - Updated all the tests that used matchBodySnapshot for an empty body to use expectEmptyBody instead - Updated all the snapshots that were affected manually, and verified running the tests works as expected
140 lines
3.7 KiB
JavaScript
140 lines
3.7 KiB
JavaScript
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
|
const {anyEtag, anyLocationFor, anyObjectId, anyISODateTime, anyErrorId} = matchers;
|
|
|
|
const matchSnippet = {
|
|
id: anyObjectId,
|
|
created_at: anyISODateTime,
|
|
updated_at: anyISODateTime
|
|
};
|
|
|
|
describe('Snippets API', function () {
|
|
let agent;
|
|
|
|
before(async function () {
|
|
agent = await agentProvider.getAdminAPIAgent();
|
|
await fixtureManager.init('snippets');
|
|
await agent.loginAsOwner();
|
|
});
|
|
|
|
it('Can add', async function () {
|
|
const snippet = {
|
|
name: 'test',
|
|
mobiledoc: JSON.stringify({})
|
|
};
|
|
|
|
await agent
|
|
.post('snippets/')
|
|
.body({snippets: [snippet]})
|
|
.expectStatus(201)
|
|
.matchBodySnapshot({
|
|
snippets: [matchSnippet]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag,
|
|
location: anyLocationFor('snippets')
|
|
});
|
|
});
|
|
|
|
it('Can browse', async function () {
|
|
await agent
|
|
.get('snippets')
|
|
.expectStatus(200)
|
|
.matchBodySnapshot({
|
|
snippets: new Array(2).fill(matchSnippet)
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
});
|
|
|
|
it('Can read', async function () {
|
|
await agent
|
|
.get(`snippets/${fixtureManager.get('snippets', 0).id}/`)
|
|
.expectStatus(200)
|
|
.matchBodySnapshot({
|
|
snippets: [matchSnippet]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
});
|
|
|
|
it('Can edit', async function () {
|
|
const snippetToChange = {
|
|
name: 'change me',
|
|
mobiledoc: '{}'
|
|
};
|
|
|
|
const snippetChanged = {
|
|
name: 'changed',
|
|
mobiledoc: '{}'
|
|
};
|
|
|
|
const {body} = await agent
|
|
.post(`snippets/`)
|
|
.body({snippets: [snippetToChange]})
|
|
.expectStatus(201)
|
|
.matchBodySnapshot({
|
|
snippets: [matchSnippet]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag,
|
|
location: anyLocationFor('snippets')
|
|
});
|
|
|
|
const newsnippet = body.snippets[0];
|
|
|
|
await agent
|
|
.put(`snippets/${newsnippet.id}/`)
|
|
.body({snippets: [snippetChanged]})
|
|
.expectStatus(200)
|
|
.matchBodySnapshot({
|
|
snippets: [matchSnippet]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
});
|
|
|
|
it('Can destroy', async function () {
|
|
const snippet = {
|
|
name: 'destroy test',
|
|
mobiledoc: '{}'
|
|
};
|
|
|
|
const {body} = await agent
|
|
.post(`snippets/`)
|
|
.body({snippets: [snippet]})
|
|
.expectStatus(201)
|
|
.matchBodySnapshot({
|
|
snippets: [matchSnippet]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag,
|
|
location: anyLocationFor('snippets')
|
|
});
|
|
|
|
const newSnippet = body.snippets[0];
|
|
|
|
await agent
|
|
.delete(`snippets/${newSnippet.id}`)
|
|
.expectStatus(204)
|
|
.expectEmptyBody()
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
|
|
await agent
|
|
.get(`snippets/${newSnippet.id}/`)
|
|
.expectStatus(404)
|
|
.matchBodySnapshot({
|
|
errors: [{
|
|
id: anyErrorId
|
|
}]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
});
|
|
});
|