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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

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 tts command result assertions · openclaw/op...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main

@@ -41,6 +41,7 @@ vi.mock("../../tts/tts.js", () => ttsMocks);

4141

const { handleTtsCommands } = await import("./commands-tts.js");

4242

const PRIMARY_TTS_PROVIDER = "acme-speech";

4343

const FALLBACK_TTS_PROVIDER = "backup-speech";

44+

type TtsCommandResult = Awaited<ReturnType<typeof handleTtsCommands>>;

44454546

function buildTtsParams(

4647

commandBodyNormalized: string,

@@ -62,6 +63,22 @@ function buildTtsParams(

6263

} as unknown as Parameters<typeof handleTtsCommands>[0];

6364

}

646566+

function expectHandled(result: TtsCommandResult): NonNullable<TtsCommandResult> {

67+

if (!result) {

68+

throw new Error("Expected TTS command to be handled");

69+

}

70+

expect(result.shouldContinue).toBe(false);

71+

return result;

72+

}

73+74+

function expectReply(result: TtsCommandResult): NonNullable<TtsCommandResult>["reply"] {

75+

const handled = expectHandled(result);

76+

if (!handled.reply) {

77+

throw new Error("Expected TTS command to return a reply");

78+

}

79+

return handled.reply;

80+

}

81+6582

