2024-09-20 12:02:52 +03:00
|
|
|
import request from 'supertest';
|
|
|
|
|
|
|
|
const client = request(`http://localhost:${APP_PORT}`);
|
|
|
|
|
|
|
|
describe('peopleResolver (integration)', () => {
|
|
|
|
it('should find many people', () => {
|
|
|
|
const queryData = {
|
|
|
|
query: `
|
|
|
|
query people {
|
|
|
|
people {
|
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
jobTitle
|
2024-09-24 17:31:30 +03:00
|
|
|
phones {
|
|
|
|
primaryPhoneNumber
|
|
|
|
primaryPhoneCountryCode
|
|
|
|
}
|
2024-09-20 12:02:52 +03:00
|
|
|
city
|
|
|
|
avatarUrl
|
|
|
|
position
|
|
|
|
id
|
|
|
|
createdAt
|
|
|
|
updatedAt
|
|
|
|
deletedAt
|
|
|
|
companyId
|
|
|
|
intro
|
2024-09-24 17:31:30 +03:00
|
|
|
whatsapp {
|
|
|
|
primaryPhoneNumber
|
|
|
|
}
|
2024-10-05 01:22:38 +03:00
|
|
|
workPreference
|
2024-09-20 12:02:52 +03:00
|
|
|
performanceRating
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`,
|
|
|
|
};
|
|
|
|
|
|
|
|
return client
|
|
|
|
.post('/graphql')
|
|
|
|
.set('Authorization', `Bearer ${ACCESS_TOKEN}`)
|
|
|
|
.send(queryData)
|
|
|
|
.expect(200)
|
|
|
|
.expect((res) => {
|
2024-09-24 17:31:30 +03:00
|
|
|
console.log(res.body);
|
2024-09-20 12:02:52 +03:00
|
|
|
expect(res.body.data).toBeDefined();
|
|
|
|
expect(res.body.errors).toBeUndefined();
|
|
|
|
})
|
|
|
|
.expect((res) => {
|
|
|
|
const data = res.body.data.people;
|
|
|
|
|
|
|
|
expect(data).toBeDefined();
|
|
|
|
expect(Array.isArray(data.edges)).toBe(true);
|
|
|
|
|
|
|
|
const edges = data.edges;
|
|
|
|
|
|
|
|
if (edges.length > 0) {
|
|
|
|
const people = edges[0].node;
|
|
|
|
|
|
|
|
expect(people).toHaveProperty('jobTitle');
|
2024-09-24 17:31:30 +03:00
|
|
|
expect(people).toHaveProperty('phones');
|
2024-09-20 12:02:52 +03:00
|
|
|
expect(people).toHaveProperty('city');
|
|
|
|
expect(people).toHaveProperty('avatarUrl');
|
|
|
|
expect(people).toHaveProperty('position');
|
|
|
|
expect(people).toHaveProperty('id');
|
|
|
|
expect(people).toHaveProperty('createdAt');
|
|
|
|
expect(people).toHaveProperty('updatedAt');
|
|
|
|
expect(people).toHaveProperty('deletedAt');
|
|
|
|
expect(people).toHaveProperty('companyId');
|
|
|
|
expect(people).toHaveProperty('intro');
|
|
|
|
expect(people).toHaveProperty('whatsapp');
|
2024-10-05 01:22:38 +03:00
|
|
|
expect(people).toHaveProperty('workPreference');
|
2024-09-20 12:02:52 +03:00
|
|
|
expect(people).toHaveProperty('performanceRating');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|