28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { isCompactionFailureError } from "./pi-embedded-helpers.js";
|
|
import { DEFAULT_AGENTS_FILENAME } from "./workspace.js";
|
|
|
|
const _makeFile = (overrides: Partial<WorkspaceBootstrapFile>): WorkspaceBootstrapFile => ({
|
|
name: DEFAULT_AGENTS_FILENAME,
|
|
path: "/tmp/AGENTS.md",
|
|
content: "",
|
|
missing: false,
|
|
...overrides,
|
|
});
|
|
describe("isCompactionFailureError", () => {
|
|
it("matches compaction overflow failures", () => {
|
|
const samples = [
|
|
'Context overflow: Summarization failed: 400 {"message":"prompt is too long"}',
|
|
"auto-compaction failed due to context overflow",
|
|
"Compaction failed: prompt is too long",
|
|
];
|
|
for (const sample of samples) {
|
|
expect(isCompactionFailureError(sample)).toBe(true);
|
|
}
|
|
});
|
|
it("ignores non-compaction overflow errors", () => {
|
|
expect(isCompactionFailureError("Context overflow: prompt too large")).toBe(false);
|
|
expect(isCompactionFailureError("rate limit exceeded")).toBe(false);
|
|
});
|
|
});
|