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

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
P
Proofpoint News Feed
D
Docker
J
Java Code Geeks
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
腾讯CDC
罗磊的独立博客
U
Unit 42
爱范儿
爱范儿
Vercel News
Vercel News
MyScale Blog
MyScale 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 #93044: control-ui webchat double-renders agent repli...
zhangguiping · 2026-06-16 · via Recent Commits to openclaw:main

@@ -142,6 +142,274 @@ describe("buildChatItems", () => {

142142

expect(groups[0].messages[0].duplicateCount).toBe(3);

143143

});

144144145+

it("deduplicates relay-labeled assistant copies by source message id", () => {

146+

const groups = messageGroups({

147+

messages: [

148+

{

149+

id: "reply-1",

150+

role: "assistant",

151+

content: [{ type: "text", text: "Parzival There it is." }],

152+

senderLabel: "Parzival",

153+

timestamp: 1,

154+

},

155+

{

156+

id: "reply-1",

157+

role: "assistant",

158+

content: [{ type: "text", text: "There it is." }],

159+

timestamp: 2,

160+

},

161+

],

162+

});

163+164+

expect(groups).toHaveLength(1);

165+

expect(groups[0].senderLabel).toBeNull();

166+

expect(groups[0].messages).toHaveLength(1);

167+

expect(messageRecord(groups[0]).content).toStrictEqual([

168+

{ type: "text", text: "There it is." },

169+

]);

170+

});

171+172+

it("deduplicates relay-labeled assistant copies by event messageId", () => {

173+

const groups = messageGroups({

174+

messages: [

175+

{

176+

messageId: "reply-2",

177+

role: "assistant",

178+

content: [{ type: "text", text: "Parzival Found it." }],

179+

senderLabel: "Parzival",

180+

timestamp: 1,

181+

},

182+

{

183+

messageId: "reply-2",

184+

role: "assistant",

185+

content: [{ type: "text", text: "Found it." }],

186+

timestamp: 2,

187+

},

188+

],

189+

});

190+191+

expect(groups).toHaveLength(1);

192+

expect(groups[0].senderLabel).toBeNull();

193+

expect(groups[0].messages).toHaveLength(1);

194+

expect(messageRecord(groups[0]).content).toStrictEqual([{ type: "text", text: "Found it." }]);

195+

});

196+197+

it("deduplicates relay-labeled assistant copies by OpenClaw transcript metadata id", () => {

198+

const groups = messageGroups({

199+

messages: [

200+

{

201+

__openclaw: { id: "reply-3" },

202+

role: "assistant",

203+

content: [{ type: "text", text: "Parzival On it." }],

204+

senderLabel: "Parzival",

205+

timestamp: 1,

206+

},

207+

{

208+

__openclaw: { id: "reply-3" },

209+

role: "assistant",

210+

content: [{ type: "text", text: "On it." }],

211+

timestamp: 2,

212+

},

213+

],

214+

});

215+216+

expect(groups).toHaveLength(1);

217+

expect(groups[0].senderLabel).toBeNull();

218+

expect(groups[0].messages).toHaveLength(1);

219+

expect(messageRecord(groups[0]).content).toStrictEqual([{ type: "text", text: "On it." }]);

220+

});

221+222+

it("deduplicates relay-labeled assistant copies by OpenClaw metadata before surface ids", () => {

223+

const groups = messageGroups({

224+

messages: [

225+

{

226+

id: "relay-surface-copy",

227+

__openclaw: { id: "reply-4" },

228+

role: "assistant",

229+

content: [{ type: "text", text: "Parzival Ship it." }],

230+

senderLabel: "Parzival",

231+

timestamp: 1,

232+

},

233+

{

234+

id: "native-surface-copy",

235+

__openclaw: { id: "reply-4" },

236+

role: "assistant",

237+

content: [{ type: "text", text: "Ship it." }],

238+

timestamp: 2,

239+

},

240+

],

241+

});

242+243+

expect(groups).toHaveLength(1);

244+

expect(groups[0].senderLabel).toBeNull();

245+

expect(groups[0].messages).toHaveLength(1);

246+

expect(messageRecord(groups[0]).content).toStrictEqual([{ type: "text", text: "Ship it." }]);

247+

});

248+249+

it("keeps native assistant updates separate when source message id repeats with new text", () => {

250+

const groups = messageGroups({

251+

messages: [

252+

{

253+

__openclaw: { id: "reply-5" },

254+

role: "assistant",

255+

content: [{ type: "text", text: "Draft one" }],

256+

timestamp: 1,

257+

},

258+

{

259+

__openclaw: { id: "reply-5" },

260+

role: "assistant",

261+

content: [{ type: "text", text: "Draft two" }],

262+

timestamp: 2,

263+

},

264+

],

265+

});

266+267+

expect(groups).toHaveLength(1);

268+

expect(groups[0].messages).toHaveLength(2);

269+

expect(messageRecord(groups[0], 0).content).toStrictEqual([

270+

{ type: "text", text: "Draft one" },

271+

]);

272+

expect(messageRecord(groups[0], 1).content).toStrictEqual([

273+

{ type: "text", text: "Draft two" },

274+

]);

275+

});

