mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 23:01:30 +00:00
- compaction-hooks-example.test.ts: get sessionManager/modelRegistry from ctx - compaction-hooks.test.ts: - Pass sessionManager/modelRegistry to HookRunner constructor - Remove setSessionFile call - Update tests to use session.sessionManager instead of event.sessionManager
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
/**
|
|
* Verify the documentation example from hooks.md compiles and works.
|
|
*/
|
|
|
|
import { describe, expect, it } from "vitest";
|
|
import type { HookAPI } from "../src/core/hooks/index.js";
|
|
|
|
describe("Documentation example", () => {
|
|
it("custom compaction example should type-check correctly", () => {
|
|
// This is the example from hooks.md - verify it compiles
|
|
const exampleHook = (pi: HookAPI) => {
|
|
pi.on("session", async (event, ctx) => {
|
|
if (event.reason !== "before_compact") return;
|
|
|
|
// After narrowing, these should all be accessible
|
|
// sessionManager and modelRegistry come from ctx, not event
|
|
const { preparation, previousCompactions, model } = event;
|
|
const { sessionManager, modelRegistry } = ctx;
|
|
const { messagesToSummarize, messagesToKeep, tokensBefore, firstKeptEntryId, cutPoint } = preparation;
|
|
|
|
// Get previous summary from most recent compaction
|
|
const _previousSummary = previousCompactions[0]?.summary;
|
|
|
|
// Verify types
|
|
expect(Array.isArray(messagesToSummarize)).toBe(true);
|
|
expect(Array.isArray(messagesToKeep)).toBe(true);
|
|
expect(typeof cutPoint.firstKeptEntryIndex).toBe("number");
|
|
expect(typeof tokensBefore).toBe("number");
|
|
expect(model).toBeDefined();
|
|
expect(typeof sessionManager.getEntries).toBe("function");
|
|
expect(typeof modelRegistry.getApiKey).toBe("function");
|
|
expect(typeof firstKeptEntryId).toBe("string");
|
|
|
|
const summary = messagesToSummarize
|
|
.filter((m) => m.role === "user")
|
|
.map((m) => `- ${typeof m.content === "string" ? m.content.slice(0, 100) : "[complex]"}`)
|
|
.join("\n");
|
|
|
|
// Hooks return compaction content - SessionManager adds id/parentId
|
|
return {
|
|
compaction: {
|
|
summary: `User requests:\n${summary}`,
|
|
firstKeptEntryId,
|
|
tokensBefore,
|
|
},
|
|
};
|
|
});
|
|
};
|
|
|
|
// Just verify the function exists and is callable
|
|
expect(typeof exampleHook).toBe("function");
|
|
});
|
|
|
|
it("compact event should have correct fields after narrowing", () => {
|
|
const checkCompactEvent = (pi: HookAPI) => {
|
|
pi.on("session", async (event, _ctx) => {
|
|
if (event.reason !== "compact") return;
|
|
|
|
// After narrowing, these should all be accessible
|
|
const entry = event.compactionEntry;
|
|
const fromHook = event.fromHook;
|
|
|
|
expect(entry.type).toBe("compaction");
|
|
expect(typeof entry.summary).toBe("string");
|
|
expect(typeof entry.tokensBefore).toBe("number");
|
|
expect(typeof fromHook).toBe("boolean");
|
|
});
|
|
};
|
|
|
|
expect(typeof checkCompactEvent).toBe("function");
|
|
});
|
|
});
|