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

推荐订阅源

Recent Announcements
Recent Announcements
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园_首页
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
月光博客
月光博客
小众软件
小众软件
S
SegmentFault 最新的问题
量子位
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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
feat(whatsapp): adopt replyToMode quoting (#62305) · open...
mcaxtr · 2026-04-23 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import { logVerbose } from "openclaw/plugin-sdk/runtime-env";

22

import { sleep } from "openclaw/plugin-sdk/text-runtime";

33

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

44

import { loadWebMedia } from "../media.js";

5+

import { cacheInboundMessageMeta } from "../quoted-message.js";

56

import type { WebInboundMsg } from "./types.js";

6778

vi.mock("openclaw/plugin-sdk/runtime-env", async () => {

@@ -35,7 +36,12 @@ function makeMsg(): WebInboundMsg {

3536

return {

3637

from: "+10000000000",

3738

to: "+20000000000",

39+

accountId: "work",

40+

chatId: "15551234567@s.whatsapp.net",

41+

chatType: "group",

3842

id: "msg-1",

43+

body: "latest batch body",

44+

senderJid: "222@s.whatsapp.net",

3945

reply: vi.fn(async () => undefined),

4046

sendMedia: vi.fn(async () => undefined),

4147

} as unknown as WebInboundMsg;

@@ -120,6 +126,7 @@ describe("deliverWebReply", () => {

120126

expect(msg.reply).toHaveBeenCalledTimes(1);

121127

expect(msg.reply).toHaveBeenCalledWith(

122128

"Intro line\nReasoning: appears in content but is not a prefix",

129+

undefined,

123130

);

124131

});

125132

@@ -136,11 +143,59 @@ describe("deliverWebReply", () => {

136143

});

137144138145

expect(msg.reply).toHaveBeenCalledTimes(2);

139-

expect(msg.reply).toHaveBeenNthCalledWith(1, "aaa");

140-

expect(msg.reply).toHaveBeenNthCalledWith(2, "aaa");

146+

expect(msg.reply).toHaveBeenNthCalledWith(1, "aaa", undefined);

147+

expect(msg.reply).toHaveBeenNthCalledWith(2, "aaa", undefined);

141148

expect(replyLogger.info).toHaveBeenCalledWith(expect.any(Object), "auto-reply sent (text)");

142149

});

143150151+

it("keeps quote threading on every text chunk for a threaded reply", async () => {

152+

const msg = makeMsg();

153+

cacheInboundMessageMeta("work", "15551234567@s.whatsapp.net", "reply-1", {

154+

participant: "111@s.whatsapp.net",

155+

body: "quoted body",

156+

fromMe: true,

157+

});

158+159+

await deliverWebReply({

160+

replyResult: { text: "aaaaaa", replyToId: "reply-1" },

161+

msg,

162+

maxMediaBytes: 1024 * 1024,

163+

textLimit: 3,

164+

replyLogger,

165+

skipLog: true,

166+

});

167+168+

expect(msg.reply).toHaveBeenCalledTimes(2);

169+

expect(msg.reply).toHaveBeenNthCalledWith(

170+

1,

171+

"aaa",

172+

expect.objectContaining({

173+

quoted: expect.objectContaining({

174+

key: expect.objectContaining({

175+

id: "reply-1",

176+

fromMe: true,

177+

participant: "111@s.whatsapp.net",

178+

}),

179+

message: { conversation: "quoted body" },

180+

}),

181+

}),

182+

);

183+

expect(msg.reply).toHaveBeenNthCalledWith(

184+

2,

185+

"aaa",

186+

expect.objectContaining({

187+

quoted: expect.objectContaining({

188+

key: expect.objectContaining({

189+

id: "reply-1",

190+

fromMe: true,

191+

participant: "111@s.whatsapp.net",

192+

}),

193+

message: { conversation: "quoted body" },

194+

}),

195+

}),

196+

);

197+

});

198+144199

it.each(["connection closed", "operation timed out"])(

145200

"retries text send on transient failure: %s",

146201

async (errorMessage) => {

@@ -188,12 +243,67 @@ describe("deliverWebReply", () => {

188243

caption: "aaa",

189244

mimetype: "image/jpeg",

190245

}),

246+

undefined,

191247

);

192-

expect(msg.reply).toHaveBeenCalledWith("aaa");

248+

expect(msg.reply).toHaveBeenCalledWith("aaa", undefined);

193249

expect(replyLogger.info).toHaveBeenCalledWith(expect.any(Object), "auto-reply sent (media)");

194250

expect(logVerbose).toHaveBeenCalled();

195251

});

196252253+

it("keeps quote threading on media and trailing text chunks for a threaded reply", async () => {

254+

const msg = makeMsg();

255+

mockLoadedImageMedia();

256+

cacheInboundMessageMeta("work", "15551234567@s.whatsapp.net", "reply-2", {

257+

participant: "111@s.whatsapp.net",

258+

body: "quoted media body",

259+

fromMe: true,

260+

});

261+262+

await deliverWebReply({

263+

replyResult: {

264+

text: "captiontrail",

265+

mediaUrl: "http://example.com/img.jpg",

266+

replyToId: "reply-2",

267+

},

268+

msg,

269+

maxMediaBytes: 1024 * 1024,

270+

textLimit: 7,

271+

replyLogger,

272+

skipLog: true,

273+

});

274+275+

expect(msg.sendMedia).toHaveBeenCalledWith(

276+

expect.objectContaining({

277+

image: expect.any(Buffer),

278+

caption: "caption",

279+

mimetype: "image/jpeg",

280+

}),

281+

expect.objectContaining({

282+

quoted: expect.objectContaining({

283+

key: expect.objectContaining({

284+

id: "reply-2",

285+

fromMe: true,

286+

participant: "111@s.whatsapp.net",

287+

}),

288+

message: { conversation: "quoted media body" },

289+

}),

290+

}),

291+

);

292+

expect(msg.reply).toHaveBeenCalledWith(

293+

"trail",

294+

expect.objectContaining({

295+

quoted: expect.objectContaining({

296+

key: expect.objectContaining({

297+

id: "reply-2",

298+

fromMe: true,

299+

participant: "111@s.whatsapp.net",

300+

}),

301+

message: { conversation: "quoted media body" },

302+

}),

303+

}),

304+

);

305+

});

306+197307

it("retries media send on transient failure", async () => {

198308

const msg = makeMsg();

199309

mockLoadedImageMedia();

@@ -265,6 +375,7 @@ describe("deliverWebReply", () => {

265375

mimetype: "audio/ogg",

266376

caption: "cap",

267377

}),

378+

undefined,

268379

);

269380

});

270381

@@ -293,6 +404,7 @@ describe("deliverWebReply", () => {

293404

caption: "cap",

294405

mimetype: "video/mp4",

295406

}),

407+

undefined,

296408

);

297409

});

298410

@@ -323,6 +435,7 @@ describe("deliverWebReply", () => {

323435

caption: "cap",

324436

mimetype: "application/octet-stream",

325437

}),

438+

undefined,

326439

);

327440

});

328441

});