2026-05-14 18:38:50 +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';
|
|
|
|
|
|
|
|
|
|
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 {
|
|
|
|
|
mockFindByUser,
|
|
|
|
|
mockFindAllByUser,
|
|
|
|
|
mockDeactivateAllForUser,
|
|
|
|
|
mockCreate,
|
|
|
|
|
} = vi.hoisted(() => ({
|
|
|
|
|
mockFindByUser: vi.fn(),
|
|
|
|
|
mockFindAllByUser: vi.fn(),
|
|
|
|
|
mockDeactivateAllForUser: vi.fn(),
|
|
|
|
|
mockCreate: vi.fn(),
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/nutrition-targets/nutrition-target.repository.js', () => ({
|
2026-05-14 18:38:50 +09:00
|
|
|
NutritionTargetRepository: class {
|
|
|
|
|
findByUser = mockFindByUser;
|
|
|
|
|
findAllByUser = mockFindAllByUser;
|
|
|
|
|
deactivateAllForUser = mockDeactivateAllForUser;
|
|
|
|
|
create = mockCreate;
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2026-05-19 11:06:03 +09:00
|
|
|
vi.mock('../../../src/modules/users/users.repository.js', () => ({
|
2026-05-14 18:38:50 +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 nutritionTargetRoutes from '../../../src/modules/nutrition-targets/nutrition-target.routes.js';
|
2026-05-14 18:38:50 +09:00
|
|
|
|
|
|
|
|
function makeTarget(overrides = {}) {
|
|
|
|
|
return {
|
|
|
|
|
_id: 'target-1',
|
|
|
|
|
userId: 'kc-1',
|
|
|
|
|
householdId: 'hh1',
|
|
|
|
|
dailyCalories: 2000,
|
|
|
|
|
proteinG: 150,
|
|
|
|
|
carbsG: 200,
|
|
|
|
|
fatG: 67,
|
|
|
|
|
isActive: true,
|
|
|
|
|
createdAt: new Date().toISOString(),
|
|
|
|
|
updatedAt: new Date().toISOString(),
|
|
|
|
|
...overrides,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
describe('nutrition-target.routes', () => {
|
|
|
|
|
let app: any;
|
|
|
|
|
|
|
|
|
|
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(nutritionTargetRoutes);
|
|
|
|
|
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/nutrition-targets', () => {
|
|
|
|
|
it('returns the active target if found', async () => {
|
|
|
|
|
mockFindByUser.mockResolvedValue(makeTarget());
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/nutrition-targets',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.dailyCalories).toBe(2000);
|
|
|
|
|
expect(body.isActive).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('returns a message object if no target is set', async () => {
|
|
|
|
|
mockFindByUser.mockResolvedValue(null);
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/nutrition-targets',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
expect(res.json().message).toBe('No active targets defined');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('GET /api/v1/households/:householdId/nutrition-targets/history', () => {
|
2026-05-19 10:13:40 +09:00
|
|
|
it('returns historical targets with optional fields and object _id', async () => {
|
|
|
|
|
mockFindAllByUser.mockResolvedValue([
|
|
|
|
|
makeTarget({
|
|
|
|
|
_id: { toString: () => 'target-1' },
|
|
|
|
|
isActive: false,
|
|
|
|
|
fiberG: 30,
|
|
|
|
|
sugarG: 50,
|
|
|
|
|
sodiumMg: 2000,
|
|
|
|
|
createdAt: new Date(),
|
|
|
|
|
}),
|
|
|
|
|
makeTarget()
|
|
|
|
|
]);
|
2026-05-14 18:38:50 +09:00
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'GET',
|
|
|
|
|
url: '/api/v1/households/hh1/nutrition-targets/history',
|
|
|
|
|
headers: authHeaders,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body).toHaveLength(2);
|
2026-05-19 10:13:40 +09:00
|
|
|
expect(body[0].fiberG).toBe(30);
|
|
|
|
|
expect(body[0]._id).toBe('target-1');
|
2026-05-14 18:38:50 +09:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('POST /api/v1/households/:householdId/nutrition-targets', () => {
|
|
|
|
|
it('creates target and returns it', async () => {
|
|
|
|
|
mockCreate.mockImplementation((data) => Promise.resolve({ ...data, _id: 'new-id', createdAt: new Date(), updatedAt: new Date() }));
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'POST',
|
|
|
|
|
url: '/api/v1/households/hh1/nutrition-targets',
|
|
|
|
|
headers: { ...authHeaders, 'content-type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
dailyCalories: 1800,
|
|
|
|
|
proteinG: 135,
|
|
|
|
|
carbsG: 180,
|
|
|
|
|
fatG: 60,
|
|
|
|
|
}),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(201);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
expect(body.dailyCalories).toBe(1800);
|
|
|
|
|
expect(body.isActive).toBe(true); // auto activated
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('POST /api/v1/households/:householdId/nutrition-targets/presets', () => {
|
|
|
|
|
it('returns calculated splits', async () => {
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: 'POST',
|
|
|
|
|
url: '/api/v1/households/hh1/nutrition-targets/presets',
|
|
|
|
|
headers: { ...authHeaders, 'content-type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
calories: 2000,
|
|
|
|
|
strategy: 'loss',
|
|
|
|
|
}),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = res.json();
|
|
|
|
|
// Loss is 40% protein (200g), 30% carbs (150g), 30% fat (67g)
|
|
|
|
|
expect(body.dailyCalories).toBe(2000);
|
|
|
|
|
expect(body.proteinG).toBe(200);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|