| import { describe, expect, it, vi } from "vitest"; |
|
|
| import type { TemplateContext } from "../templating.js"; |
| import type { FollowupRun, QueueSettings } from "./queue.js"; |
| import { createMockTypingController } from "./test-helpers.js"; |
|
|
| const runEmbeddedPiAgentMock = vi.fn(); |
|
|
| vi.mock("../../agents/model-fallback.js", () => ({ |
| runWithModelFallback: async ({ |
| provider, |
| model, |
| run, |
| }: { |
| provider: string; |
| model: string; |
| run: (provider: string, model: string) => Promise<unknown>; |
| }) => ({ |
| result: await run(provider, model), |
| provider, |
| model, |
| }), |
| })); |
|
|
| vi.mock("../../agents/pi-embedded.js", () => ({ |
| queueEmbeddedPiMessage: vi.fn().mockReturnValue(false), |
| runEmbeddedPiAgent: (params: unknown) => runEmbeddedPiAgentMock(params), |
| })); |
|
|
| vi.mock("./queue.js", async () => { |
| const actual = await vi.importActual<typeof import("./queue.js")>("./queue.js"); |
| return { |
| ...actual, |
| enqueueFollowupRun: vi.fn(), |
| scheduleFollowupDrain: vi.fn(), |
| }; |
| }); |
|
|
| import { runReplyAgent } from "./agent-runner.js"; |
|
|
| describe("runReplyAgent block streaming", () => { |
| it("coalesces duplicate text_end block replies", async () => { |
| const onBlockReply = vi.fn(); |
| runEmbeddedPiAgentMock.mockImplementationOnce(async (params) => { |
| const block = params.onBlockReply as ((payload: { text?: string }) => void) | undefined; |
| block?.({ text: "Hello" }); |
| block?.({ text: "Hello" }); |
| return { |
| payloads: [{ text: "Final message" }], |
| meta: {}, |
| }; |
| }); |
|
|
| const typing = createMockTypingController(); |
| const sessionCtx = { |
| Provider: "discord", |
| OriginatingTo: "channel:C1", |
| AccountId: "primary", |
| MessageSid: "msg", |
| } as unknown as TemplateContext; |
| const resolvedQueue = { mode: "interrupt" } as unknown as QueueSettings; |
| const followupRun = { |
| prompt: "hello", |
| summaryLine: "hello", |
| enqueuedAt: Date.now(), |
| run: { |
| sessionId: "session", |
| sessionKey: "main", |
| messageProvider: "discord", |
| sessionFile: "/tmp/session.jsonl", |
| workspaceDir: "/tmp", |
| config: { |
| agents: { |
| defaults: { |
| blockStreamingCoalesce: { |
| minChars: 1, |
| maxChars: 200, |
| idleMs: 0, |
| }, |
| }, |
| }, |
| }, |
| skillsSnapshot: {}, |
| provider: "anthropic", |
| model: "claude", |
| thinkLevel: "low", |
| verboseLevel: "off", |
| elevatedLevel: "off", |
| bashElevated: { |
| enabled: false, |
| allowed: false, |
| defaultLevel: "off", |
| }, |
| timeoutMs: 1_000, |
| blockReplyBreak: "text_end", |
| }, |
| } as unknown as FollowupRun; |
|
|
| const result = await runReplyAgent({ |
| commandBody: "hello", |
| followupRun, |
| queueKey: "main", |
| resolvedQueue, |
| shouldSteer: false, |
| shouldFollowup: false, |
| isActive: false, |
| isStreaming: false, |
| opts: { onBlockReply }, |
| typing, |
| sessionCtx, |
| defaultModel: "anthropic/claude-opus-4-5", |
| resolvedVerboseLevel: "off", |
| isNewSession: false, |
| blockStreamingEnabled: true, |
| blockReplyChunking: { |
| minChars: 1, |
| maxChars: 200, |
| breakPreference: "paragraph", |
| }, |
| resolvedBlockStreamingBreak: "text_end", |
| shouldInjectGroupIntro: false, |
| typingMode: "instant", |
| }); |
|
|
| expect(onBlockReply).toHaveBeenCalledTimes(1); |
| expect(onBlockReply.mock.calls[0][0].text).toBe("Hello"); |
| expect(result).toBeUndefined(); |
| }); |
| }); |
|
|