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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - 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 history image prune assertions · openclaw/o...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -19,14 +19,27 @@ function expectArrayMessageContent(

1919

return message.content as Array<{ type: string; text?: string; data?: string }>;

2020

}

212122+

function expectContentBlock(

23+

block: { type: string; text?: string; data?: string } | undefined,

24+

expected: { type: string; text?: string; data?: string },

25+

) {

26+

expect(block?.type).toBe(expected.type);

27+

if ("text" in expected) {

28+

expect(block?.text).toBe(expected.text);

29+

}

30+

if ("data" in expected) {

31+

expect(block?.data).toBe(expected.data);

32+

}

33+

}

34+2235

function expectPrunedImageMessage(

2336

messages: AgentMessage[],

2437

errorMessage: string,

2538

): Array<{ type: string; text?: string; data?: string }> {

2639

const pruned = expectPrunedMessages(messages);

2740

const content = expectArrayMessageContent(pruned[0], errorMessage);

2841

expect(content).toHaveLength(2);

29-

expect(content[1]).toMatchObject({ type: "text", text: PRUNED_HISTORY_IMAGE_MARKER });

42+

expectContentBlock(content[1], { type: "text", text: PRUNED_HISTORY_IMAGE_MARKER });

3043

return content;

3144

}

3245

@@ -45,7 +58,7 @@ function expectImageMessagePreserved(messages: AgentMessage[], errorMessage: str

45584659

expect(pruned).toBeNull();

4760

const content = expectArrayMessageContent(messages[0], errorMessage);

48-

expect(content[1]).toMatchObject({ type: "image", data: "abc" });

61+

expectContentBlock(content[1], { type: "image", data: "abc" });

4962

}

50635164

function oldEnoughTail(): AgentMessage[] {

@@ -117,13 +130,13 @@ describe("pruneProcessedHistoryImages", () => {

117130

PRUNED_HISTORY_MEDIA_REFERENCE_MARKER,

118131

].join("\n"),

119132

);

120-

expect(content[1]).toMatchObject({ type: "text", text: PRUNED_HISTORY_IMAGE_MARKER });

133+

expectContentBlock(content[1], { type: "text", text: PRUNED_HISTORY_IMAGE_MARKER });

121134

const originalContent = expectArrayMessageContent(

122135

messages[0],

123136

"expected original user content",

124137

);

125138

expect(originalContent[0]?.text).toContain("[media attached: media://inbound/old.png]");

126-

expect(originalContent[1]).toMatchObject({ type: "image", data: "abc" });

139+

expectContentBlock(originalContent[1], { type: "image", data: "abc" });

127140

});

128141129142

it("scrubs old media attachment markers from string content without image blocks", () => {

@@ -207,7 +220,7 @@ describe("pruneProcessedHistoryImages", () => {

207220

expect(pruned).toBeNull();

208221

const content = expectArrayMessageContent(messages[0], "expected user array content");

209222

expect(content[0]?.text).toBe("recent [media attached: media://inbound/current.png]");

210-

expect(content[1]).toMatchObject({ type: "image", data: "abc" });

223+

expectContentBlock(content[1], { type: "image", data: "abc" });

211224

});

212225213226

it("does not count multiple assistant messages from one tool loop as separate turns", () => {

@@ -249,7 +262,7 @@ describe("pruneProcessedHistoryImages", () => {

249262

expect(pruned).toBeNull();

250263

const content = expectArrayMessageContent(messages[0], "expected user array content");

251264

expect(content).toHaveLength(2);

252-

expect(content[1]).toMatchObject({ type: "image", data: "abc" });

265+

expectContentBlock(content[1], { type: "image", data: "abc" });

253266

});

254267255268

it("prunes image blocks from toolResult messages older than 3 assistant turns", () => {

@@ -292,16 +305,16 @@ describe("pruneProcessedHistoryImages", () => {

292305

const pruned = expectPrunedMessages(messages);

293306294307

const oldContent = expectArrayMessageContent(pruned[0], "expected old user content");

295-

expect(oldContent[1]).toMatchObject({ type: "text", text: PRUNED_HISTORY_IMAGE_MARKER });

308+

expectContentBlock(oldContent[1], { type: "text", text: PRUNED_HISTORY_IMAGE_MARKER });

296309297310

const recentContent = expectArrayMessageContent(pruned[6], "expected recent user content");

298-

expect(recentContent[1]).toMatchObject({ type: "image", data: "abc" });

311+

expectContentBlock(recentContent[1], { type: "image", data: "abc" });

299312300313

const originalOldContent = expectArrayMessageContent(

301314

messages[0],

302315

"expected original old user content",

303316

);

304-

expect(originalOldContent[1]).toMatchObject({ type: "image", data: "abc" });

317+

expectContentBlock(originalOldContent[1], { type: "image", data: "abc" });

305318

});

306319307320

it("does not change messages when no assistant turn exists", () => {

@@ -359,7 +372,7 @@ describe("installHistoryImagePruneContextTransform", () => {

359372

"expected replay user array content",

360373

);

361374

expect(replayContent[0]?.text).toBe(`stale ${PRUNED_HISTORY_MEDIA_REFERENCE_MARKER}`);

362-

expect(replayContent[1]).toMatchObject({

375+

expectContentBlock(replayContent[1], {

363376

type: "text",

364377

text: PRUNED_HISTORY_IMAGE_MARKER,

365378

});

@@ -368,7 +381,7 @@ describe("installHistoryImagePruneContextTransform", () => {

368381

"expected original transformed content",

369382

);

370383

expect(originalContent[0]?.text).toContain("media://inbound/old.png");

371-

expect(originalContent[1]).toMatchObject({ type: "image", data: "abc" });

384+

expectContentBlock(originalContent[1], { type: "image", data: "abc" });

372385373386

restore();

374387

expect(agent.transformContext).toBe(originalTransformContext);