2026-03-28 08:19:48 +09:00
|
|
|
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
|
|
|
|
|
import Fastify from 'fastify';
|
|
|
|
|
import { fastifyAwilixPlugin } from '@fastify/awilix';
|
|
|
|
|
import { serializerCompiler, validatorCompiler } from 'fastify-type-provider-zod';
|
|
|
|
|
import { DosageUnit, MedicineForm, StrengthUnit, CabinetItemStatus } from '@meshitrack/shared';
|
|
|
|
|
|
|
|
|
|
vi.mock('jose', () => ({
|
|
|
|
|
createRemoteJWKSet: vi.fn(() => 'mock-jwks'),
|
|
|
|
|
jwtVerify: vi.fn().mockResolvedValue({
|
|
|
|
|
payload: {
|
|
|
|
|
sub: 'kc-1',
|
|
|
|
|
email: 'test@example.com',
|
|
|
|
|
preferred_username: 'testuser',
|
|
|
|
|
realm_access: { roles: ['member'] },
|
|
|
|
|
householdIds: ['hh1'],
|
|
|
|
|
},
|
|
|
|
|
protectedHeader: { alg: 'RS256' },
|
|
|
|
|
key: {},
|
|
|
|
|
}),
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
mockFindByHousehold,
|
|
|
|
|
mockFindById,
|
|
|
|
|
mockGetAggregateSummary,
|
|
|
|
|
mockCreate,
|
|
|
|
|
mockUpdate,
|
|
|
|
|
mockAdjustQuantity,
|
|
|
|
|
mockFindExpiringSoon,
|
|
|
|
|
mockSoftDelete,
|
|
|
|
|
mockCountByMedicineId,
|
2026-03-28 18:25:49 +09:00
|
|
|
mockDiscard,
|
|
|
|
|
mockFindActiveByMedicineForFEFO,
|
2026-03-28 08:19:48 +09:00
|
|
|
} = vi.hoisted(() => ({
|
|
|
|
|
mockFindByHousehold: vi.fn(),
|
|
|
|
|
mockFindById: vi.fn(),
|
|
|
|
|
mockGetAggregateSummary: vi.fn(),
|
|
|
|
|
mockCreate: vi.fn(),
|
|
|
|
|
mockUpdate: vi.fn(),
|
|
|
|
|
mockAdjustQuantity: vi.fn(),
|
|
|
|
|
mockFindExpiringSoon: vi.fn(),
|
|
|
|
|
mockSoftDelete: vi.fn(),
|
|
|
|
|
mockCountByMedicineId: vi.fn(),
|
2026-03-28 18:25:49 +09:00
|
|
|
mockDiscard: vi.fn(),
|
|
|
|
|
mockFindActiveByMedicineForFEFO: vi.fn(),
|
2026-03-28 08:19:48 +09:00
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/cabinet/cabinet.repository.js', () => ({
|
2026-03-28 08:19:48 +09:00
|
|
|
CabinetRepository: class {
|
|
|
|
|
findByHousehold = mockFindByHousehold;
|
|
|
|
|
findById = mockFindById;
|
|
|
|
|
getAggregateSummary = mockGetAggregateSummary;
|
|
|
|
|
create = mockCreate;
|
|
|
|
|
update = mockUpdate;
|
|
|
|
|
adjustQuantity = mockAdjustQuantity;
|
|
|
|
|
findExpiringSoon = mockFindExpiringSoon;
|
|
|
|
|
softDelete = mockSoftDelete;
|
|
|
|
|
countByMedicineId = mockCountByMedicineId;
|
2026-03-28 18:25:49 +09:00
|
|
|
discard = mockDiscard;
|
|
|
|
|
findActiveByMedicineForFEFO = mockFindActiveByMedicineForFEFO;
|
2026-03-28 08:19:48 +09:00
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const { mockMedicineFindById } = vi.hoisted(() => ({
|
|
|
|
|
mockMedicineFindById: vi.fn(),
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/medicines/medicines.repository.js', () => ({
|
2026-03-28 08:19:48 +09:00
|
|
|
MedicinesRepository: class {
|
|
|
|
|
findById = mockMedicineFindById;
|
|
|
|
|
findByHousehold = vi.fn();
|
|
|
|
|
findDuplicate = vi.fn();
|
|
|
|
|
create = vi.fn();
|
|
|
|
|
update = vi.fn();
|
|
|
|
|
softDelete = vi.fn();
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const { mockProductFindById } = vi.hoisted(() => ({
|
|
|
|
|
mockProductFindById: vi.fn(),
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/medicine-products/medicine-products.repository.js', () => ({
|
2026-03-28 08:19:48 +09:00
|
|
|
MedicineProductsRepository: class {
|
|
|
|
|
findById = mockProductFindById;
|
|
|
|
|
findByMedicine = vi.fn();
|
|
|
|
|
create = vi.fn();
|
|
|
|
|
update = vi.fn();
|
|
|
|
|
softDelete = vi.fn();
|
|
|
|
|
countByMedicineId = vi.fn();
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/medicine-products/medicine-products.service.js', () => ({
|
2026-03-28 08:19:48 +09:00
|
|
|
MedicineProductsService: class {
|
|
|
|
|
listByMedicine = vi.fn();
|
|
|
|
|
getById = vi.fn();
|
|
|
|
|
create = vi.fn();
|
|
|
|
|
update = vi.fn();
|
|
|
|
|
delete = vi.fn();
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/medicines/medicines.service.js', () => ({
|
2026-03-28 08:19:48 +09:00
|
|
|
MedicinesService: class {
|
|
|
|
|
list = vi.fn();
|
|
|
|
|
getById = vi.fn();
|
|
|
|
|
create = vi.fn();
|
|
|
|
|
update = vi.fn();
|
|
|
|
|
delete = vi.fn();
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/cabinet-events/cabinet-events.repository.js', () => ({
|
2026-03-28 18:25:49 +09:00
|
|
|
CabinetEventsRepository: class {
|
|
|
|
|
create = vi.fn();
|
|
|
|
|
createMany = vi.fn();
|
|
|
|
|
findByHousehold = vi.fn();
|
|
|
|
|
findByCabinetItem = vi.fn();
|
|
|
|
|
getSpendingSummary = vi.fn();
|
|
|
|
|
getAvgUnitPriceByMedicine = vi.fn();
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/cabinet-events/cabinet-events.service.js', () => ({
|
2026-03-28 18:25:49 +09:00
|
|
|
CabinetEventsService: class {
|
|
|
|
|
logEvent = vi.fn();
|
|
|
|
|
logEvents = vi.fn();
|
|
|
|
|
listEvents = vi.fn();
|
|
|
|
|
getEventsByItem = vi.fn();
|
|
|
|
|
getSpendingSummary = vi.fn();
|
|
|
|
|
getAvgUnitPrices = vi.fn();
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/users/users.repository.js', () => ({
|
2026-03-28 08:19:48 +09:00
|
|
|
UsersRepository: class {
|
|
|
|
|
findByKeycloakId = vi.fn().mockResolvedValue({ householdIds: ['hh1'] });
|
|
|
|
|
upsertFromToken = vi.fn().mockResolvedValue({ householdIds: ['hh1'] });
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
import authPlugin from '../../../src/plugins/auth.plugin.js';
|
|
|
|
|
import householdPlugin from '../../../src/plugins/household.plugin.js';
|
|
|
|
|
import usersRoutes from '../../../src/modules/users/users.routes.js';
|
|
|
|
|
import medicinesRoutes from '../../../src/modules/medicines/medicines.routes.js';
|
|
|
|
|
import medicineProductsRoutes from '../../../src/modules/medicine-products/medicine-products.routes.js';
|
|
|
|
|
import cabinetEventsRoutes from '../../../src/modules/cabinet-events/cabinet-events.routes.js';
|
|
|
|
|
import cabinetRoutes from '../../../src/modules/cabinet/cabinet.routes.js';
|
2026-03-28 08:19:48 +09:00
|
|
|
|
|
|
|
|
function makeFakeCabinetItem(overrides = {}) {
|
|
|
|
|
return {
|
|
|
|
|
_id: 'ci-1',
|
|
|
|
|
householdId: 'hh1',
|
|
|
|
|
medicineId: 'med-1',
|
|
|
|
|
medicineName: 'Metformin',
|
|
|
|
|
medicineStrength: 500,
|
|
|
|
|
medicineStrengthUnit: StrengthUnit.MG,
|
|
|
|
|
medicineForm: MedicineForm.TABLET,
|
|
|
|
|
quantity: 30,
|
|
|
|
|
unit: DosageUnit.TABLET,
|
|
|
|
|
status: CabinetItemStatus.ACTIVE,
|
|
|
|
|
createdBy: 'kc-1',
|
|
|
|
|
createdAt: new Date().toISOString(),
|
|
|
|
|
updatedAt: new Date().toISOString(),
|
|
|
|
|
...overrides,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
describe('cabinet.routes', () => {
|
|
|
|
|
let app: Awaited<ReturnType<typeof buildTestApp>>;
|
|
|
|
|
|
|
|
|
|
async function buildTestApp() {
|
|
|
|
|
const instance = Fastify({ logger: false });
|
|
|
|
|
instance.setValidatorCompiler(validatorCompiler);
|
|
|
|
|
instance.setSerializerCompiler(serializerCompiler);
|
|
|
|
|
await instance.register(fastifyAwilixPlugin, {
|
|
|
|
|
disposeOnClose: true,
|
|
|
|
|
disposeOnResponse: true,
|
|
|
|
|
strictBooleanEnforced: true,
|
|
|
|
|
});
|
|
|
|
|
await instance.register(authPlugin);
|
|
|
|
|
await instance.register(householdPlugin);
|
|
|
|
|
await instance.register(usersRoutes);
|
|
|
|
|
await instance.register(medicinesRoutes);
|
|
|
|
|
await instance.register(medicineProductsRoutes);
|
2026-03-28 18:25:49 +09:00
|
|
|
await instance.register(cabinetEventsRoutes);
|
2026-03-28 08:19:48 +09:00
|
|
|
await instance.register(cabinetRoutes);
|
|
|
|
|
await instance.ready();
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const authHeaders = { authorization: 'Bearer valid-token' };
|
|
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
vi.clearAllMocks();
|
|
|
|
|
app = await buildTestApp();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(async () => {
|
|
|
|
|
if (app) await app.close();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('GET /api/v1/households/:householdId/cabinet', () => {
|
|
|
|
|
it('returns paginated list', async () => {
|
|
|
|
|
const item = makeFakeCabinetItem();
|
|
|
|
|
mockFindByHousehold.mockResolvedValue({
|
|
|
|
|
data: [item],
|
|
|
|
|
pagination: { cursor: null, hasMore: false },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.data).toHaveLength(1);
|
|
|
|
|
expect(body.data[0].medicineName).toBe('Metformin');
|
|
|
|
|
expect(body.pagination.hasMore).toBe(false);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('handles ObjectId and Date objects in response', async () => {
|
|
|
|
|
const item = makeFakeCabinetItem({
|
|
|
|
|
_id: { toString: () => 'ci-obj' },
|
|
|
|
|
createdAt: { toISOString: () => '2024-01-01T00:00:00.000Z' },
|
|
|
|
|
updatedAt: { toISOString: () => '2024-01-02T00:00:00.000Z' },
|
|
|
|
|
expirationDate: new Date('2026-06-01T00:00:00.000Z'),
|
|
|
|
|
notes: 'Main supply',
|
|
|
|
|
medicineProductId: 'prod-1',
|
|
|
|
|
medicineProductBrand: 'Glucophage',
|
|
|
|
|
});
|
|
|
|
|
mockFindByHousehold.mockResolvedValue({
|
|
|
|
|
data: [item],
|
|
|
|
|
pagination: { cursor: null, hasMore: false },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.data[0]._id).toBe('ci-obj');
|
|
|
|
|
expect(body.data[0].expirationDate).toBe('2026-06-01T00:00:00.000Z');
|
|
|
|
|
expect(body.data[0].medicineProductBrand).toBe('Glucophage');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('handles string dates in response', async () => {
|
|
|
|
|
const item = makeFakeCabinetItem({
|
|
|
|
|
expirationDate: '2026-12-31T00:00:00.000Z',
|
|
|
|
|
createdAt: new Date('2024-01-01T00:00:00.000Z'),
|
|
|
|
|
updatedAt: new Date('2024-01-02T00:00:00.000Z'),
|
|
|
|
|
});
|
|
|
|
|
mockFindByHousehold.mockResolvedValue({
|
|
|
|
|
data: [item],
|
|
|
|
|
pagination: { cursor: null, hasMore: false },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.data[0].expirationDate).toBe('2026-12-31T00:00:00.000Z');
|
|
|
|
|
expect(body.data[0].createdAt).toBe('2024-01-01T00:00:00.000Z');
|
|
|
|
|
});
|
2026-03-28 18:25:49 +09:00
|
|
|
|
|
|
|
|
it('includes optional purchase and store fields when present', async () => {
|
|
|
|
|
const item = makeFakeCabinetItem({
|
|
|
|
|
concentration: 5.0,
|
|
|
|
|
concentrationUnit: 'mg/mL',
|
|
|
|
|
purchaseDate: new Date('2024-03-01T00:00:00.000Z'),
|
|
|
|
|
unitPrice: 1.5,
|
|
|
|
|
totalPrice: 45.0,
|
|
|
|
|
currency: 'USD',
|
|
|
|
|
storeId: 'store-1',
|
|
|
|
|
storeName: 'Pharmacy Plus',
|
|
|
|
|
});
|
|
|
|
|
mockFindByHousehold.mockResolvedValue({
|
|
|
|
|
data: [item],
|
|
|
|
|
pagination: { cursor: null, hasMore: false },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.data[0].concentration).toBe(5.0);
|
|
|
|
|
expect(body.data[0].concentrationUnit).toBe('mg/mL');
|
|
|
|
|
expect(body.data[0].purchaseDate).toBe('2024-03-01T00:00:00.000Z');
|
|
|
|
|
expect(body.data[0].unitPrice).toBe(1.5);
|
|
|
|
|
expect(body.data[0].totalPrice).toBe(45.0);
|
|
|
|
|
expect(body.data[0].currency).toBe('USD');
|
|
|
|
|
expect(body.data[0].storeId).toBe('store-1');
|
|
|
|
|
expect(body.data[0].storeName).toBe('Pharmacy Plus');
|
|
|
|
|
});
|
2026-03-28 08:19:48 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('GET /api/v1/households/:householdId/cabinet/summary', () => {
|
|
|
|
|
it('returns aggregate summary', async () => {
|
|
|
|
|
mockGetAggregateSummary.mockResolvedValue([
|
|
|
|
|
{
|
|
|
|
|
_id: 'med-1',
|
|
|
|
|
medicineName: 'Metformin',
|
|
|
|
|
medicineStrength: 500,
|
|
|
|
|
medicineStrengthUnit: 'mg',
|
|
|
|
|
medicineForm: 'tablet',
|
|
|
|
|
totalQuantity: 60,
|
|
|
|
|
unit: 'tablet',
|
|
|
|
|
earliestExpiry: new Date('2026-06-01T00:00:00.000Z'),
|
|
|
|
|
itemCount: 2,
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/summary',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.data).toHaveLength(1);
|
|
|
|
|
expect(body.data[0].totalQuantity).toBe(60);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('GET /api/v1/households/:householdId/cabinet/expiring-soon', () => {
|
|
|
|
|
it('returns items expiring within N days', async () => {
|
|
|
|
|
mockFindExpiringSoon.mockResolvedValue([makeFakeCabinetItem()]);
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/expiring-soon?days=30',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.data).toHaveLength(1);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('GET /api/v1/households/:householdId/cabinet/:id', () => {
|
|
|
|
|
it('returns a cabinet item', async () => {
|
|
|
|
|
mockFindById.mockResolvedValue(makeFakeCabinetItem());
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/ci-1',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
expect(res.json().quantity).toBe(30);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('POST /api/v1/households/:householdId/cabinet', () => {
|
|
|
|
|
it('creates a cabinet item', async () => {
|
|
|
|
|
mockMedicineFindById.mockResolvedValue({
|
|
|
|
|
_id: 'med-1',
|
|
|
|
|
name: 'Metformin',
|
|
|
|
|
strength: 500,
|
|
|
|
|
strengthUnit: 'mg',
|
|
|
|
|
form: 'tablet',
|
|
|
|
|
});
|
|
|
|
|
mockCreate.mockResolvedValue(makeFakeCabinetItem());
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'POST',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
payload: {
|
|
|
|
|
medicineId: 'med-1',
|
|
|
|
|
quantity: 30,
|
|
|
|
|
unit: DosageUnit.TABLET,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(201);
|
|
|
|
|
expect(res.json().medicineName).toBe('Metformin');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('PATCH /api/v1/households/:householdId/cabinet/:id', () => {
|
|
|
|
|
it('updates a cabinet item', async () => {
|
|
|
|
|
mockFindById.mockResolvedValue(makeFakeCabinetItem());
|
|
|
|
|
mockUpdate.mockResolvedValue(makeFakeCabinetItem({ quantity: 25 }));
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'PATCH',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/ci-1',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
payload: { quantity: 25 },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
expect(res.json().quantity).toBe(25);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('POST /api/v1/households/:householdId/cabinet/:id/adjust', () => {
|
|
|
|
|
it('adjusts quantity', async () => {
|
|
|
|
|
mockFindById.mockResolvedValue(makeFakeCabinetItem({ quantity: 30 }));
|
|
|
|
|
mockAdjustQuantity.mockResolvedValue(makeFakeCabinetItem({ quantity: 27 }));
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'POST',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/ci-1/adjust',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
payload: { delta: -3 },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
expect(res.json().quantity).toBe(27);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('DELETE /api/v1/households/:householdId/cabinet/:id', () => {
|
|
|
|
|
it('soft deletes a cabinet item', async () => {
|
|
|
|
|
mockFindById.mockResolvedValue(makeFakeCabinetItem());
|
|
|
|
|
mockSoftDelete.mockResolvedValue(makeFakeCabinetItem({ isDeleted: true }));
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'DELETE',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/ci-1',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(204);
|
|
|
|
|
});
|
|
|
|
|
});
|
2026-03-28 18:25:49 +09:00
|
|
|
|
|
|
|
|
describe('POST /api/v1/households/:householdId/cabinet/:id/discard', () => {
|
|
|
|
|
it('discards a cabinet item', async () => {
|
|
|
|
|
mockFindById.mockResolvedValue(makeFakeCabinetItem({ quantity: 20 }));
|
|
|
|
|
mockDiscard.mockResolvedValue(makeFakeCabinetItem({ quantity: 0, isDeleted: true }));
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'POST',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/ci-1/discard',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
payload: { reason: 'expired' },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
expect(res.json().quantity).toBe(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('returns 400 for missing reason', async () => {
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'POST',
|
|
|
|
|
url: '/api/v1/households/hh1/cabinet/ci-1/discard',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
payload: {},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(400);
|
|
|
|
|
});
|
|
|
|
|
});
|
2026-03-28 08:19:48 +09:00
|
|
|
});
|