114 lines
3.2 KiB
TypeScript
114 lines
3.2 KiB
TypeScript
import * as request from 'supertest';
|
|
import { faker } from '@faker-js/faker';
|
|
import { app, AuthorizationHeader, orgainzationId } from './init-app-test';
|
|
|
|
let userId;
|
|
|
|
describe('Users (e2e)', () => {
|
|
beforeAll(async () => {
|
|
const usersResponse = await request(app.getHttpServer())
|
|
.get('/users')
|
|
.set('organization-id', orgainzationId)
|
|
.set('Authorization', AuthorizationHeader);
|
|
|
|
if (usersResponse.body.length > 0) {
|
|
userId = usersResponse.body[0].id;
|
|
}
|
|
});
|
|
|
|
it('/users (GET)', () => {
|
|
return request(app.getHttpServer())
|
|
.get('/users')
|
|
.set('organization-id', orgainzationId)
|
|
.set('Authorization', AuthorizationHeader)
|
|
.expect(200);
|
|
});
|
|
|
|
it('/users/:id (GET)', async () => {
|
|
if (!userId) {
|
|
const usersResponse = await request(app.getHttpServer())
|
|
.get('/users')
|
|
.set('organization-id', orgainzationId)
|
|
.set('Authorization', AuthorizationHeader);
|
|
|
|
if (usersResponse.body.length > 0) {
|
|
userId = usersResponse.body[0].id;
|
|
}
|
|
}
|
|
|
|
if (userId) {
|
|
return request(app.getHttpServer())
|
|
.get(`/users/${userId}`)
|
|
.set('organization-id', orgainzationId)
|
|
.set('Authorization', AuthorizationHeader)
|
|
.expect(200);
|
|
}
|
|
});
|
|
|
|
it('/users/:id (POST)', async () => {
|
|
if (!userId) {
|
|
const usersResponse = await request(app.getHttpServer())
|
|
.get('/users')
|
|
.set('organization-id', orgainzationId)
|
|
.set('Authorization', AuthorizationHeader);
|
|
|
|
if (usersResponse.body.length > 0) {
|
|
userId = usersResponse.body[0].id;
|
|
}
|
|
}
|
|
if (userId) {
|
|
return request(app.getHttpServer())
|
|
.post(`/users/${userId}`)
|
|
.set('organization-id', orgainzationId)
|
|
.set('Authorization', AuthorizationHeader)
|
|
.send({
|
|
firstName: faker.person.firstName(),
|
|
lastName: faker.person.lastName(),
|
|
})
|
|
.expect(200);
|
|
}
|
|
});
|
|
|
|
// it('/users/:id/activate (PUT)', async () => {
|
|
// if (!userId) {
|
|
// const usersResponse = await request(app.getHttpServer())
|
|
// .get('/users')
|
|
// .set('organization-id', orgainzationId)
|
|
// .set('Authorization', AuthorizationHeader);
|
|
|
|
// if (usersResponse.body.length > 0) {
|
|
// userId = usersResponse.body[0].id;
|
|
// }
|
|
// }
|
|
|
|
// if (userId) {
|
|
// return request(app.getHttpServer())
|
|
// .put(`/users/${userId}/activate`)
|
|
// .set('organization-id', orgainzationId)
|
|
// .set('Authorization', AuthorizationHeader)
|
|
// .expect(200);
|
|
// }
|
|
// });
|
|
|
|
// it('/users/:id/inactivate (PUT)', async () => {
|
|
// if (!userId) {
|
|
// const usersResponse = await request(app.getHttpServer())
|
|
// .get('/users')
|
|
// .set('organization-id', orgainzationId)
|
|
// .set('Authorization', AuthorizationHeader);
|
|
|
|
// if (usersResponse.body.length > 0) {
|
|
// userId = usersResponse.body[0].id;
|
|
// }
|
|
// }
|
|
|
|
// if (userId) {
|
|
// return request(app.getHttpServer())
|
|
// .put(`/users/${userId}/inactivate`)
|
|
// .set('organization-id', orgainzationId)
|
|
// .set('Authorization', AuthorizationHeader)
|
|
// .expect(200);
|
|
// }
|
|
// });
|
|
});
|