184 lines
5.9 KiB
TypeScript
184 lines
5.9 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
import request from 'supertest';
|
|
import { Readable } from 'node:stream';
|
|
import app from '../app.js';
|
|
import type { Cluster, ClusterResponse, Note } from '../types/domain.js';
|
|
|
|
vi.mock('../db/notes.dao.js', () => ({
|
|
getAllNotes: vi.fn(),
|
|
streamAllNotes: vi.fn(),
|
|
}));
|
|
|
|
vi.mock('../services/clustering.service.js', () => ({
|
|
clusterNotes: vi.fn(),
|
|
}));
|
|
|
|
import { getAllNotes, streamAllNotes } from '../db/notes.dao.js';
|
|
import { clusterNotes } from '../services/clustering.service.js';
|
|
|
|
const mockGetAllNotes = vi.mocked(getAllNotes);
|
|
const mockStreamAllNotes = vi.mocked(streamAllNotes);
|
|
const mockClusterNotes = vi.mocked(clusterNotes);
|
|
|
|
const MOCK_NOTES: Note[] = [
|
|
{ id: 'note_001', text: 'Login flow feels confusing', x: 193, y: 191, author: 'user_5', color: 'yellow' },
|
|
{ id: 'note_002', text: 'Login flow is broken on mobile', x: 214, y: 281, author: 'user_9', color: 'yellow' },
|
|
{ id: 'note_003', text: 'Export takes too long', x: 798, y: 211, author: 'user_2', color: 'green' },
|
|
];
|
|
|
|
const MOCK_CLUSTERS: Cluster[] = [
|
|
{ label: 'Login Issues', noteIds: ['note_001', 'note_002'] },
|
|
{ label: 'Export Problems', noteIds: ['note_003'] },
|
|
];
|
|
|
|
const MOCK_RESULT: ClusterResponse = { clusters: MOCK_CLUSTERS, score: 0.09 };
|
|
|
|
const rowStream = (rows: Note[]): Readable => Readable.from(rows, { objectMode: true });
|
|
|
|
describe('GET /v1/notes', () => {
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
it('should return 200 and an array of notes', async () => {
|
|
mockStreamAllNotes.mockResolvedValue(rowStream(MOCK_NOTES));
|
|
|
|
const res = await request(app).get('/v1/notes');
|
|
|
|
expect(res.status).toBe(200);
|
|
expect(res.body).toEqual(MOCK_NOTES);
|
|
expect(Array.isArray(res.body)).toBe(true);
|
|
});
|
|
|
|
it('should send JSON incrementally rather than buffering the row set', async () => {
|
|
mockStreamAllNotes.mockResolvedValue(rowStream(MOCK_NOTES));
|
|
|
|
const res = await request(app).get('/v1/notes');
|
|
|
|
expect(res.headers['content-type']).toMatch(/application\/json/);
|
|
expect(res.headers['content-length']).toBeUndefined();
|
|
});
|
|
|
|
it('should return an empty array when there are no notes', async () => {
|
|
mockStreamAllNotes.mockResolvedValue(rowStream([]));
|
|
|
|
const res = await request(app).get('/v1/notes');
|
|
|
|
expect(res.status).toBe(200);
|
|
expect(res.body).toEqual([]);
|
|
});
|
|
|
|
it('should return notes with expected properties', async () => {
|
|
mockStreamAllNotes.mockResolvedValue(rowStream(MOCK_NOTES));
|
|
|
|
const res = await request(app).get('/v1/notes');
|
|
const note = res.body[0];
|
|
|
|
expect(note).toHaveProperty('id');
|
|
expect(note).toHaveProperty('text');
|
|
expect(note).toHaveProperty('x');
|
|
expect(note).toHaveProperty('y');
|
|
expect(note).toHaveProperty('author');
|
|
expect(note).toHaveProperty('color');
|
|
});
|
|
|
|
it('should return 500 when the database query fails', async () => {
|
|
mockStreamAllNotes.mockRejectedValue(new Error('connection refused'));
|
|
|
|
const res = await request(app).get('/v1/notes');
|
|
|
|
expect(res.status).toBe(500);
|
|
expect(res.body).toHaveProperty('error');
|
|
expect(res.body.error).toBe('Failed to load notes');
|
|
});
|
|
|
|
it('should abort the response when the row stream fails mid-flight', async () => {
|
|
const failing = new Readable({
|
|
objectMode: true,
|
|
read() {
|
|
this.push(MOCK_NOTES[0]);
|
|
this.destroy(new Error('connection lost'));
|
|
},
|
|
});
|
|
mockStreamAllNotes.mockResolvedValue(failing);
|
|
|
|
await expect(request(app).get('/v1/notes')).rejects.toThrow();
|
|
});
|
|
});
|
|
|
|
describe('POST /v1/notes/cluster', () => {
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
it('should return 200 and clustered results', async () => {
|
|
mockGetAllNotes.mockResolvedValue(MOCK_NOTES);
|
|
mockClusterNotes.mockResolvedValue(MOCK_RESULT);
|
|
|
|
const res = await request(app).post('/v1/notes/cluster');
|
|
|
|
expect(res.status).toBe(200);
|
|
expect(res.body).toEqual(MOCK_RESULT);
|
|
});
|
|
|
|
it('should return clusters with the expected shape (label, noteIds)', async () => {
|
|
mockGetAllNotes.mockResolvedValue(MOCK_NOTES);
|
|
mockClusterNotes.mockResolvedValue(MOCK_RESULT);
|
|
|
|
const res = await request(app).post('/v1/notes/cluster');
|
|
const cluster = res.body.clusters[0];
|
|
|
|
expect(cluster).toHaveProperty('label');
|
|
expect(cluster).toHaveProperty('noteIds');
|
|
expect(typeof cluster.label).toBe('string');
|
|
expect(Array.isArray(cluster.noteIds)).toBe(true);
|
|
});
|
|
|
|
it('should pass the loaded notes to clusterNotes', async () => {
|
|
mockGetAllNotes.mockResolvedValue(MOCK_NOTES);
|
|
mockClusterNotes.mockResolvedValue(MOCK_RESULT);
|
|
|
|
await request(app).post('/v1/notes/cluster');
|
|
|
|
expect(mockClusterNotes).toHaveBeenCalledOnce();
|
|
expect(mockClusterNotes).toHaveBeenCalledWith(
|
|
MOCK_NOTES,
|
|
expect.objectContaining({ signal: expect.any(AbortSignal) })
|
|
);
|
|
});
|
|
|
|
it('should pass a signal that is not aborted while the request is open', async () => {
|
|
mockGetAllNotes.mockResolvedValue(MOCK_NOTES);
|
|
mockClusterNotes.mockImplementation(async (_notes, options = {}) => {
|
|
expect(options.signal?.aborted).toBe(false);
|
|
return MOCK_RESULT;
|
|
});
|
|
|
|
const res = await request(app).post('/v1/notes/cluster');
|
|
|
|
expect(res.status).toBe(200);
|
|
});
|
|
|
|
it('should return 500 when clusterNotes (API call) fails', async () => {
|
|
mockGetAllNotes.mockResolvedValue(MOCK_NOTES);
|
|
mockClusterNotes.mockRejectedValue(new Error('LLM API error'));
|
|
|
|
const res = await request(app).post('/v1/notes/cluster');
|
|
|
|
expect(res.status).toBe(500);
|
|
expect(res.body).toHaveProperty('error');
|
|
expect(res.body.error).toMatch(/^Clustering failed/);
|
|
});
|
|
|
|
it('should return 500 when the database query fails', async () => {
|
|
mockGetAllNotes.mockRejectedValue(new Error('connection refused'));
|
|
|
|
const res = await request(app).post('/v1/notes/cluster');
|
|
|
|
expect(res.status).toBe(500);
|
|
expect(res.body).toHaveProperty('error');
|
|
});
|
|
});
|