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

推荐订阅源

IT之家
IT之家
博客园_首页
S
SegmentFault 最新的问题
罗磊的独立博客
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
D
Docker
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
V
V2EX
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
腾讯CDC
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
Vercel News
Vercel News
H
Help Net Security
博客园 - Franky
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏

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: dedupe voice call mock reads · openclaw/openclaw@df...
steipete · 2026-05-13 · via Recent Commits to openclaw:main

@@ -33,6 +33,19 @@ type Registered = {

3333

tools: unknown[];

3434

service?: Parameters<OpenClawPluginApi["registerService"]>[0];

3535

};

36+

type MockCallSource = {

37+

mock: {

38+

calls: ArrayLike<ReadonlyArray<unknown>>;

39+

};

40+

};

41+

type RespondCall = [

42+

ok: boolean,

43+

payload?: Record<string, unknown>,

44+

error?: {

45+

code?: unknown;

46+

message?: unknown;

47+

},

48+

];

3649

type RegisterVoiceCall = (api: Record<string, unknown>) => void;

3750

type RegisterCliContext = {

3851

program: Command;

@@ -141,6 +154,25 @@ function envRef(id: string) {

141154

return { source: "env" as const, provider: "default", id };

142155

}

143156157+

function mockCall(source: MockCallSource, callIndex = 0): ReadonlyArray<unknown> {

158+

const call = source.mock.calls[callIndex];

159+

if (!call) {

160+

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

161+

}

162+

return call;

163+

}

164+165+

function firstRespondCall(source: MockCallSource): RespondCall {

166+

return mockCall(source) as unknown as RespondCall;

167+

}

168+169+

function firstRuntimeConfig(): VoiceCallRuntime["config"] | undefined {

170+

const options = mockCall(vi.mocked(createVoiceCallRuntime))[0] as

171+

| { config?: VoiceCallRuntime["config"] }

172+

| undefined;

173+

return options?.config;

174+

}

175+144176

function expectWarningIncludes(text: string): void {

145177

expect(noopLogger.warn.mock.calls.some(([message]) => String(message).includes(text))).toBe(true);

146178

}

@@ -326,9 +358,7 @@ describe("voice-call plugin", () => {

326358

await service?.start(createServiceContext());

327359328360

expect(createVoiceCallRuntime).toHaveBeenCalledTimes(1);

329-

expect(

330-

vi.mocked(createVoiceCallRuntime).mock.calls.at(0)?.[0]?.config.twilio?.authToken,

331-

).toEqual(authToken);

361+

expect(firstRuntimeConfig()?.twilio?.authToken).toEqual(authToken);

332362

});

333363334364

it("still reports missing provider setup when a command needs the runtime", async () => {

@@ -347,12 +377,10 @@ describe("voice-call plugin", () => {

347377

await handler?.({ params: { message: "Hi", to: "+15550001234" }, respond });

348378349379

expect(createVoiceCallRuntime).not.toHaveBeenCalled();

350-

const [ok, payload, error] = respond.mock.calls.at(0) ?? [];

380+

const [ok, payload, error] = firstRespondCall(respond);

351381

expect(ok).toBe(false);

352382

expect(payload).toBeUndefined();

353-

expect(String((error as { message?: unknown } | undefined)?.message)).toContain(

354-

"TWILIO_ACCOUNT_SID",

355-

);

383+

expect(String(error?.message)).toContain("TWILIO_ACCOUNT_SID");

356384

});

357385358386

it("initiates a call via voicecall.initiate", async () => {

@@ -366,9 +394,9 @@ describe("voice-call plugin", () => {

366394

const respond = vi.fn();

367395

await handler?.({ params: { message: "Hi" }, respond });

368396

expect(runtimeStub.manager.initiateCall).toHaveBeenCalled();

369-

const [ok, payload] = respond.mock.calls.at(0) ?? [];

397+

const [ok, payload] = firstRespondCall(respond);

370398

expect(ok).toBe(true);

371-

expect(payload.callId).toBe("call-1");

399+

expect(payload?.callId).toBe("call-1");

372400

});

373401374402

it("registers voice call gateway methods with least-privilege scopes", () => {

@@ -412,7 +440,7 @@ describe("voice-call plugin", () => {

412440

message: "Hi",

413441

mode: "conversation",

414442

});

415-

expect(respond.mock.calls.at(0)?.[0]).toBe(true);

443+

expect(firstRespondCall(respond)[0]).toBe(true);

416444

});

417445418446

it("preserves explicit session keys on voicecall.start", async () => {

@@ -443,7 +471,7 @@ describe("voice-call plugin", () => {

443471

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

444472

},

445473

);

446-

expect(respond.mock.calls.at(0)?.[0]).toBe(true);

474+

expect(firstRespondCall(respond)[0]).toBe(true);

447475

});

448476449477

it("returns call status", async () => {

@@ -456,9 +484,9 @@ describe("voice-call plugin", () => {

456484

| undefined;

457485

const respond = vi.fn();

458486

await handler?.({ params: { callId: "call-1" }, respond });

459-

const [ok, payload] = respond.mock.calls.at(0) ?? [];

487+

const [ok, payload] = firstRespondCall(respond);

460488

expect(ok).toBe(true);

461-

expect(payload.found).toBe(true);

489+

expect(payload?.found).toBe(true);

462490

});

463491464492

it("sends DTMF via voicecall.dtmf", async () => {

@@ -474,7 +502,7 @@ describe("voice-call plugin", () => {

474502

await handler?.({ params: { callId: "call-1", digits: "ww123#" }, respond });

475503476504

expect(runtimeStub.manager.sendDtmf).toHaveBeenCalledWith("call-1", "ww123#");

477-

expect(respond.mock.calls.at(0)).toEqual([true, { success: true }]);

505+

expect(firstRespondCall(respond)).toEqual([true, { success: true }]);

478506

});

479507480508

it("normalizes provider call ids before speaking", async () => {

@@ -497,7 +525,7 @@ describe("voice-call plugin", () => {

497525

await handler?.({ params: { callId: "CA123", message: "hello" }, respond });

498526499527

expect(runtimeStub.manager.speak).toHaveBeenCalledWith("call-1", "hello");

500-

expect(respond.mock.calls.at(0)).toEqual([true, { success: true }]);

528+

expect(firstRespondCall(respond)).toEqual([true, { success: true }]);

501529

});

502530503531

it("does not fall back to one-shot TwiML speak when realtime-only speech is requested", async () => {

@@ -518,7 +546,7 @@ describe("voice-call plugin", () => {

518546519547

expect(runtimeStub.webhookServer.speakRealtime).toHaveBeenCalledWith("call-1", "hello");

520548

expect(runtimeStub.manager.speak).not.toHaveBeenCalled();

521-

expect(respond.mock.calls.at(0)).toEqual([

549+

expect(firstRespondCall(respond)).toEqual([

522550

true,

523551

{ success: false, error: "No active realtime bridge for call" },

524552

]);

@@ -547,11 +575,11 @@ describe("voice-call plugin", () => {

547575548576

await handler?.({ params: { callId: "CA123", message: "hello" }, respond });

549577550-

const [ok, , error] = respond.mock.calls.at(0) ?? [];

578+

const [ok, , error] = firstRespondCall(respond);

551579

expect(ok).toBe(false);

552-

expect(error.message).toContain("call is not active");

553-

expect(error.message).toContain("last state=completed");

554-

expect(error.message).toContain("endReason=completed");

580+

expect(error?.message).toContain("call is not active");

581+

expect(error?.message).toContain("last state=completed");

582+

expect(error?.message).toContain("endReason=completed");

555583

expect(runtimeStub.manager.speak).not.toHaveBeenCalled();

556584

});

557585

@@ -579,7 +607,7 @@ describe("voice-call plugin", () => {

579607

await handler?.({ params: { callId: "call-1" }, respond });

580608581609

expect(vi.mocked(createVoiceCallRuntime)).toHaveBeenCalledTimes(1);

582-

const runtimeConfig = vi.mocked(createVoiceCallRuntime).mock.calls.at(0)?.[0]?.config;

610+

const runtimeConfig = firstRuntimeConfig();

583611

expect(runtimeConfig?.enabled).toBe(true);

584612

expect(runtimeConfig?.provider).toBe("mock");

585613

expect(runtimeConfig?.fromNumber).toBe("+15550001234");

@@ -707,11 +735,11 @@ describe("voice-call plugin", () => {

707735708736

await handler?.({ params: {}, respond });

709737710-

const [ok, payload, error] = respond.mock.calls.at(0) ?? [];

738+

const [ok, payload, error] = firstRespondCall(respond);

711739

expect(ok).toBe(false);

712740

expect(payload).toBeUndefined();

713-

expect((error as { code?: unknown } | undefined)?.code).toBe("INVALID_REQUEST");

714-

expect((error as { message?: unknown } | undefined)?.message).toBe("to required");

741+

expect(error?.code).toBe("INVALID_REQUEST");

742+

expect(error?.message).toBe("to required");

715743

});

716744717745

it("starts and polls delegated gateway continue operations", async () => {

@@ -791,7 +819,7 @@ describe("voice-call plugin", () => {

791819

params: { callId: "call-1", message: "Hello" },

792820

respond: startRespond,

793821

});

794-

const startPayload = startRespond.mock.calls.at(0)?.[1] as

822+

const startPayload = firstRespondCall(startRespond)[1] as

795823

| { operationId?: string; pollTimeoutMs?: number; status?: string }

796824

| undefined;

797825

expect(startPayload?.operationId).toMatch(

@@ -806,10 +834,9 @@ describe("voice-call plugin", () => {

806834

params: { operationId: startPayload?.operationId },

807835

respond: pendingRespond,

808836

});

809-

expect(pendingRespond.mock.calls.at(0)?.[0]).toBe(true);

810-

expect((pendingRespond.mock.calls.at(0)?.[1] as { status?: unknown } | undefined)?.status).toBe(

811-

"pending",

812-

);

837+

const pendingCall = firstRespondCall(pendingRespond);

838+

expect(pendingCall[0]).toBe(true);

839+

expect((pendingCall[1] as { status?: unknown } | undefined)?.status).toBe("pending");

813840814841

finishContinue?.({ success: true, transcript: "gateway hello" });

815842

await continuePromise;

@@ -820,10 +847,9 @@ describe("voice-call plugin", () => {

820847

params: { operationId: startPayload?.operationId },

821848

respond: completedRespond,

822849

});

823-

const completedPayload = completedRespond.mock.calls.at(0)?.[1] as

824-

| { status?: unknown; result?: unknown }

825-

| undefined;

826-

expect(completedRespond.mock.calls.at(0)?.[0]).toBe(true);

850+

const completedCall = firstRespondCall(completedRespond);

851+

const completedPayload = completedCall[1] as { status?: unknown; result?: unknown } | undefined;

852+

expect(completedCall[0]).toBe(true);

827853

expect(completedPayload?.status).toBe("completed");

828854

expect(completedPayload?.result).toEqual({ success: true, transcript: "gateway hello" });

829855

});