describe("handleTtsCommands status fallback reporting", () => {

6683

beforeEach(() => {

6784

vi.clearAllMocks();

@@ -104,14 +121,10 @@ describe("handleTtsCommands status fallback reporting", () => {

104121

});

105122106123

const result = await handleTtsCommands(buildTtsParams("/tts status"), true);

107-

expect(result?.shouldContinue).toBe(false);

108-

expect(result?.reply?.text).toContain(

109-

`Fallback: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`,

110-

);

111-

expect(result?.reply?.text).toContain(

112-

`Attempts: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`,

113-

);

114-

expect(result?.reply?.text).toContain(

124+

const reply = expectReply(result);

125+

expect(reply.text).toContain(`Fallback: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`);

126+

expect(reply.text).toContain(`Attempts: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`);

127+

expect(reply.text).toContain(

115128

`Attempt details: ${PRIMARY_TTS_PROVIDER}:failed(provider_error) 73ms, ${FALLBACK_TTS_PROVIDER}:success(ok) 420ms`,

116129

);

117130

});

@@ -136,14 +149,10 @@ describe("handleTtsCommands status fallback reporting", () => {

136149

});

137150138151

const result = await handleTtsCommands(buildTtsParams("/tts status"), true);

139-

expect(result?.shouldContinue).toBe(false);

140-

expect(result?.reply?.text).toContain("Error: TTS conversion failed");

141-

expect(result?.reply?.text).toContain(

142-

`Attempts: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`,

143-

);

144-

expect(result?.reply?.text).toContain(

145-

`Attempt details: ${PRIMARY_TTS_PROVIDER}:failed(timeout) 999ms`,

146-

);

152+

const reply = expectReply(result);

153+

expect(reply.text).toContain("Error: TTS conversion failed");

154+

expect(reply.text).toContain(`Attempts: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`);

155+

expect(reply.text).toContain(`Attempt details: ${PRIMARY_TTS_PROVIDER}:failed(timeout) 999ms`);

147156

});

148157149158

it("persists fallback metadata from /tts audio and renders it in /tts status", async () => {

@@ -177,19 +186,19 @@ describe("handleTtsCommands status fallback reporting", () => {

177186

});

178187179188

const audioResult = await handleTtsCommands(buildTtsParams("/tts audio hello world"), true);

180-

expect(audioResult?.shouldContinue).toBe(false);

181-

expect(audioResult?.reply?.mediaUrl).toBe("/tmp/fallback.ogg");

189+

const audioReply = expectReply(audioResult);

190+

expect(audioReply.mediaUrl).toBe("/tmp/fallback.ogg");

182191183192

const statusResult = await handleTtsCommands(buildTtsParams("/tts status"), true);

184-

expect(statusResult?.shouldContinue).toBe(false);

185-

expect(statusResult?.reply?.text).toContain(`Provider: ${FALLBACK_TTS_PROVIDER}`);

186-

expect(statusResult?.reply?.text).toContain(

193+

const statusReply = expectReply(statusResult);

194+

expect(statusReply.text).toContain(`Provider: ${FALLBACK_TTS_PROVIDER}`);

195+

expect(statusReply.text).toContain(

187196

`Fallback: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`,

188197

);

189-

expect(statusResult?.reply?.text).toContain(

198+

expect(statusReply.text).toContain(

190199

`Attempts: ${PRIMARY_TTS_PROVIDER} -> ${FALLBACK_TTS_PROVIDER}`,

191200

);

192-

expect(statusResult?.reply?.text).toContain(

201+

expect(statusReply.text).toContain(

193202

`Attempt details: ${PRIMARY_TTS_PROVIDER}:failed(provider_error) 65ms, ${FALLBACK_TTS_PROVIDER}:success(ok) 175ms`,

194203

);

195204

});

@@ -201,8 +210,8 @@ describe("handleTtsCommands status fallback reporting", () => {

201210

} as OpenClawConfig),

202211

true,

203212

);

204-

expect(result?.shouldContinue).toBe(false);

205-

expect(result?.reply?.text).toContain("TTS status");

213+

const reply = expectReply(result);

214+

expect(reply.text).toContain("TTS status");

206215

});

207216208217

it("resolves status config for the active agent", async () => {

@@ -212,7 +221,7 @@ describe("handleTtsCommands status fallback reporting", () => {

212221213222

const result = await handleTtsCommands(buildTtsParams("/tts status", cfg, "reader"), true);

214223215-

expect(result?.shouldContinue).toBe(false);

224+

expectHandled(result);

216225

expect(ttsMocks.resolveTtsConfig).toHaveBeenCalledWith(

217226

cfg,

218227

expect.objectContaining({ agentId: "reader", channelId: "forum" }),

@@ -237,7 +246,7 @@ describe("handleTtsCommands status fallback reporting", () => {

237246

true,

238247

);

239248240-

expect(result?.shouldContinue).toBe(false);

249+

expectHandled(result);

241250

expect(ttsMocks.textToSpeech).toHaveBeenCalledWith(

242251

expect.objectContaining({

243252

text: "hello",

@@ -258,11 +267,11 @@ describe("handleTtsCommands status fallback reporting", () => {

258267

]);

259268260269

const listResult = await handleTtsCommands(buildTtsParams("/tts persona"), true);

261-

expect(listResult?.shouldContinue).toBe(false);

262-

expect(listResult?.reply?.text).toContain("alfred (Alfred) provider=google");

270+

const listReply = expectReply(listResult);

271+

expect(listReply.text).toContain("alfred (Alfred) provider=google");

263272264273

const setResult = await handleTtsCommands(buildTtsParams("/tts persona alfred"), true);

265-

expect(setResult?.shouldContinue).toBe(false);

274+

expectHandled(setResult);

266275

expect(ttsMocks.setTtsPersona).toHaveBeenCalledWith("/tmp/tts-prefs.json", "alfred");

267276

});

268277

@@ -321,8 +330,8 @@ describe("handleTtsCommands status fallback reporting", () => {

321330

true,

322331

);

323332324-

expect(result?.shouldContinue).toBe(false);

325-

expect(result?.reply).toMatchObject({

333+

const reply = expectReply(result);

334+

expect(reply).toMatchObject({

326335

mediaUrl: "/tmp/latest.ogg",

327336

audioAsVoice: true,

328337

spokenText: "latest visible reply",

@@ -359,12 +368,14 @@ describe("handleTtsCommands status fallback reporting", () => {

359368

const params = buildTtsParams("/tts latest", {}, undefined, { sessionEntry, sessionStore });

360369361370

const first = await handleTtsCommands(params, true);

362-

expect(first?.reply?.mediaUrl).toBe("/tmp/latest.ogg");

371+

const firstReply = expectReply(first);

372+

expect(firstReply.mediaUrl).toBe("/tmp/latest.ogg");

363373

ttsMocks.textToSpeech.mockClear();

364374365375

const second = await handleTtsCommands(params, true);

366376367-

expect(second?.reply?.text).toContain("already sent");

377+

const secondReply = expectReply(second);

378+

expect(secondReply.text).toContain("already sent");

368379

expect(ttsMocks.textToSpeech).not.toHaveBeenCalled();

369380

});

370381

@@ -376,21 +387,24 @@ describe("handleTtsCommands status fallback reporting", () => {

376387

buildTtsParams("/tts chat on", {}, undefined, { sessionEntry, sessionStore }),

377388

true,

378389

);

379-

expect(onResult?.reply?.text).toContain("enabled for this chat");

390+

const onReply = expectReply(onResult);

391+

expect(onReply.text).toContain("enabled for this chat");

380392

expect(sessionEntry.ttsAuto).toBe("always");

381393382394

const offResult = await handleTtsCommands(

383395

buildTtsParams("/tts chat off", {}, undefined, { sessionEntry, sessionStore }),

384396

true,

385397

);

386-

expect(offResult?.reply?.text).toContain("disabled for this chat");

398+

const offReply = expectReply(offResult);

399+

expect(offReply.text).toContain("disabled for this chat");

387400

expect(sessionEntry.ttsAuto).toBe("off");

388401389402

const clearResult = await handleTtsCommands(

390403

buildTtsParams("/tts chat default", {}, undefined, { sessionEntry, sessionStore }),

391404

true,

392405

);

393-

expect(clearResult?.reply?.text).toContain("override cleared");

406+

const clearReply = expectReply(clearResult);

407+

expect(clearReply.text).toContain("override cleared");

394408

expect(sessionEntry.ttsAuto).toBeUndefined();

395409

});

396410

});