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

推荐订阅源

腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
The Cloudflare Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
罗磊的独立博客
V
Visual Studio Blog
A
About on SuperTechFans
IT之家
IT之家
P
Proofpoint News Feed
B
Blog
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Y
Y Combinator 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: keep acp telegram replies durable · openclaw/opencla...
shakkernerd · 2026-05-08 · via Recent Commits to openclaw:main

@@ -377,7 +377,11 @@ describe("tryDispatchAcpReply", () => {

377377

channelPluginMocks.getChannelPlugin.mockClear();

378378

messageActionMocks.runMessageAction.mockReset();

379379

messageActionMocks.runMessageAction.mockResolvedValue({ ok: true as const });

380-

ttsMocks.maybeApplyTtsToPayload.mockClear();

380+

ttsMocks.maybeApplyTtsToPayload.mockReset();

381+

ttsMocks.maybeApplyTtsToPayload.mockImplementation(async (paramsUnknown: unknown) => {

382+

const params = paramsUnknown as { payload: unknown };

383+

return params.payload;

384+

});

381385

ttsMocks.resolveTtsConfig.mockReset();

382386

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

383387

mediaUnderstandingMocks.applyMediaUnderstanding.mockReset();

@@ -393,7 +397,7 @@ describe("tryDispatchAcpReply", () => {

393397

globalThis.fetch = originalFetch;

394398

});

395399396-

it("routes ACP block output to originating channel", async () => {

400+

it("routes default ACP output to the originating channel as a final reply", async () => {

397401

setReadyAcpResolution();

398402

mockRoutedTextTurn("hello");

399403

@@ -404,14 +408,17 @@ describe("tryDispatchAcpReply", () => {

404408

shouldRouteToOriginating: true,

405409

});

406410407-

expect(result?.counts.block).toBe(1);

411+

expect(result?.counts.block).toBe(0);

412+

expect(result?.counts.final).toBe(1);

408413

expect(routeMocks.routeReply).toHaveBeenCalledWith(

409414

expect.objectContaining({

410415

channel: "telegram",

411416

to: "telegram:thread-1",

417+

payload: expect.objectContaining({ text: "hello" }),

412418

}),

413419

);

414420

expect(dispatcher.sendBlockReply).not.toHaveBeenCalled();

421+

expect(dispatcher.sendFinalReply).not.toHaveBeenCalled();

415422

});

416423417424

it("persists ACP transcript when routed delivery fails", async () => {

@@ -1187,18 +1194,18 @@ describe("tryDispatchAcpReply", () => {

11871194

);

11881195

});

118911961190-

it("does not deliver final fallback text when routed block text was already visible", async () => {

1197+

it("does not add a fallback when routed ACP text was already delivered as final", async () => {

11911198

setReadyAcpResolution();

11921199

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

11931200

queueTtsReplies({ text: "CODEX_OK" }, {} as ReturnType<typeof ttsMocks.maybeApplyTtsToPayload>);

11941201

const { result } = await runRoutedAcpTextTurn("CODEX_OK");

119512021196-

expect(result?.counts.block).toBe(1);

1197-

expect(result?.counts.final).toBe(0);

1203+

expect(result?.counts.block).toBe(0);

1204+

expect(result?.counts.final).toBe(1);

11981205

expect(routeMocks.routeReply).toHaveBeenCalledTimes(1);

11991206

});

120012071201-

it("does not deliver final fallback text when routed discord block text was already visible", async () => {

1208+

it("routes default ACP text as one final reply to Discord", async () => {

12021209

setReadyAcpResolution();

12031210

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

12041211

queueTtsReplies(

@@ -1216,8 +1223,8 @@ describe("tryDispatchAcpReply", () => {

12161223

originatingTo: "channel:1478836151241412759",

12171224

});

121812251219-

expect(result?.counts.block).toBe(1);

1220-

expect(result?.counts.final).toBe(0);

1226+

expect(result?.counts.block).toBe(0);

1227+

expect(result?.counts.final).toBe(1);

12211228

expect(routeMocks.routeReply).toHaveBeenCalledTimes(1);

12221229

expect(routeMocks.routeReply).toHaveBeenCalledWith(

12231230

expect.objectContaining({

@@ -1228,7 +1235,7 @@ describe("tryDispatchAcpReply", () => {

12281235

);

12291236

});

123012371231-

it("does not deliver final fallback text when routed Slack block text was already visible", async () => {

1238+

it("routes default ACP text as one final reply to Slack", async () => {

12321239

setReadyAcpResolution();

12331240

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

12341241

queueTtsReplies(

@@ -1246,8 +1253,8 @@ describe("tryDispatchAcpReply", () => {

12461253

originatingTo: "channel:C123",

12471254

});

124812551249-

expect(result?.counts.block).toBe(1);

1250-

expect(result?.counts.final).toBe(0);

1256+

expect(result?.counts.block).toBe(0);

1257+

expect(result?.counts.final).toBe(1);

12511258

expect(routeMocks.routeReply).toHaveBeenCalledTimes(1);

12521259

expect(routeMocks.routeReply).toHaveBeenCalledWith(

12531260

expect.objectContaining({

@@ -1258,7 +1265,7 @@ describe("tryDispatchAcpReply", () => {

12581265

);

12591266

});

126012671261-

it("does not deliver final fallback text when direct block text was already visible", async () => {

1268+

it("delivers default Telegram ACP text directly as a final reply", async () => {

12621269

setReadyAcpResolution();

12631270

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

12641271

queueTtsReplies({ text: "CODEX_OK" }, {} as ReturnType<typeof ttsMocks.maybeApplyTtsToPayload>);

@@ -1278,13 +1285,14 @@ describe("tryDispatchAcpReply", () => {

12781285

expect(result?.counts.final).toBe(0);

12791286

expect(counts.block).toBe(0);

12801287

expect(counts.final).toBe(0);

1281-

expect(dispatcher.sendBlockReply).toHaveBeenCalledWith(

1288+

expect(result?.queuedFinal).toBe(true);

1289+

expect(dispatcher.sendBlockReply).not.toHaveBeenCalled();

1290+

expect(dispatcher.sendFinalReply).toHaveBeenCalledWith(

12821291

expect.objectContaining({ text: "CODEX_OK" }),

12831292

);

1284-

expect(dispatcher.sendFinalReply).not.toHaveBeenCalled();

12851293

});

128612941287-

it("does not deliver final fallback text when direct discord block text was already visible", async () => {

1295+

it("delivers default Discord ACP text directly as a final reply", async () => {

12881296

setReadyAcpResolution();

12891297

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

12901298

queueTtsReplies(

@@ -1307,13 +1315,14 @@ describe("tryDispatchAcpReply", () => {

13071315

expect(result?.counts.final).toBe(0);

13081316

expect(counts.block).toBe(0);

13091317

expect(counts.final).toBe(0);

1310-

expect(dispatcher.sendBlockReply).toHaveBeenCalledWith(

1318+

expect(result?.queuedFinal).toBe(true);

1319+

expect(dispatcher.sendBlockReply).not.toHaveBeenCalled();

1320+

expect(dispatcher.sendFinalReply).toHaveBeenCalledWith(

13111321

expect.objectContaining({ text: "Received." }),

13121322

);

1313-

expect(dispatcher.sendFinalReply).not.toHaveBeenCalled();

13141323

});

131513241316-

it("does not deliver final fallback text when direct Slack block text was already visible", async () => {

1325+

it("delivers default Slack ACP text directly as a final reply", async () => {

13171326

setReadyAcpResolution();

13181327

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

13191328

queueTtsReplies(

@@ -1336,13 +1345,14 @@ describe("tryDispatchAcpReply", () => {

13361345

expect(result?.counts.final).toBe(0);

13371346

expect(counts.block).toBe(0);

13381347

expect(counts.final).toBe(0);

1339-

expect(dispatcher.sendBlockReply).toHaveBeenCalledWith(

1348+

expect(result?.queuedFinal).toBe(true);

1349+

expect(dispatcher.sendBlockReply).not.toHaveBeenCalled();

1350+

expect(dispatcher.sendFinalReply).toHaveBeenCalledWith(

13401351

expect.objectContaining({ text: "Slack says hi." }),

13411352

);

1342-

expect(dispatcher.sendFinalReply).not.toHaveBeenCalled();

13431353

});

134413541345-

it("treats visible telegram ACP block delivery as a successful final response", async () => {

1355+

it("treats Telegram ACP final delivery as a successful final response", async () => {

13461356

setReadyAcpResolution();

13471357

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

13481358

queueTtsReplies({ text: "CODEX_OK" }, {} as ReturnType<typeof ttsMocks.maybeApplyTtsToPayload>);

@@ -1359,13 +1369,13 @@ describe("tryDispatchAcpReply", () => {

13591369

});

1360137013611371

expect(result?.queuedFinal).toBe(true);

1362-

expect(dispatcher.sendBlockReply).toHaveBeenCalledWith(

1372+

expect(dispatcher.sendBlockReply).not.toHaveBeenCalled();

1373+

expect(dispatcher.sendFinalReply).toHaveBeenCalledWith(

13631374

expect.objectContaining({ text: "CODEX_OK" }),

13641375

);

1365-

expect(dispatcher.sendFinalReply).not.toHaveBeenCalled();

13661376

});

136713771368-

it("preserves final fallback when direct block text is filtered by channels without a visibility override", async () => {

1378+

it("delivers default ACP text as final for channels without a visibility override", async () => {

13691379

setReadyAcpResolution();

13701380

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

13711381

queueTtsReplies({ text: "CODEX_OK" }, {} as ReturnType<typeof ttsMocks.maybeApplyTtsToPayload>);

@@ -1385,9 +1395,8 @@ describe("tryDispatchAcpReply", () => {

13851395

expect(result?.counts.final).toBe(0);

13861396

expect(counts.block).toBe(0);

13871397

expect(counts.final).toBe(0);

1388-

expect(dispatcher.sendBlockReply).toHaveBeenCalledWith(

1389-

expect.objectContaining({ text: "CODEX_OK" }),

1390-

);

1398+

expect(result?.queuedFinal).toBe(true);

1399+

expect(dispatcher.sendBlockReply).not.toHaveBeenCalled();

13911400

expect(dispatcher.sendFinalReply).toHaveBeenCalledWith(

13921401

expect.objectContaining({ text: "CODEX_OK" }),

13931402

);

@@ -1450,6 +1459,12 @@ describe("tryDispatchAcpReply", () => {

14501459

it("honors the configured default account for ACP projector chunking when AccountId is omitted", async () => {

14511460

setReadyAcpResolution();

14521461

const cfg = createAcpTestConfig({

1462+

acp: {

1463+

enabled: true,

1464+

stream: {

1465+

deliveryMode: "live",

1466+

},

1467+

},

14531468

channels: {

14541469

discord: {

14551470

defaultAccount: "work",

@@ -1489,7 +1504,7 @@ describe("tryDispatchAcpReply", () => {

14891504

);

14901505

});

149115061492-

it("does not add a second routed payload when routed block text was already visible", async () => {

1507+

it("does not add a second routed payload when routed final text was already visible", async () => {

14931508

setReadyAcpResolution();

14941509

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "final" });

14951510

queueTtsReplies({ text: "Task completed" }, {

@@ -1498,21 +1513,21 @@ describe("tryDispatchAcpReply", () => {

14981513

} as MockTtsReply);

14991514

const { result } = await runRoutedAcpTextTurn("Task completed");

150015151501-

expect(result?.counts.block).toBe(1);

1502-

expect(result?.counts.final).toBe(0);

1516+

expect(result?.counts.block).toBe(0);

1517+

expect(result?.counts.final).toBe(1);

15031518

expect(routeMocks.routeReply).toHaveBeenCalledTimes(1);

15041519

expectRoutedPayload(1, {

15051520

text: "Task completed",

15061521

});

15071522

});

150815231509-

it("skips fallback when TTS mode is all (blocks already processed with TTS)", async () => {

1524+

it("skips fallback when TTS mode is all and final delivery already succeeded", async () => {

15101525

setReadyAcpResolution();

15111526

ttsMocks.resolveTtsConfig.mockReturnValue({ mode: "all" });

15121527

const { result } = await runRoutedAcpTextTurn("Response");

151315281514-

expect(result?.counts.block).toBe(1);

1515-

expect(result?.counts.final).toBe(0);

1529+

expect(result?.counts.block).toBe(0);

1530+

expect(result?.counts.final).toBe(1);

15161531

expect(routeMocks.routeReply).toHaveBeenCalledTimes(1);

15171532

});

15181533