惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
L
LangChain Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
WordPress大学
WordPress大学
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
有赞技术团队
有赞技术团队
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: tighten voice call runtime assertions · openclaw/op...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -129,6 +129,21 @@ function createExternalProviderConfig(params: {

129129

return config;

130130

}

131131132+

function firstCallParam(calls: unknown[][], label: string) {

133+

const call = calls[0];

134+

if (!call) {

135+

throw new Error(`expected ${label} call`);

136+

}

137+

return call[0];

138+

}

139+140+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

141+

if (value === null || typeof value !== "object" || Array.isArray(value)) {

142+

throw new Error(`expected ${label} to be a record`);

143+

}

144+

return value as Record<string, unknown>;

145+

}

146+132147

describe("createVoiceCallRuntime lifecycle", () => {

133148

beforeEach(() => {

134149

vi.clearAllMocks();

@@ -350,12 +365,18 @@ describe("createVoiceCallRuntime lifecycle", () => {

350365

agentRuntime: agentRuntime as never,

351366

});

352367353-

expect(mocks.realtimeHandlerCtorArgs[0]?.[0]).toMatchObject({

354-

tools: [

355-

expect.objectContaining({ name: "openclaw_agent_consult" }),

356-

expect.objectContaining({ name: "custom_tool" }),

357-

],

358-

});

368+

const realtimeHandlerOptions = requireRecord(

369+

mocks.realtimeHandlerCtorArgs[0]?.[0],

370+

"realtime handler options",

371+

);

372+

const tools = realtimeHandlerOptions.tools;

373+

if (!Array.isArray(tools)) {

374+

throw new Error("expected realtime handler tools to be an array");

375+

}

376+

expect(tools.map((tool) => requireRecord(tool, "realtime tool").name)).toEqual([

377+

"openclaw_agent_consult",

378+

"custom_tool",

379+

]);

359380

const registeredToolHandler = mocks.realtimeHandlerRegisterToolHandler.mock.calls[0];

360381

expect(registeredToolHandler?.[0]).toBe("openclaw_agent_consult");

361382

expect(registeredToolHandler?.[1]).toBeTypeOf("function");

@@ -374,24 +395,28 @@ describe("createVoiceCallRuntime lifecycle", () => {

374395

).resolves.toEqual({

375396

text: "Use the shipment status.",

376397

});

377-

expect(runEmbeddedPiAgent).toHaveBeenCalledWith(

378-

expect.objectContaining({

379-

sessionKey: "voice:15550009999",

380-

spawnedBy: "agent:main:discord:channel:general",

381-

messageProvider: "voice",

382-

lane: "voice",

383-

provider: "openai",

384-

model: "gpt-5.4",

385-

toolsAllow: ["read", "web_search", "web_fetch", "x_search", "memory_search", "memory_get"],

386-

extraSystemPrompt: expect.stringContaining("one or two bounded read-only queries"),

387-

prompt: expect.stringContaining("Caller: Can you check shipment status?"),

388-

}),

389-

);

390-

expect(runEmbeddedPiAgent).toHaveBeenCalledWith(

391-

expect.objectContaining({

392-

prompt: expect.stringContaining("Caller: Also check the ETA."),

393-

}),

398+

expect(runEmbeddedPiAgent).toHaveBeenCalledOnce();

399+

const consultParams = requireRecord(

400+

firstCallParam(runEmbeddedPiAgent.mock.calls as unknown[][], "embedded PI consult"),

401+

"embedded PI consult params",

394402

);

403+

expect(consultParams.sessionKey).toBe("voice:15550009999");

404+

expect(consultParams.spawnedBy).toBe("agent:main:discord:channel:general");

405+

expect(consultParams.messageProvider).toBe("voice");

406+

expect(consultParams.lane).toBe("voice");

407+

expect(consultParams.provider).toBe("openai");

408+

expect(consultParams.model).toBe("gpt-5.4");

409+

expect(consultParams.toolsAllow).toEqual([

410+

"read",

411+

"web_search",

412+

"web_fetch",

413+

"x_search",

414+

"memory_search",

415+

"memory_get",

416+

]);

417+

expect(consultParams.extraSystemPrompt).toContain("one or two bounded read-only queries");

418+

expect(consultParams.prompt).toContain("Caller: Can you check shipment status?");

419+

expect(consultParams.prompt).toContain("Caller: Also check the ETA.");

395420

});

396421397422

it("uses persisted per-call session keys for realtime consults", async () => {

@@ -446,11 +471,12 @@ describe("createVoiceCallRuntime lifecycle", () => {

446471

await expect(handler?.({ question: "What should I say?" }, "call-1")).resolves.toEqual({

447472

text: "Per-call consult answer.",

448473

});

449-

expect(runEmbeddedPiAgent).toHaveBeenCalledWith(

450-

expect.objectContaining({

451-

sessionKey: "voice:call:call-1",

452-

}),

474+

expect(runEmbeddedPiAgent).toHaveBeenCalledOnce();

475+

const consultParams = requireRecord(

476+

firstCallParam(runEmbeddedPiAgent.mock.calls as unknown[][], "per-call embedded PI consult"),

477+

"per-call embedded PI consult params",

453478

);

479+

expect(consultParams.sessionKey).toBe("voice:call:call-1");

454480

});

455481456482

it("answers realtime consults from fast memory context before starting the full agent", async () => {

@@ -511,11 +537,12 @@ describe("createVoiceCallRuntime lifecycle", () => {

511537

context?: { partialUserTranscript?: string },

512538

) => Promise<unknown>)

513539

| undefined;

514-

await expect(handler?.({ question: "Are the basement lights on?" }, "call-1")).resolves.toEqual(

515-

{

516-

text: expect.stringContaining("The caller's basement lights are on."),

517-

},

540+

const fastContextResult = await handler?.(

541+

{ question: "Are the basement lights on?" },

542+

"call-1",

518543

);

544+

const fastContextRecord = requireRecord(fastContextResult, "fast context result");

545+

expect(fastContextRecord.text).toContain("The caller's basement lights are on.");

519546

expect(mocks.resolveRealtimeFastContextConsult).toHaveBeenCalledWith({

520547

cfg: {},

521548

agentId: "main",

@@ -588,11 +615,15 @@ describe("createVoiceCallRuntime lifecycle", () => {

588615

});

589616590617

expect(agentRuntime.resolveThinkingDefault).not.toHaveBeenCalled();

591-

expect(runEmbeddedPiAgent).toHaveBeenCalledWith(

592-

expect.objectContaining({

593-

thinkLevel: "low",

594-

fastMode: true,

595-

}),

618+

expect(runEmbeddedPiAgent).toHaveBeenCalledOnce();

619+

const consultParams = requireRecord(

620+

firstCallParam(

621+

runEmbeddedPiAgent.mock.calls as unknown[][],

622+

"configured embedded PI consult",

623+

),

624+

"configured embedded PI consult params",

596625

);

626+

expect(consultParams.thinkLevel).toBe("low");

627+

expect(consultParams.fastMode).toBe(true);

597628

});

598629

});