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

推荐订阅源

A
About on SuperTechFans
量子位
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
V
Visual Studio Blog
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
V
V2EX
The GitHub Blog
The GitHub Blog
博客园_首页
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
博客园 - 叶小钗
F
Fortinet All Blogs
T
Tailwind CSS Blog
GbyAI
GbyAI
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
WordPress大学
WordPress大学
B
Blog
H
Help Net Security

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
fix: improve google meet twilio join sequencing · opencla...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -6,6 +6,7 @@ import { createTestPluginApi } from "openclaw/plugin-sdk/plugin-test-api";

66

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

77

import type { OpenClawPluginApi } from "./api.js";

88

import type { VoiceCallRuntime } from "./runtime-entry.js";

9+

import type { CallRecord } from "./src/types.js";

9101011

let runtimeStub: VoiceCallRuntime;

1112

@@ -52,8 +53,12 @@ function captureStdout() {

5253

}

53545455

function createRuntimeStub(callId = "call-1"): VoiceCallRuntime {

56+

const call = createCallRecord({ callId });

5557

return {

56-

config: { toNumber: "+15550001234" } as VoiceCallRuntime["config"],

58+

config: {

59+

toNumber: "+15550001234",

60+

realtime: { enabled: false },

61+

} as VoiceCallRuntime["config"],

5762

provider: {} as VoiceCallRuntime["provider"],

5863

manager: {

5964

initiateCall: vi.fn(async () => ({ callId, success: true })),

@@ -64,17 +69,35 @@ function createRuntimeStub(callId = "call-1"): VoiceCallRuntime {

6469

speak: vi.fn(async () => ({ success: true })),

6570

sendDtmf: vi.fn(async () => ({ success: true })),

6671

endCall: vi.fn(async () => ({ success: true })),

67-

getCall: vi.fn((id: string) => (id === callId ? { callId } : undefined)),

72+

getCall: vi.fn((id: string) => (id === callId ? call : undefined)),

6873

getCallByProviderCallId: vi.fn(() => undefined),

69-

getActiveCalls: vi.fn(() => [{ callId }]),

74+

getActiveCalls: vi.fn(() => [call]),

75+

getCallHistory: vi.fn(async () => []),

7076

} as unknown as VoiceCallRuntime["manager"],

71-

webhookServer: {} as VoiceCallRuntime["webhookServer"],

77+

webhookServer: {

78+

speakRealtime: vi.fn(() => ({ success: false, error: "No active realtime bridge for call" })),

79+

} as unknown as VoiceCallRuntime["webhookServer"],

7280

webhookUrl: "http://127.0.0.1:3334/voice/webhook",

7381

publicUrl: null,

7482

stop: vi.fn(async () => {}),

7583

};

7684

}

778586+

function createCallRecord(overrides: Partial<CallRecord> = {}): CallRecord {

87+

return {

88+

callId: "call-1",

89+

provider: "mock",

90+

direction: "outbound",

91+

state: "active",

92+

from: "+15550001111",

93+

to: "+15550001234",

94+

startedAt: Date.UTC(2026, 4, 2, 9, 0, 0),

95+

transcript: [],

96+

processedEventIds: [],

97+

...overrides,

98+

};

99+

}

100+78101

function createServiceContext(): Parameters<NonNullable<Registered["service"]>["start"]>[0] {

79102

return {

80103

config: {},

@@ -397,6 +420,60 @@ describe("voice-call plugin", () => {

397420

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

398421

});

399422423+

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

424+

runtimeStub.manager.getCall = vi.fn(() => undefined);

425+

runtimeStub.manager.getCallByProviderCallId = vi.fn(() =>

426+

createCallRecord({

427+

callId: "call-1",

428+

providerCallId: "CA123",

429+

}),

430+

);

431+

const { methods } = setup({ provider: "mock" });

432+

const handler = methods.get("voicecall.speak") as

433+

| ((ctx: {

434+

params: Record<string, unknown>;

435+

respond: ReturnType<typeof vi.fn>;

436+

}) => Promise<void>)

437+

| undefined;

438+

const respond = vi.fn();

439+440+

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

441+442+

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

443+

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

444+

});

445+446+

it("reports ended call history when speaking to a stale call", async () => {

447+

runtimeStub.manager.getCall = vi.fn(() => undefined);

448+

runtimeStub.manager.getCallByProviderCallId = vi.fn(() => undefined);

449+

runtimeStub.manager.getCallHistory = vi.fn(async () => [

450+

createCallRecord({

451+

callId: "call-1",

452+

providerCallId: "CA123",

453+

state: "completed",

454+

endReason: "completed",

455+

endedAt: Date.UTC(2026, 4, 2, 9, 18, 23),

456+

}),

457+

]);

458+

const { methods } = setup({ provider: "mock" });

459+

const handler = methods.get("voicecall.speak") as

460+

| ((ctx: {

461+

params: Record<string, unknown>;

462+

respond: ReturnType<typeof vi.fn>;

463+

}) => Promise<void>)

464+

| undefined;

465+

const respond = vi.fn();

466+467+

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

468+469+

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

470+

expect(ok).toBe(false);

471+

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

472+

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

473+

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

474+

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

475+

});

476+400477

it("normalizes legacy config through runtime creation and warns to run doctor", async () => {

401478

const { methods } = setup({

402479

enabled: true,