mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-23 23:22:32 +00:00
151 lines
5.2 KiB
TypeScript
151 lines
5.2 KiB
TypeScript
import type { AgentMessage } from "@mariozechner/pi-agent-core";
|
|
import type { ExtensionContext } from "@mariozechner/pi-coding-agent";
|
|
import * as piCodingAgent from "@mariozechner/pi-coding-agent";
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
vi.mock("@mariozechner/pi-coding-agent", async () => {
|
|
const actual = await vi.importActual<typeof piCodingAgent>("@mariozechner/pi-coding-agent");
|
|
return {
|
|
...actual,
|
|
generateSummary: vi.fn(),
|
|
};
|
|
});
|
|
|
|
const mockGenerateSummary = vi.mocked(piCodingAgent.generateSummary);
|
|
type SummarizeInStagesInput = Parameters<typeof import("./compaction.js").summarizeInStages>[0];
|
|
|
|
const { buildCompactionSummarizationInstructions, summarizeInStages } =
|
|
await import("./compaction.js");
|
|
|
|
function makeMessage(index: number, size = 1200): AgentMessage {
|
|
return {
|
|
role: "user",
|
|
content: `m${index}-${"x".repeat(size)}`,
|
|
timestamp: index,
|
|
};
|
|
}
|
|
|
|
describe("compaction identifier-preservation instructions", () => {
|
|
const testModel = {
|
|
provider: "anthropic",
|
|
model: "claude-3-opus",
|
|
contextWindow: 200_000,
|
|
} as unknown as NonNullable<ExtensionContext["model"]>;
|
|
const summarizeBase: Omit<SummarizeInStagesInput, "messages"> = {
|
|
model: testModel,
|
|
apiKey: "test-key", // pragma: allowlist secret
|
|
reserveTokens: 4000,
|
|
maxChunkTokens: 8000,
|
|
contextWindow: 200_000,
|
|
signal: new AbortController().signal,
|
|
};
|
|
|
|
beforeEach(() => {
|
|
mockGenerateSummary.mockReset();
|
|
mockGenerateSummary.mockResolvedValue("summary");
|
|
});
|
|
|
|
async function runSummary(
|
|
messageCount: number,
|
|
overrides: Partial<Omit<SummarizeInStagesInput, "messages">> = {},
|
|
) {
|
|
await summarizeInStages({
|
|
...summarizeBase,
|
|
...overrides,
|
|
signal: new AbortController().signal,
|
|
messages: Array.from({ length: messageCount }, (_unused, index) => makeMessage(index + 1)),
|
|
});
|
|
}
|
|
|
|
function firstSummaryInstructions() {
|
|
return extractSummaryInstructions(mockGenerateSummary.mock.calls[0]);
|
|
}
|
|
|
|
it("injects identifier-preservation guidance even without custom instructions", async () => {
|
|
await runSummary(2);
|
|
|
|
expect(mockGenerateSummary).toHaveBeenCalled();
|
|
expect(firstSummaryInstructions()).toContain(
|
|
"Preserve all opaque identifiers exactly as written",
|
|
);
|
|
expect(firstSummaryInstructions()).toContain("UUIDs");
|
|
expect(firstSummaryInstructions()).toContain("IPs");
|
|
expect(firstSummaryInstructions()).toContain("ports");
|
|
});
|
|
|
|
it("keeps identifier-preservation guidance when custom instructions are provided", async () => {
|
|
await runSummary(2, {
|
|
customInstructions: "Focus on release-impacting bugs.",
|
|
});
|
|
|
|
expect(firstSummaryInstructions()).toContain(
|
|
"Preserve all opaque identifiers exactly as written",
|
|
);
|
|
expect(firstSummaryInstructions()).toContain("Additional focus:");
|
|
expect(firstSummaryInstructions()).toContain("Focus on release-impacting bugs.");
|
|
});
|
|
|
|
it("applies identifier-preservation guidance on staged split + merge summarization", async () => {
|
|
await runSummary(4, {
|
|
maxChunkTokens: 1000,
|
|
parts: 2,
|
|
minMessagesForSplit: 4,
|
|
});
|
|
|
|
expect(mockGenerateSummary.mock.calls.length).toBeGreaterThan(1);
|
|
for (const call of mockGenerateSummary.mock.calls) {
|
|
expect(extractSummaryInstructions(call)).toContain(
|
|
"Preserve all opaque identifiers exactly as written",
|
|
);
|
|
}
|
|
});
|
|
|
|
it("avoids duplicate additional-focus headers in split+merge path", async () => {
|
|
await runSummary(4, {
|
|
maxChunkTokens: 1000,
|
|
parts: 2,
|
|
minMessagesForSplit: 4,
|
|
customInstructions: "Prioritize customer-visible regressions.",
|
|
});
|
|
|
|
const mergedCall = mockGenerateSummary.mock.calls.at(-1);
|
|
const instructions = extractSummaryInstructions(mergedCall);
|
|
expect(instructions).toContain("Merge these partial summaries into a single cohesive summary.");
|
|
expect(instructions).toContain("Prioritize customer-visible regressions.");
|
|
expect((instructions.match(/Additional focus:/g) ?? []).length).toBe(1);
|
|
});
|
|
});
|
|
|
|
function extractSummaryInstructions(call: unknown[] | undefined): string {
|
|
if (!call) {
|
|
return "";
|
|
}
|
|
for (let index = call.length - 1; index >= 4; index -= 1) {
|
|
const arg = call[index];
|
|
if (
|
|
typeof arg === "string" &&
|
|
(arg.includes("Preserve all opaque identifiers exactly as written") ||
|
|
arg.includes("Merge these partial summaries into a single cohesive summary.") ||
|
|
arg.includes("Additional focus:"))
|
|
) {
|
|
return arg;
|
|
}
|
|
}
|
|
return "";
|
|
}
|
|
|
|
describe("buildCompactionSummarizationInstructions", () => {
|
|
it("returns base instructions when no custom text is provided", () => {
|
|
const result = buildCompactionSummarizationInstructions();
|
|
expect(result).toContain("Preserve all opaque identifiers exactly as written");
|
|
expect(result).not.toContain("Additional focus:");
|
|
});
|
|
|
|
it("appends custom instructions in a stable format", () => {
|
|
const result = buildCompactionSummarizationInstructions("Keep deployment details.");
|
|
expect(result).toContain("Preserve all opaque identifiers exactly as written");
|
|
expect(result).toContain("Additional focus:");
|
|
expect(result).toContain("Keep deployment details.");
|
|
});
|
|
});
|