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

推荐订阅源

博客园_首页
爱范儿
爱范儿
罗磊的独立博客
V
V2EX
量子位
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园 - 叶小钗
小众软件
小众软件
博客园 - 【当耐特】
Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell

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(voice-call): share webhook runtime across contexts · ...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -5,20 +5,9 @@ import { Command } from "commander";

55

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

66

import { createTestPluginApi } from "../../test/helpers/plugins/plugin-api.ts";

77

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

8+

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

899-

let runtimeStub: {

10-

config: { toNumber?: string };

11-

manager: {

12-

initiateCall: ReturnType<typeof vi.fn>;

13-

continueCall: ReturnType<typeof vi.fn>;

14-

speak: ReturnType<typeof vi.fn>;

15-

sendDtmf: ReturnType<typeof vi.fn>;

16-

endCall: ReturnType<typeof vi.fn>;

17-

getCall: ReturnType<typeof vi.fn>;

18-

getCallByProviderCallId: ReturnType<typeof vi.fn>;

19-

};

20-

stop: ReturnType<typeof vi.fn>;

21-

};

10+

let runtimeStub: VoiceCallRuntime;

22112312

vi.mock("./runtime-entry.js", () => ({

2413

createVoiceCallRuntime: vi.fn(async () => runtimeStub),

@@ -37,6 +26,7 @@ const noopLogger = {

3726

type Registered = {

3827

methods: Map<string, unknown>;

3928

tools: unknown[];

29+

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

4030

};

4131

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

4232

type RegisterCliContext = {

@@ -57,9 +47,42 @@ function captureStdout() {

5747

restore: () => writeSpy.mockRestore(),

5848

};

5949

}

50+51+

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

52+

return {

53+

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

54+

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

55+

manager: {

56+

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

57+

continueCall: vi.fn(async () => ({

58+

success: true,

59+

transcript: "hello",

60+

})),

61+

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

62+

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

63+

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

64+

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

65+

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

66+

} as unknown as VoiceCallRuntime["manager"],

67+

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

68+

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

69+

publicUrl: null,

70+

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

71+

};

72+

}

73+74+

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

75+

return {

76+

config: {},

77+

stateDir: os.tmpdir(),

78+

logger: noopLogger,

79+

} as Parameters<NonNullable<Registered["service"]>["start"]>[0];

80+

}

81+6082

function setup(config: Record<string, unknown>): Registered {

6183

const methods = new Map<string, unknown>();

6284

const tools: unknown[] = [];

85+

let service: Registered["service"];

6386

const api = createTestPluginApi({

6487

id: "voice-call",

6588

name: "Voice Call",

@@ -73,11 +96,13 @@ function setup(config: Record<string, unknown>): Registered {

7396

registerGatewayMethod: (method: string, handler: unknown) => methods.set(method, handler),

7497

registerTool: (tool: unknown) => tools.push(tool),

7598

registerCli: () => {},

76-

registerService: () => {},

99+

registerService: (registeredService) => {

100+

service = registeredService;

101+

},

77102

resolvePath: (p: string) => p,

78103

});

79104

plugin.register(api);

80-

return { methods, tools };

105+

return { methods, tools, service };

81106

}

8210783108

async function registerVoiceCallCli(program: Command) {

@@ -114,26 +139,60 @@ describe("voice-call plugin", () => {

114139

noopLogger.warn.mockClear();

115140

noopLogger.error.mockClear();

116141

noopLogger.debug.mockClear();

117-

vi.mocked(createVoiceCallRuntime).mockClear();

118-

runtimeStub = {

119-

config: { toNumber: "+15550001234" },

120-

manager: {

121-

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

122-

continueCall: vi.fn(async () => ({

123-

success: true,

124-

transcript: "hello",

125-

})),

126-

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

127-

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

128-

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

129-

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

130-

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

131-

},

132-

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

133-

};

142+

runtimeStub = createRuntimeStub();

143+

vi.mocked(createVoiceCallRuntime).mockReset();

144+

vi.mocked(createVoiceCallRuntime).mockImplementation(async () => runtimeStub);

145+

});

146+147+

afterEach(() => {

148+

vi.restoreAllMocks();

149+

delete (globalThis as Record<PropertyKey, unknown>)[Symbol.for("openclaw.voice-call.runtime")];

150+

delete (globalThis as Record<PropertyKey, unknown>)[

151+

Symbol.for("openclaw.voice-call.runtimePromise")

152+

];

153+

delete (globalThis as Record<PropertyKey, unknown>)[

154+

Symbol.for("openclaw.voice-call.runtimeStopPromise")

155+

];

156+

});

157+158+

it("reuses a started runtime across plugin registration contexts", async () => {

159+

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

160+

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

161+162+

await first.service?.start(createServiceContext());

163+

const handler = second.methods.get("voicecall.initiate") as

164+

| ((ctx: {

165+

params: Record<string, unknown>;

166+

respond: ReturnType<typeof vi.fn>;

167+

}) => Promise<void>)

168+

| undefined;

169+

const respond = vi.fn();

170+

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

171+172+

expect(createVoiceCallRuntime).toHaveBeenCalledTimes(1);

173+

expect(runtimeStub.manager.initiateCall).toHaveBeenCalledTimes(1);

174+

expect(respond).toHaveBeenCalledWith(true, { callId: "call-1", initiated: true });

134175

});

135176136-

afterEach(() => vi.restoreAllMocks());

177+

it("creates a fresh shared runtime after service stop", async () => {

178+

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

179+

await first.service?.start(createServiceContext());

180+

await first.service?.stop?.(createServiceContext());

181+182+

runtimeStub = createRuntimeStub("call-2");

183+

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

184+

const handler = second.methods.get("voicecall.initiate") as

185+

| ((ctx: {

186+

params: Record<string, unknown>;

187+

respond: ReturnType<typeof vi.fn>;

188+

}) => Promise<void>)

189+

| undefined;

190+

const respond = vi.fn();

191+

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

192+193+

expect(createVoiceCallRuntime).toHaveBeenCalledTimes(2);

194+

expect(respond).toHaveBeenCalledWith(true, { callId: "call-2", initiated: true });

195+

});

137196138197

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

139198

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