d0c1841f0f
- Migration command
- Check IS_FILES_FIELD_MIGRATED:false
- Check or create avatarFile field
- Fetch all people with avatarUrl
- Move (Copy/move) file in storage
- Create core.file record
- Update person record
- bonus : attachment migration : fullPath > file (same logic)
- BE logic
- Add avatarFile field on person
- FE logic
- Adapt logic to upload on/display avatarFile data
The whole imageIdentifier logic will be done later
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
import request from 'supertest';
|
|
|
|
const client = request(`http://localhost:${APP_PORT}`);
|
|
|
|
describe('peopleResolver (e2e)', () => {
|
|
it('should find many people', () => {
|
|
const queryData = {
|
|
query: `
|
|
query people {
|
|
people {
|
|
edges {
|
|
node {
|
|
jobTitle
|
|
city
|
|
avatarUrl
|
|
avatarFile {
|
|
fileId
|
|
label
|
|
extension
|
|
url
|
|
}
|
|
position
|
|
searchVector
|
|
id
|
|
createdAt
|
|
updatedAt
|
|
deletedAt
|
|
companyId
|
|
intro
|
|
workPreference
|
|
performanceRating
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
|
|
return client
|
|
.post('/graphql')
|
|
.set('Authorization', `Bearer ${APPLE_JANE_ADMIN_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.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');
|
|
expect(people).toHaveProperty('city');
|
|
expect(people).toHaveProperty('avatarUrl');
|
|
expect(people).toHaveProperty('avatarFile');
|
|
expect(people).toHaveProperty('position');
|
|
expect(people).toHaveProperty('searchVector');
|
|
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('workPreference');
|
|
expect(people).toHaveProperty('performanceRating');
|
|
}
|
|
});
|
|
});
|
|
});
|