mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
|
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
||
|
const {anyString, anyErrorId, stringMatching, anyISODateTime} = matchers;
|
||
|
|
||
|
describe('Sessions API', function () {
|
||
|
let agent;
|
||
|
|
||
|
before(async function () {
|
||
|
agent = await agentProvider.getAdminAPIAgent();
|
||
|
await fixtureManager.init();
|
||
|
});
|
||
|
|
||
|
it('can create session (log in)', async function () {
|
||
|
const owner = await fixtureManager.get('users', 0);
|
||
|
await agent
|
||
|
.post('session/')
|
||
|
.body({
|
||
|
grant_type: 'password',
|
||
|
username: owner.email,
|
||
|
password: owner.password
|
||
|
})
|
||
|
.expectStatus(201)
|
||
|
.matchBodySnapshot()
|
||
|
.matchHeaderSnapshot({
|
||
|
etag: anyString,
|
||
|
'set-cookie': [
|
||
|
stringMatching(/^ghost-admin-api-session=/)
|
||
|
]
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('can read session now the owner is logged in', async function () {
|
||
|
await agent
|
||
|
.get('session/')
|
||
|
.expectStatus(200)
|
||
|
.matchBodySnapshot({
|
||
|
// id is 1, but should be anyObjectID :(
|
||
|
last_seen: anyISODateTime,
|
||
|
created_at: anyISODateTime,
|
||
|
updated_at: anyISODateTime
|
||
|
})
|
||
|
.matchHeaderSnapshot({
|
||
|
etag: anyString
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('can delete session (log out)', async function () {
|
||
|
await agent
|
||
|
.delete('session/')
|
||
|
.expectStatus(204)
|
||
|
.matchBodySnapshot()
|
||
|
.matchHeaderSnapshot({
|
||
|
etag: anyString
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('errors when reading session again now owner is not logged in', async function () {
|
||
|
await agent
|
||
|
.get('session/')
|
||
|
.expectStatus(403)
|
||
|
.matchBodySnapshot({
|
||
|
errors: [{
|
||
|
id: anyErrorId
|
||
|
}]
|
||
|
})
|
||
|
.matchHeaderSnapshot({
|
||
|
etag: anyString
|
||
|
});
|
||
|
});
|
||
|
});
|