Fixes #649 – cant delete a draft document that has had its collection previously removed
This commit is contained in:
parent
a4b5d6cabe
commit
d557ef96ac
@ -8,6 +8,15 @@ Object {
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`#documents.delete should require authentication 1`] = `
|
||||||
|
Object {
|
||||||
|
"error": "authentication_required",
|
||||||
|
"message": "Authentication required",
|
||||||
|
"ok": false,
|
||||||
|
"status": 401,
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`#documents.list should require authentication 1`] = `
|
exports[`#documents.list should require authentication 1`] = `
|
||||||
Object {
|
Object {
|
||||||
"error": "authentication_required",
|
"error": "authentication_required",
|
||||||
|
@ -412,7 +412,7 @@ router.post('documents.delete', auth(), async ctx => {
|
|||||||
authorize(ctx.state.user, 'delete', document);
|
authorize(ctx.state.user, 'delete', document);
|
||||||
|
|
||||||
const collection = document.collection;
|
const collection = document.collection;
|
||||||
if (collection.type === 'atlas') {
|
if (collection && collection.type === 'atlas') {
|
||||||
// Delete document and all of its children
|
// Delete document and all of its children
|
||||||
await collection.removeDocument(document);
|
await collection.removeDocument(document);
|
||||||
}
|
}
|
||||||
|
@ -602,3 +602,41 @@ describe('#documents.update', async () => {
|
|||||||
expect(res.status).toEqual(403);
|
expect(res.status).toEqual(403);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('#documents.delete', async () => {
|
||||||
|
it('should allow deleting document', async () => {
|
||||||
|
const { user, document } = await seed();
|
||||||
|
const res = await server.post('/api/documents.delete', {
|
||||||
|
body: { token: user.getJwtToken(), id: document.id },
|
||||||
|
});
|
||||||
|
const body = await res.json();
|
||||||
|
|
||||||
|
expect(res.status).toEqual(200);
|
||||||
|
expect(body.success).toEqual(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should allow deleting document without collection', async () => {
|
||||||
|
const { user, document, collection } = await seed();
|
||||||
|
|
||||||
|
// delete collection without hooks to trigger document deletion
|
||||||
|
await collection.destroy({ hooks: false });
|
||||||
|
const res = await server.post('/api/documents.delete', {
|
||||||
|
body: { token: user.getJwtToken(), id: document.id },
|
||||||
|
});
|
||||||
|
const body = await res.json();
|
||||||
|
|
||||||
|
expect(res.status).toEqual(200);
|
||||||
|
expect(body.success).toEqual(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should require authentication', async () => {
|
||||||
|
const { document } = await seed();
|
||||||
|
const res = await server.post('/api/documents.delete', {
|
||||||
|
body: { id: document.id },
|
||||||
|
});
|
||||||
|
const body = await res.json();
|
||||||
|
|
||||||
|
expect(res.status).toEqual(401);
|
||||||
|
expect(body).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
Reference in New Issue
Block a user