mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-22 08:38:08 +02:00
199 lines
5.4 KiB
TypeScript
199 lines
5.4 KiB
TypeScript
|
|
import { describe, expect, it, vi } from 'vitest';
|
||
|
|
import type { MemoryAgentInput, MemoryAgentResult, MemoryAgentService } from './index.js';
|
||
|
|
import { MemoryCaptureService, type MemoryRunStorePort } from './memory-runs.js';
|
||
|
|
|
||
|
|
class InMemoryRunStore implements MemoryRunStorePort {
|
||
|
|
readonly rows = new Map<
|
||
|
|
string,
|
||
|
|
{
|
||
|
|
id: string;
|
||
|
|
status: 'running' | 'done' | 'error';
|
||
|
|
stage: string;
|
||
|
|
inputHash: string;
|
||
|
|
chatId: string | null;
|
||
|
|
outputSummary: MemoryAgentResult | null;
|
||
|
|
error: string | null;
|
||
|
|
}
|
||
|
|
>();
|
||
|
|
|
||
|
|
async createRunning(args: { inputHash: string; chatId?: string | null }): Promise<{ id: string }> {
|
||
|
|
const id = `run-${this.rows.size + 1}`;
|
||
|
|
this.rows.set(id, {
|
||
|
|
id,
|
||
|
|
status: 'running',
|
||
|
|
stage: 'queued',
|
||
|
|
inputHash: args.inputHash,
|
||
|
|
chatId: args.chatId ?? null,
|
||
|
|
outputSummary: null,
|
||
|
|
error: null,
|
||
|
|
});
|
||
|
|
return { id };
|
||
|
|
}
|
||
|
|
|
||
|
|
async markRunning(id: string, stage: string): Promise<void> {
|
||
|
|
const row = this.rows.get(id);
|
||
|
|
if (!row) {
|
||
|
|
throw new Error(`unknown run ${id}`);
|
||
|
|
}
|
||
|
|
row.stage = stage;
|
||
|
|
}
|
||
|
|
|
||
|
|
async markDone(id: string, outputSummary: MemoryAgentResult): Promise<void> {
|
||
|
|
const row = this.rows.get(id);
|
||
|
|
if (!row) {
|
||
|
|
throw new Error(`unknown run ${id}`);
|
||
|
|
}
|
||
|
|
row.status = 'done';
|
||
|
|
row.stage = 'done';
|
||
|
|
row.outputSummary = outputSummary;
|
||
|
|
}
|
||
|
|
|
||
|
|
async markError(id: string, error: string): Promise<void> {
|
||
|
|
const row = this.rows.get(id);
|
||
|
|
if (!row) {
|
||
|
|
throw new Error(`unknown run ${id}`);
|
||
|
|
}
|
||
|
|
row.status = 'error';
|
||
|
|
row.stage = 'error';
|
||
|
|
row.error = error;
|
||
|
|
}
|
||
|
|
|
||
|
|
async findById(id: string) {
|
||
|
|
return this.rows.get(id) ?? null;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function deferred<T>() {
|
||
|
|
let resolve!: (value: T) => void;
|
||
|
|
let reject!: (reason?: unknown) => void;
|
||
|
|
const promise = new Promise<T>((res, rej) => {
|
||
|
|
resolve = res;
|
||
|
|
reject = rej;
|
||
|
|
});
|
||
|
|
return { promise, resolve, reject };
|
||
|
|
}
|
||
|
|
|
||
|
|
function buildService(): {
|
||
|
|
capture: MemoryCaptureService;
|
||
|
|
store: InMemoryRunStore;
|
||
|
|
ingest: ReturnType<typeof vi.fn>;
|
||
|
|
run: ReturnType<typeof deferred<MemoryAgentResult>>;
|
||
|
|
} {
|
||
|
|
const store = new InMemoryRunStore();
|
||
|
|
const run = deferred<MemoryAgentResult>();
|
||
|
|
const ingest = vi.fn<MemoryAgentService['ingest']>().mockReturnValue(run.promise);
|
||
|
|
const memoryAgent = { ingest };
|
||
|
|
return {
|
||
|
|
capture: new MemoryCaptureService({ memoryAgent, runs: store }),
|
||
|
|
store,
|
||
|
|
ingest,
|
||
|
|
run,
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
describe('MemoryCaptureService', () => {
|
||
|
|
it('creates a run, executes memory capture, and stores a done summary', async () => {
|
||
|
|
const result: MemoryAgentResult = {
|
||
|
|
signalDetected: true,
|
||
|
|
actions: [{ target: 'wiki', type: 'created', key: 'revenue', detail: 'captured revenue definition' }],
|
||
|
|
skillsLoaded: ['knowledge_capture'],
|
||
|
|
commitHash: 'abc123',
|
||
|
|
};
|
||
|
|
const { capture, store, ingest, run } = buildService();
|
||
|
|
|
||
|
|
const input: MemoryAgentInput = {
|
||
|
|
userId: 'user-1',
|
||
|
|
chatId: 'chat-1',
|
||
|
|
userMessage: 'Revenue means paid order value.',
|
||
|
|
assistantMessage: 'Captured.',
|
||
|
|
connectionId: '00000000-0000-0000-0000-000000000001',
|
||
|
|
};
|
||
|
|
|
||
|
|
const started = await capture.capture(input);
|
||
|
|
|
||
|
|
expect(started.runId).toBe('run-1');
|
||
|
|
expect(ingest).toHaveBeenCalledWith(input);
|
||
|
|
await expect(capture.status(started.runId)).resolves.toMatchObject({
|
||
|
|
runId: 'run-1',
|
||
|
|
status: 'running',
|
||
|
|
stage: 'capturing',
|
||
|
|
done: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
run.resolve(result);
|
||
|
|
await capture.waitForRun(started.runId);
|
||
|
|
|
||
|
|
const status = await capture.status(started.runId);
|
||
|
|
expect(status).toEqual({
|
||
|
|
runId: 'run-1',
|
||
|
|
stage: 'done',
|
||
|
|
done: true,
|
||
|
|
status: 'done',
|
||
|
|
captured: {
|
||
|
|
wiki: ['revenue'],
|
||
|
|
sl: [],
|
||
|
|
xrefs: [],
|
||
|
|
},
|
||
|
|
error: null,
|
||
|
|
commitHash: 'abc123',
|
||
|
|
skillsLoaded: ['knowledge_capture'],
|
||
|
|
signalDetected: true,
|
||
|
|
});
|
||
|
|
expect(store.rows.get('run-1')?.inputHash).toHaveLength(64);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('stores no-signal captures as done with empty captured arrays', async () => {
|
||
|
|
const { capture, run } = buildService();
|
||
|
|
|
||
|
|
const started = await capture.capture({
|
||
|
|
userId: 'user-1',
|
||
|
|
chatId: 'chat-2',
|
||
|
|
userMessage: 'Thanks.',
|
||
|
|
});
|
||
|
|
|
||
|
|
run.resolve({
|
||
|
|
signalDetected: false,
|
||
|
|
actions: [],
|
||
|
|
skillsLoaded: [],
|
||
|
|
commitHash: null,
|
||
|
|
});
|
||
|
|
await capture.waitForRun(started.runId);
|
||
|
|
|
||
|
|
await expect(capture.status(started.runId)).resolves.toMatchObject({
|
||
|
|
done: true,
|
||
|
|
status: 'done',
|
||
|
|
captured: { wiki: [], sl: [], xrefs: [] },
|
||
|
|
signalDetected: false,
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
it('stores thrown errors and projects them as failed statuses', async () => {
|
||
|
|
const store = new InMemoryRunStore();
|
||
|
|
const memoryAgent = {
|
||
|
|
ingest: vi.fn<MemoryAgentService['ingest']>().mockRejectedValue(new Error('LLM provider missing')),
|
||
|
|
};
|
||
|
|
const capture = new MemoryCaptureService({ memoryAgent, runs: store });
|
||
|
|
|
||
|
|
const started = await capture.capture({
|
||
|
|
userId: 'user-1',
|
||
|
|
chatId: 'chat-3',
|
||
|
|
userMessage: 'Remember this.',
|
||
|
|
});
|
||
|
|
await capture.waitForRun(started.runId);
|
||
|
|
|
||
|
|
await expect(capture.status(started.runId)).resolves.toMatchObject({
|
||
|
|
done: true,
|
||
|
|
status: 'error',
|
||
|
|
stage: 'error',
|
||
|
|
captured: { wiki: [], sl: [], xrefs: [] },
|
||
|
|
error: 'LLM provider missing',
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
it('returns null for an unknown run id', async () => {
|
||
|
|
const { capture } = buildService();
|
||
|
|
|
||
|
|
await expect(capture.status('missing')).resolves.toBeNull();
|
||
|
|
});
|
||
|
|
});
|