refactor: banking services to Nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-05 16:26:23 +02:00
parent b72f85b394
commit 1869ba216f
150 changed files with 9698 additions and 163 deletions

View File

@@ -2,42 +2,39 @@ import * as request from 'supertest';
import { faker } from '@faker-js/faker';
import { app } from './init-app-test';
const makeItemRequest = () => ({
name: faker.commerce.productName(),
type: 'service',
});
describe('Items (e2e)', () => {
it('/items (POST)', () => {
return request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send({
name: faker.commerce.productName(),
type: 'service',
})
.send(makeItemRequest())
.expect(201);
});
it('/items/:id (POST)', async () => {
const item = {
name: faker.commerce.productName(),
type: 'service',
};
return request(app.getHttpServer())
it('/items/:id (PUT)', async () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send({
name: faker.commerce.productName(),
type: 'service',
})
.expect(201);
.send(makeItemRequest());
const itemId = response.body.id;
return request(app.getHttpServer())
.put(`/items/${itemId}`)
.set('organization-id', '4064541lv40nhca')
.send(makeItemRequest());
});
it('/items/:id/inactivate (PATCH)', async () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send({
name: faker.commerce.productName(),
type: 'service',
});
const itemId = response.body.id;
.send(makeItemRequest());
const itemId = response.text;
return request(app.getHttpServer())
.patch(`/items/${itemId}/inactivate`)
@@ -49,15 +46,81 @@ describe('Items (e2e)', () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send({
name: faker.commerce.productName(),
type: 'service',
});
const itemId = response.body.id;
.send(makeItemRequest());
const itemId = response.text;
return request(app.getHttpServer())
.patch(`/items/${itemId}/activate`)
.set('organization-id', '4064541lv40nhca')
.expect(200);
});
it('/items/:id (DELETE)', async () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send(makeItemRequest());
const itemId = response.text;
return request(app.getHttpServer())
.delete(`/items/${itemId}`)
.set('organization-id', '4064541lv40nhca')
.expect(200);
});
it('/items/:id/invoices (GET)', async () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send(makeItemRequest());
const itemId = response.text;
return request(app.getHttpServer())
.get(`/items/${itemId}/invoices`)
.set('organization-id', '4064541lv40nhca')
.expect(200);
});
it('/items/:id/bills (GET)', async () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send(makeItemRequest());
const itemId = response.text;
return request(app.getHttpServer())
.get(`/items/${itemId}/bills`)
.set('organization-id', '4064541lv40nhca')
.expect(200);
});
it('/items/:id/estimates (GET)', async () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send(makeItemRequest());
const itemId = response.text;
return request(app.getHttpServer())
.get(`/items/${itemId}/estimates`)
.set('organization-id', '4064541lv40nhca')
.expect(200);
});
it('/items/:id/receipts (GET)', async () => {
const response = await request(app.getHttpServer())
.post('/items')
.set('organization-id', '4064541lv40nhca')
.send(makeItemRequest());
const itemId = response.text;
return request(app.getHttpServer())
.get(`/items/${itemId}/receipts`)
.set('organization-id', '4064541lv40nhca')
.expect(200);
});
});