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

推荐订阅源

J
Java Code Geeks
S
SegmentFault 最新的问题
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
I
InfoQ
U
Unit 42
博客园_首页
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 聂微东
T
Tailwind CSS 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
test: tighten chat item assertions · openclaw/openclaw@69...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -27,6 +27,23 @@ function firstMessageContent(group: MessageGroup): unknown[] {

2727

return Array.isArray(message.content) ? message.content : [];

2828

}

292930+

function requireRecord(value: unknown): Record<string, unknown> {

31+

expect(value).toBeTruthy();

32+

expect(typeof value).toBe("object");

33+

expect(Array.isArray(value)).toBe(false);

34+

return value as Record<string, unknown>;

35+

}

36+37+

function requireGroup(value: unknown): MessageGroup {

38+

const record = requireRecord(value);

39+

expect(record.kind).toBe("group");

40+

return value as MessageGroup;

41+

}

42+43+

function messageRecord(group: MessageGroup, index = 0): Record<string, unknown> {

44+

return requireRecord(group.messages[index]?.message);

45+

}

46+3047

describe("buildChatItems", () => {

3148

it("keeps consecutive user messages from different senders in separate groups", () => {

3249

const groups = messageGroups({

@@ -61,7 +78,7 @@ describe("buildChatItems", () => {

61786279

expect(groups).toHaveLength(1);

6380

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

64-

expect(groups[0].messages[0]).toMatchObject({ duplicateCount: 3 });

81+

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

6582

});

66836784

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

@@ -77,9 +94,9 @@ describe("buildChatItems", () => {

7794

expect(groups).toHaveLength(2);

7895

expect(groups[0].role).toBe("user");

7996

expect(groups[1].role).toBe("assistant");

80-

expect(groups[1].messages[0].message).toMatchObject({

81-

content: [{ type: "text", text: "Visible reply" }],

82-

});

97+

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

98+

{ type: "text", text: "Visible reply" },

99+

]);

83100

});

8410185102

it("suppresses assistant HEARTBEAT_OK acknowledgements that carry hidden thinking blocks", () => {

@@ -118,12 +135,10 @@ describe("buildChatItems", () => {

118135119136

expect(groups).toHaveLength(1);

120137

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

121-

expect(groups[0].messages[0].message).toMatchObject({

122-

content: [

123-

{ type: "thinking", thinking: "Useful hidden reasoning." },

124-

{ type: "text", text: "Visible reply" },

125-

],

126-

});

138+

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

139+

{ type: "thinking", thinking: "Useful hidden reasoning." },

140+

{ type: "text", text: "Visible reply" },

141+

]);

127142

});

128143129144

it("keeps HEARTBEAT_OK turns that carry visible non-text content", () => {

@@ -211,24 +226,14 @@ describe("buildChatItems", () => {

211226212227

const groups = items.filter((item) => item.kind === "group");

213228214-

expect(items[0]).toMatchObject({

215-

kind: "group",

216-

messages: [

217-

expect.objectContaining({

218-

message: expect.objectContaining({

219-

role: "system",

220-

content: "Showing last 100 messages (5 hidden).",

221-

}),

222-

}),

223-

],

224-

});

229+

const noticeGroup = requireGroup(items[0]);

230+

expect(noticeGroup.messages).toHaveLength(1);

231+

const noticeMessage = messageRecord(noticeGroup);

232+

expect(noticeMessage.role).toBe("system");

233+

expect(noticeMessage.content).toBe("Showing last 100 messages (5 hidden).");

225234

expect(groups).toHaveLength(101);

226-

expect(groups[1].messages[0].message).toMatchObject({

227-

content: "message 5",

228-

});

229-

expect(groups.at(-1)?.messages[0].message).toMatchObject({

230-

content: "message 104",

231-

});

235+

expect(messageRecord(groups[1]).content).toBe("message 5");

236+

expect(messageRecord(groups[groups.length - 1]).content).toBe("message 104");

232237

});

233238234239

it("does not collapse duplicate text messages separated by another message", () => {

@@ -435,12 +440,10 @@ describe("buildChatItems", () => {

435440436441

const canvasBlocks = canvasBlocksIn(groups[0]);

437442

expect(canvasBlocks).toHaveLength(1);

438-

expect(canvasBlocks[0]).toMatchObject({

439-

preview: {

440-

viewId: "cv_streamed_artifact",

441-

title: "Streamed demo",

442-

},

443-

});

443+

const canvasBlock = requireRecord(canvasBlocks[0]);

444+

const preview = requireRecord(canvasBlock.preview);

445+

expect(preview.viewId).toBe("cv_streamed_artifact");

446+

expect(preview.title).toBe("Streamed demo");

444447

});

445448446449

it("explains compaction boundaries and exposes the checkpoint action", () => {

@@ -460,16 +463,15 @@ describe("buildChatItems", () => {

460463

);

461464462465

expect(items).toHaveLength(1);

463-

expect(items[0]).toMatchObject({

464-

kind: "divider",

465-

label: "Compacted history",

466-

description:

467-

"Earlier turns are preserved in a compaction checkpoint. Open session checkpoints to branch or restore that pre-compaction view.",

468-

action: {

469-

kind: "session-checkpoints",

470-

label: "Open checkpoints",

471-

},

472-

});

466+

const divider = requireRecord(items[0]);

467+

expect(divider.kind).toBe("divider");

468+

expect(divider.label).toBe("Compacted history");

469+

expect(divider.description).toBe(

470+

"Earlier turns are preserved in a compaction checkpoint. Open session checkpoints to branch or restore that pre-compaction view.",

471+

);

472+

const action = requireRecord(divider.action);

473+

expect(action.kind).toBe("session-checkpoints");

474+

expect(action.label).toBe("Open checkpoints");

473475

});

474476

});

475477