b0c6217cb4
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
185 lines
6.9 KiB
JavaScript
185 lines
6.9 KiB
JavaScript
const request = require('supertest');
|
|
|
|
// Mock Prisma before importing app so the app uses the mock
|
|
jest.mock('../src/lib/prisma', () => require('./__mocks__/prisma'));
|
|
const prisma = require('../src/lib/prisma');
|
|
const app = require('../src/app');
|
|
|
|
const EXPERIMENT = {
|
|
id: 'aaaaaaaa-0000-0000-0000-000000000001',
|
|
title: 'Test Study',
|
|
created_at: new Date('2024-01-01').toISOString(),
|
|
_count: { animals: 0 },
|
|
};
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
describe('GET /api/experiments', () => {
|
|
it('returns list of experiments', async () => {
|
|
prisma.experiment.findMany.mockResolvedValue([EXPERIMENT]);
|
|
const res = await request(app).get('/api/experiments');
|
|
expect(res.status).toBe(200);
|
|
expect(res.body).toHaveLength(1);
|
|
expect(res.body[0].title).toBe('Test Study');
|
|
});
|
|
|
|
it('returns empty array when no experiments', async () => {
|
|
prisma.experiment.findMany.mockResolvedValue([]);
|
|
const res = await request(app).get('/api/experiments');
|
|
expect(res.status).toBe(200);
|
|
expect(res.body).toEqual([]);
|
|
});
|
|
});
|
|
|
|
describe('GET /api/experiments/:id', () => {
|
|
it('returns single experiment', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue({ ...EXPERIMENT, animals: [] });
|
|
const res = await request(app).get(`/api/experiments/${EXPERIMENT.id}`);
|
|
expect(res.status).toBe(200);
|
|
expect(res.body.id).toBe(EXPERIMENT.id);
|
|
});
|
|
|
|
it('returns 404 for unknown id', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(null);
|
|
const res = await request(app).get('/api/experiments/00000000-0000-0000-0000-000000000000');
|
|
expect(res.status).toBe(404);
|
|
expect(res.body.error).toMatch(/not found/i);
|
|
});
|
|
});
|
|
|
|
describe('POST /api/experiments', () => {
|
|
it('creates experiment and returns 201 with UUID', async () => {
|
|
prisma.experiment.create.mockResolvedValue(EXPERIMENT);
|
|
prisma.auditLog.create.mockResolvedValue({});
|
|
|
|
const res = await request(app)
|
|
.post('/api/experiments')
|
|
.send({ title: 'Test Study' });
|
|
|
|
expect(res.status).toBe(201);
|
|
expect(res.body.id).toBe(EXPERIMENT.id);
|
|
expect(res.body.title).toBe('Test Study');
|
|
// UUID format assertion
|
|
expect(res.body.id).toMatch(
|
|
/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i
|
|
);
|
|
expect(prisma.auditLog.create).toHaveBeenCalledWith(
|
|
expect.objectContaining({ data: expect.objectContaining({ action: 'CREATE' }) })
|
|
);
|
|
});
|
|
|
|
it('returns 422 when title is missing', async () => {
|
|
const res = await request(app).post('/api/experiments').send({});
|
|
expect(res.status).toBe(422);
|
|
expect(res.body.details).toEqual(
|
|
expect.arrayContaining([expect.objectContaining({ field: 'title' })])
|
|
);
|
|
});
|
|
|
|
it('returns 422 when title exceeds 255 chars', async () => {
|
|
const res = await request(app)
|
|
.post('/api/experiments')
|
|
.send({ title: 'x'.repeat(256) });
|
|
expect(res.status).toBe(422);
|
|
});
|
|
});
|
|
|
|
describe('PUT /api/experiments/:id', () => {
|
|
it('updates experiment and writes audit log', async () => {
|
|
const updated = { ...EXPERIMENT, title: 'Renamed Study' };
|
|
prisma.experiment.findUnique
|
|
.mockResolvedValueOnce(EXPERIMENT) // audit middleware fetches before-state
|
|
.mockResolvedValueOnce(updated); // audit middleware fetches after-state
|
|
prisma.experiment.update.mockResolvedValue(updated);
|
|
prisma.auditLog.create.mockResolvedValue({});
|
|
|
|
const res = await request(app)
|
|
.put(`/api/experiments/${EXPERIMENT.id}`)
|
|
.send({ title: 'Renamed Study' });
|
|
|
|
expect(res.status).toBe(200);
|
|
expect(res.body.title).toBe('Renamed Study');
|
|
expect(prisma.auditLog.create).toHaveBeenCalledWith(
|
|
expect.objectContaining({ data: expect.objectContaining({ action: 'UPDATE' }) })
|
|
);
|
|
});
|
|
|
|
it('returns 422 with empty title', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(EXPERIMENT);
|
|
const res = await request(app)
|
|
.put(`/api/experiments/${EXPERIMENT.id}`)
|
|
.send({ title: '' });
|
|
expect(res.status).toBe(422);
|
|
});
|
|
});
|
|
|
|
describe('DELETE /api/experiments/:id', () => {
|
|
it('deletes experiment and writes DELETE audit log', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(EXPERIMENT);
|
|
prisma.experiment.delete.mockResolvedValue(EXPERIMENT);
|
|
prisma.auditLog.create.mockResolvedValue({});
|
|
|
|
const res = await request(app).delete(`/api/experiments/${EXPERIMENT.id}`);
|
|
expect(res.status).toBe(204);
|
|
expect(prisma.auditLog.create).toHaveBeenCalledWith(
|
|
expect.objectContaining({ data: expect.objectContaining({ action: 'DELETE' }) })
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('GET /health', () => {
|
|
it('returns ok status', async () => {
|
|
const res = await request(app).get('/health');
|
|
expect(res.status).toBe(200);
|
|
expect(res.body.status).toBe('ok');
|
|
});
|
|
});
|
|
|
|
describe('PUT /api/experiments/:id/plot-config', () => {
|
|
const CONFIG = { xField: '__days__', tickStep: 2, hiddenSubjects: ['a1', 'a2'], sidebarOpen: true };
|
|
|
|
it('saves a valid config and returns it without writing an audit log', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(EXPERIMENT);
|
|
prisma.experiment.update.mockResolvedValue({ ...EXPERIMENT, plot_config: CONFIG });
|
|
const res = await request(app).put(`/api/experiments/${EXPERIMENT.id}/plot-config`).send(CONFIG);
|
|
expect(res.status).toBe(200);
|
|
expect(res.body).toEqual(CONFIG);
|
|
expect(prisma.experiment.update).toHaveBeenCalledWith({
|
|
where: { id: EXPERIMENT.id },
|
|
data: { plot_config: CONFIG },
|
|
});
|
|
expect(prisma.auditLog.create).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('returns 404 when the experiment does not exist', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(null);
|
|
const res = await request(app).put(`/api/experiments/${EXPERIMENT.id}/plot-config`).send(CONFIG);
|
|
expect(res.status).toBe(404);
|
|
expect(prisma.experiment.update).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('rejects a non-object body with 422', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(EXPERIMENT);
|
|
const res = await request(app).put(`/api/experiments/${EXPERIMENT.id}/plot-config`).send([1, 2, 3]);
|
|
expect(res.status).toBe(422);
|
|
expect(prisma.experiment.update).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('rejects an invalid hiddenSubjects with 422', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(EXPERIMENT);
|
|
const res = await request(app).put(`/api/experiments/${EXPERIMENT.id}/plot-config`).send({ hiddenSubjects: [1, 2] });
|
|
expect(res.status).toBe(422);
|
|
expect(prisma.experiment.update).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('rejects an oversized config with 422', async () => {
|
|
prisma.experiment.findUnique.mockResolvedValue(EXPERIMENT);
|
|
const big = { blob: 'x'.repeat(70000) };
|
|
const res = await request(app).put(`/api/experiments/${EXPERIMENT.id}/plot-config`).send(big);
|
|
expect(res.status).toBe(422);
|
|
expect(prisma.experiment.update).not.toHaveBeenCalled();
|
|
});
|
|
});
|