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

推荐订阅源

博客园_首页
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
Visual Studio Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园 - 【当耐特】
博客园 - 叶小钗
量子位
博客园 - 聂微东
S
SegmentFault 最新的问题
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
宝玉的分享
宝玉的分享
小众软件
小众软件
罗磊的独立博客
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog

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): delegate cli calls to gateway · openclaw...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -15,6 +15,7 @@ vi.mock("./runtime-entry.js", () => ({

15151616

import plugin from "./index.js";

1717

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

18+

import { __testing as voiceCallCliTesting } from "./src/cli.js";

18191920

const noopLogger = {

2021

info: vi.fn(),

@@ -23,6 +24,8 @@ const noopLogger = {

2324

debug: vi.fn(),

2425

};

252627+

const callGatewayFromCliMock = vi.fn();

28+2629

type Registered = {

2730

methods: Map<string, unknown>;

2831

tools: unknown[];

@@ -144,11 +147,15 @@ describe("voice-call plugin", () => {

144147

noopLogger.error.mockClear();

145148

noopLogger.debug.mockClear();

146149

runtimeStub = createRuntimeStub();

150+

callGatewayFromCliMock.mockReset();

151+

callGatewayFromCliMock.mockRejectedValue(new Error("connect ECONNREFUSED 127.0.0.1:18789"));

152+

voiceCallCliTesting.setCallGatewayFromCliForTests(callGatewayFromCliMock);

147153

vi.mocked(createVoiceCallRuntime).mockReset();

148154

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

149155

});

150156151157

afterEach(() => {

158+

voiceCallCliTesting.setCallGatewayFromCliForTests();

152159

vi.restoreAllMocks();

153160

vi.unstubAllEnvs();

154161

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

@@ -205,6 +212,29 @@ describe("voice-call plugin", () => {

205212

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

206213

});

207214215+

it("does not start the webhook runtime for CLI-only plugin loading", async () => {

216+

vi.stubEnv("OPENCLAW_CLI", "1");

217+

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

218+219+

await service?.start(createServiceContext());

220+221+

expect(createVoiceCallRuntime).not.toHaveBeenCalled();

222+

});

223+224+

it("still starts the webhook runtime for gateway CLI processes", async () => {

225+

const previousArgv = process.argv;

226+

vi.stubEnv("OPENCLAW_CLI", "1");

227+

process.argv = ["node", "openclaw", "gateway", "run"];

228+

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

229+230+

try {

231+

await service?.start(createServiceContext());

232+

expect(createVoiceCallRuntime).toHaveBeenCalledTimes(1);

233+

} finally {

234+

process.argv = previousArgv;

235+

}

236+

});

237+208238

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

209239

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

210240

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

@@ -462,6 +492,29 @@ describe("voice-call plugin", () => {

462492

}

463493

});

464494495+

it("CLI start delegates to the running gateway runtime", async () => {

496+

callGatewayFromCliMock.mockResolvedValueOnce({ callId: "gateway-call", initiated: true });

497+

const program = new Command();

498+

const stdout = captureStdout();

499+

await registerVoiceCallCli(program);

500+501+

try {

502+

await program.parseAsync(["voicecall", "start", "--to", "+1", "--message", "Hello"], {

503+

from: "user",

504+

});

505+

expect(callGatewayFromCliMock).toHaveBeenCalledWith(

506+

"voicecall.start",

507+

{ json: true, timeout: "5000" },

508+

{ to: "+1", message: "Hello", mode: "conversation" },

509+

{ progress: false },

510+

);

511+

expect(createVoiceCallRuntime).not.toHaveBeenCalled();

512+

expect(stdout.output()).toContain('"callId": "gateway-call"');

513+

} finally {

514+

stdout.restore();

515+

}

516+

});

517+465518

it("CLI setup prints human-readable checks by default", async () => {

466519

const program = new Command();

467520

const stdout = captureStdout();

@@ -527,6 +580,33 @@ describe("voice-call plugin", () => {

527580

}

528581

});

529582583+

it("CLI status lists active calls through the running gateway runtime", async () => {

584+

callGatewayFromCliMock.mockResolvedValueOnce({

585+

found: true,

586+

calls: [{ callId: "gateway-call" }],

587+

});

588+

const program = new Command();

589+

const stdout = captureStdout();

590+

await registerVoiceCallCli(program);

591+592+

try {

593+

await program.parseAsync(["voicecall", "status", "--json"], { from: "user" });

594+

const parsed = JSON.parse(stdout.output()) as {

595+

calls?: Array<{ callId?: string }>;

596+

};

597+

expect(callGatewayFromCliMock).toHaveBeenCalledWith(

598+

"voicecall.status",

599+

{ json: true, timeout: "5000" },

600+

undefined,

601+

{ progress: false },

602+

);

603+

expect(createVoiceCallRuntime).not.toHaveBeenCalled();

604+

expect(parsed.calls).toEqual([expect.objectContaining({ callId: "gateway-call" })]);

605+

} finally {

606+

stdout.restore();

607+

}

608+

});

609+530610

it("CLI smoke dry-runs a live call unless --yes is passed", async () => {

531611

const program = new Command();

532612

const stdout = captureStdout();