mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 16:45:22 +00:00
115 lines
4.1 KiB
TypeScript
115 lines
4.1 KiB
TypeScript
/**
|
|
* background-by-default.test.ts — the `backgroundByDefault` flip, asserted at
|
|
* the tool boundary rather than at the resolver.
|
|
*
|
|
* `documented-defaults.test.ts` pins `resolveAgentInvocationConfig`'s arguments;
|
|
* this pins what the orchestrator actually receives back from a real `Agent`
|
|
* call, which is the part the tool description makes promises about:
|
|
*
|
|
* - an unqualified spawn hands back an ID instead of the agent's output,
|
|
* - `run_in_background: false` still blocks and returns the output inline,
|
|
* - a fan-out sized like the ones the description tells the model to send
|
|
* runs concurrently instead of queueing behind `maxConcurrent`.
|
|
*
|
|
* That last one is the reason the concurrency default moved 4 → 10: foreground
|
|
* agents bypass the pool, so the limit only started applying to ordinary
|
|
* parallel work once background became the default.
|
|
*/
|
|
import { describe, expect, it, vi } from "vitest";
|
|
|
|
vi.mock("../src/agent-runner.js", async () => {
|
|
const actual = await vi.importActual<typeof import("../src/agent-runner.js")>("../src/agent-runner.js");
|
|
return { ...actual, runAgent: vi.fn() };
|
|
});
|
|
|
|
import { runAgent } from "../src/agent-runner.js";
|
|
import subagentsExtension from "../src/index.js";
|
|
|
|
function makePi() {
|
|
const tools = new Map<string, any>();
|
|
const lifecycle = new Map<string, any>();
|
|
const pi = {
|
|
registerMessageRenderer: vi.fn(),
|
|
registerTool: vi.fn((t: any) => tools.set(t.name, t)),
|
|
registerCommand: vi.fn(),
|
|
on: vi.fn((event: string, handler: any) => lifecycle.set(event, handler)),
|
|
events: { emit: vi.fn(), on: vi.fn(() => vi.fn()) },
|
|
appendEntry: vi.fn(),
|
|
sendMessage: vi.fn(),
|
|
} as any;
|
|
return { pi, tools, lifecycle };
|
|
}
|
|
|
|
function ctx() {
|
|
return {
|
|
hasUI: false,
|
|
ui: { setStatus: vi.fn(), setWidget: vi.fn(), notify: vi.fn() },
|
|
cwd: process.cwd(),
|
|
model: undefined,
|
|
modelRegistry: { find: vi.fn(), getAvailable: vi.fn(() => []) },
|
|
sessionManager: { getSessionId: vi.fn(() => "s1"), getBranch: vi.fn(() => []) },
|
|
getSystemPrompt: vi.fn(() => "parent"),
|
|
} as any;
|
|
}
|
|
|
|
const textOf = (r: any): string => r.content[0].text;
|
|
|
|
const settled = (text: string) =>
|
|
vi.mocked(runAgent).mockResolvedValue({
|
|
responseText: text,
|
|
session: { dispose: vi.fn() } as any,
|
|
aborted: false,
|
|
steered: false,
|
|
} as any);
|
|
|
|
function spawn(tools: Map<string, any>, params: Record<string, unknown> = {}) {
|
|
return tools.get("Agent").execute(
|
|
"tc",
|
|
{ prompt: "go", description: "d", subagent_type: "general-purpose", ...params },
|
|
undefined,
|
|
undefined,
|
|
ctx(),
|
|
);
|
|
}
|
|
|
|
describe("backgroundByDefault", () => {
|
|
it("returns an agent ID, not the result, when the call doesn't specify", async () => {
|
|
const { pi, tools } = makePi();
|
|
subagentsExtension(pi);
|
|
settled("THE-PAYLOAD");
|
|
|
|
const out = textOf(await spawn(tools));
|
|
|
|
expect(out).toContain("Agent ID:");
|
|
// The whole point of backgrounding: the orchestrator does NOT get the
|
|
// output here — it arrives later as a notification preview.
|
|
expect(out).not.toContain("THE-PAYLOAD");
|
|
});
|
|
|
|
it("still blocks and returns the output inline when run_in_background is false", async () => {
|
|
const { pi, tools } = makePi();
|
|
subagentsExtension(pi);
|
|
settled("THE-PAYLOAD");
|
|
|
|
const out = textOf(await spawn(tools, { run_in_background: false }));
|
|
|
|
expect(out).toContain("THE-PAYLOAD");
|
|
expect(out).not.toContain("started in background");
|
|
});
|
|
|
|
it("starts a six-way fan-out concurrently instead of queueing the tail", async () => {
|
|
// Six is the shape the Agent tool description tells the model to send.
|
|
// With maxConcurrent at its old 4 this queued two of them.
|
|
const { pi, tools } = makePi();
|
|
subagentsExtension(pi);
|
|
// Never settles — every agent stays occupying its slot for the whole test.
|
|
vi.mocked(runAgent).mockImplementation(() => new Promise(() => {}) as any);
|
|
|
|
const outs: string[] = [];
|
|
for (let i = 0; i < 6; i++) outs.push(textOf(await spawn(tools)));
|
|
|
|
expect(outs).toHaveLength(6);
|
|
for (const out of outs) expect(out).not.toContain("queued");
|
|
});
|
|
});
|