276+277+

it("keeps formatting-only assistant updates separate for the same source message", () => {

278+

const groups = messageGroups({

279+

messages: [

280+

{

281+

__openclaw: { id: "reply-formatted" },

282+

role: "assistant",

283+

content: [{ type: "text", text: "Parzival first\n\nsecond" }],

284+

senderLabel: "Parzival",

285+

timestamp: 1,

286+

},

287+

{

288+

__openclaw: { id: "reply-formatted" },

289+

role: "assistant",

290+

content: [{ type: "text", text: "first second" }],

291+

timestamp: 2,

292+

},

293+

],

294+

});

295+296+

expect(groups).toHaveLength(2);

297+

expect(messageRecord(groups[0]).content).toStrictEqual([

298+

{ type: "text", text: "Parzival first\n\nsecond" },

299+

]);

300+

expect(messageRecord(groups[1]).content).toStrictEqual([

301+

{ type: "text", text: "first second" },

302+

]);

303+

});

304+305+

it("keeps differently cased sender text separate for the same source message", () => {

306+

const groups = messageGroups({

307+

messages: [

308+

{

309+

__openclaw: { id: "reply-case-change" },

310+

role: "assistant",

311+

content: [{ type: "text", text: "PARZIVAL answer" }],

312+

senderLabel: "Parzival",

313+

timestamp: 1,

314+

},

315+

{

316+

__openclaw: { id: "reply-case-change" },

317+

role: "assistant",

318+

content: [{ type: "text", text: "answer" }],

319+

timestamp: 2,

320+

},

321+

],

322+

});

323+324+

expect(groups).toHaveLength(2);

325+

expect(messageRecord(groups[0]).content).toStrictEqual([

326+

{ type: "text", text: "PARZIVAL answer" },

327+

]);

328+

expect(messageRecord(groups[1]).content).toStrictEqual([{ type: "text", text: "answer" }]);

329+

});

330+331+

it("keeps relay-labeled assistant updates separate when source message id repeats with new text", () => {

332+

const groups = messageGroups({

333+

messages: [

334+

{

335+

__openclaw: { id: "reply-6" },

336+

role: "assistant",

337+

content: [{ type: "text", text: "Parzival Draft one" }],

338+

senderLabel: "Parzival",

339+

timestamp: 1,

340+

},

341+

{

342+

__openclaw: { id: "reply-6" },

343+

role: "assistant",

344+

content: [{ type: "text", text: "Parzival Draft two" }],

345+

senderLabel: "Parzival",

346+

timestamp: 2,

347+

},

348+

],

349+

});

350+351+

expect(groups).toHaveLength(1);

352+

expect(groups[0].senderLabel).toBe("Parzival");

353+

expect(groups[0].messages).toHaveLength(2);

354+

expect(messageRecord(groups[0], 0).content).toStrictEqual([

355+

{ type: "text", text: "Parzival Draft one" },

356+

]);

357+

expect(messageRecord(groups[0], 1).content).toStrictEqual([

358+

{ type: "text", text: "Parzival Draft two" },

359+

]);

360+

});

361+362+

it("keeps identical assistant text separate when source message ids differ", () => {

363+

const groups = messageGroups({

364+

messages: [

365+

{

366+

id: "reply-7",

367+

role: "assistant",

368+

content: [{ type: "text", text: "Same update" }],

369+

senderLabel: "Parzival",

370+

timestamp: 1,

371+

},

372+

{

373+

id: "reply-8",

374+

role: "assistant",

375+

content: [{ type: "text", text: "Same update" }],

376+

senderLabel: "Parzival",

377+

timestamp: 2,

378+

},

379+

],

380+

});

381+382+

expect(groups).toHaveLength(1);

383+

expect(groups[0].messages).toHaveLength(2);

384+

expect(groups[0].messages[0].duplicateCount).toBeUndefined();

385+

expect(groups[0].messages[1].duplicateCount).toBeUndefined();

386+

});

387+388+

it("keeps same-id user relay copies separate so sender identity is preserved", () => {

389+

const groups = messageGroups({

390+

messages: [

391+

{

392+

__openclaw: { id: "user-1" },

393+

role: "user",

394+

content: [{ type: "text", text: "Alice hello" }],

395+

senderLabel: "Alice",

396+

timestamp: 1,

397+

},

398+

{

399+

__openclaw: { id: "user-1" },

400+

role: "user",

401+

content: [{ type: "text", text: "hello" }],

402+

timestamp: 2,

403+

},

404+

],

405+

});

406+407+

expect(groups).toHaveLength(2);

408+

expect(groups.map((group) => group.senderLabel)).toEqual(["Alice", null]);

409+

expect(groups[0].messages).toHaveLength(1);

410+

expect(groups[1].messages).toHaveLength(1);

411+

});

412+145413

it("suppresses assistant HEARTBEAT_OK acknowledgements before rendering history", () => {

146414

const groups = messageGroups({

147415

messages: [