mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-02 10:04:09 +03:00
72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
|
import request from 'supertest';
|
||
|
|
||
|
const client = request(`http://localhost:${APP_PORT}`);
|
||
|
|
||
|
describe('attachmentsResolver (integration)', () => {
|
||
|
it('should find many attachments', () => {
|
||
|
const queryData = {
|
||
|
query: `
|
||
|
query attachments {
|
||
|
attachments {
|
||
|
edges {
|
||
|
node {
|
||
|
name
|
||
|
fullPath
|
||
|
type
|
||
|
id
|
||
|
createdAt
|
||
|
updatedAt
|
||
|
deletedAt
|
||
|
authorId
|
||
|
activityId
|
||
|
taskId
|
||
|
noteId
|
||
|
personId
|
||
|
companyId
|
||
|
opportunityId
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
`,
|
||
|
};
|
||
|
|
||
|
return client
|
||
|
.post('/graphql')
|
||
|
.set('Authorization', `Bearer ${ACCESS_TOKEN}`)
|
||
|
.send(queryData)
|
||
|
.expect(200)
|
||
|
.expect((res) => {
|
||
|
expect(res.body.data).toBeDefined();
|
||
|
expect(res.body.errors).toBeUndefined();
|
||
|
})
|
||
|
.expect((res) => {
|
||
|
const data = res.body.data.attachments;
|
||
|
|
||
|
expect(data).toBeDefined();
|
||
|
expect(Array.isArray(data.edges)).toBe(true);
|
||
|
|
||
|
const edges = data.edges;
|
||
|
|
||
|
if (edges.length > 0) {
|
||
|
const attachments = edges[0].node;
|
||
|
|
||
|
expect(attachments).toHaveProperty('name');
|
||
|
expect(attachments).toHaveProperty('fullPath');
|
||
|
expect(attachments).toHaveProperty('type');
|
||
|
expect(attachments).toHaveProperty('id');
|
||
|
expect(attachments).toHaveProperty('createdAt');
|
||
|
expect(attachments).toHaveProperty('updatedAt');
|
||
|
expect(attachments).toHaveProperty('deletedAt');
|
||
|
expect(attachments).toHaveProperty('authorId');
|
||
|
expect(attachments).toHaveProperty('activityId');
|
||
|
expect(attachments).toHaveProperty('taskId');
|
||
|
expect(attachments).toHaveProperty('noteId');
|
||
|
expect(attachments).toHaveProperty('personId');
|
||
|
expect(attachments).toHaveProperty('companyId');
|
||
|
expect(attachments).toHaveProperty('opportunityId');
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
});
|