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

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
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
test: clarify context pruning malformed assertions · open...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -104,55 +104,55 @@ function expectToolResultWasTrimmed(result: AgentMessage[]) {

104104

}

105105106106

describe("pruneContextMessages", () => {

107-

it("does not crash on assistant message with malformed thinking block (missing thinking string)", () => {

107+

it("keeps assistant messages with malformed thinking blocks", () => {

108108

const messages: AgentMessage[] = [

109109

makeUser("hello"),

110110

makeAssistant([

111111

{ type: "thinking" } as unknown as AssistantContentBlock,

112112

{ type: "text", text: "ok" },

113113

]),

114114

];

115-

expect(() =>

116-

pruneContextMessages({

117-

messages,

118-

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

119-

ctx: CONTEXT_WINDOW_1M,

120-

}),

121-

).not.toThrow();

115+

const result = pruneContextMessages({

116+

messages,

117+

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

118+

ctx: CONTEXT_WINDOW_1M,

119+

});

120+121+

expect(result).toHaveLength(2);

122122

});

123123124-

it("does not crash on assistant message with null content entries", () => {

124+

it("keeps assistant messages with null content entries", () => {

125125

const messages: AgentMessage[] = [

126126

makeUser("hello"),

127127

makeAssistant([null as unknown as AssistantContentBlock, { type: "text", text: "world" }]),

128128

];

129-

expect(() =>

130-

pruneContextMessages({

131-

messages,

132-

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

133-

ctx: CONTEXT_WINDOW_1M,

134-

}),

135-

).not.toThrow();

129+

const result = pruneContextMessages({

130+

messages,

131+

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

132+

ctx: CONTEXT_WINDOW_1M,

133+

});

134+135+

expect(result).toHaveLength(2);

136136

});

137137138-

it("does not crash on assistant message with malformed text block (missing text string)", () => {

138+

it("keeps assistant messages with malformed text blocks", () => {

139139

const messages: AgentMessage[] = [

140140

makeUser("hello"),

141141

makeAssistant([

142142

{ type: "text" } as unknown as AssistantContentBlock,

143143

{ type: "thinking", thinking: "still fine" },

144144

]),

145145

];

146-

expect(() =>

147-

pruneContextMessages({

148-

messages,

149-

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

150-

ctx: CONTEXT_WINDOW_1M,

151-

}),

152-

).not.toThrow();

146+

const result = pruneContextMessages({

147+

messages,

148+

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

149+

ctx: CONTEXT_WINDOW_1M,

150+

});

151+152+

expect(result).toHaveLength(2);

153153

});

154154155-

it("does not crash on toolResult with malformed text block (missing text string)", () => {

155+

it("keeps tool results with malformed text blocks", () => {

156156

// Regression: a plugin returning undefined produces {type: "text"} with no text property,

157157

// which crashed estimateTextAndImageChars / collectTextSegments / collectPrunableToolResultSegments.

158158

// See https://github.com/openclaw/openclaw/issues/34979

@@ -174,16 +174,16 @@ describe("pruneContextMessages", () => {

174174

makeAssistant([{ type: "text", text: "done" }]),

175175

];

176176177-

expect(() =>

178-

pruneContextMessages({

179-

messages,

180-

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

181-

ctx: CONTEXT_WINDOW_1M,

182-

}),

183-

).not.toThrow();

177+

const result = pruneContextMessages({

178+

messages,

179+

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

180+

ctx: CONTEXT_WINDOW_1M,

181+

});

182+183+

expect(result).toHaveLength(5);

184184

});

185185186-

it("does not crash on toolResult with malformed text block during soft-trim (image path)", () => {

186+

it("keeps tool results with malformed text blocks during soft-trim image paths", () => {

187187

// The collectPrunableToolResultSegments path is exercised when the tool result

188188

// contains image blocks alongside a malformed text block.

189189

const malformedToolResult = {

@@ -199,28 +199,28 @@ describe("pruneContextMessages", () => {

199199

makeAssistant([{ type: "text", text: "here it is" }]),

200200

];

201201202-

expect(() =>

203-

pruneContextMessages({

204-

messages,

205-

settings: {

206-

...DEFAULT_CONTEXT_PRUNING_SETTINGS,

207-

keepLastAssistants: 1,

208-

softTrimRatio: 0,

209-

hardClear: {

210-

...DEFAULT_CONTEXT_PRUNING_SETTINGS.hardClear,

211-

enabled: false,

212-

},

213-

softTrim: {

214-

maxChars: 5_000,

215-

headChars: 2_000,

216-

tailChars: 2_000,

217-

},

202+

const result = pruneContextMessages({

203+

messages,

204+

settings: {

205+

...DEFAULT_CONTEXT_PRUNING_SETTINGS,

206+

keepLastAssistants: 1,

207+

softTrimRatio: 0,

208+

hardClear: {

209+

...DEFAULT_CONTEXT_PRUNING_SETTINGS.hardClear,

210+

enabled: false,

211+

},

212+

softTrim: {

213+

maxChars: 5_000,

214+

headChars: 2_000,

215+

tailChars: 2_000,

218216

},

219-

ctx: CONTEXT_WINDOW_1M,

220-

isToolPrunable: () => true,

221-

contextWindowTokensOverride: 1,

222-

}),

223-

).not.toThrow();

217+

},

218+

ctx: CONTEXT_WINDOW_1M,

219+

isToolPrunable: () => true,

220+

contextWindowTokensOverride: 1,

221+

});

222+223+

expect(result).toHaveLength(3);

224224

});

225225226226

it("counts malformed non-string text blocks when deciding to trim tool results", () => {

@@ -264,7 +264,7 @@ describe("pruneContextMessages", () => {

264264

expect(textBlock.text).toContain("[Tool result trimmed:");

265265

});

266266267-

it("does not crash on toolResult with null content entries", () => {

267+

it("keeps tool results with null content entries", () => {

268268

const malformedToolResult = {

269269

role: "toolResult",

270270

toolName: "read",

@@ -278,13 +278,13 @@ describe("pruneContextMessages", () => {

278278

makeAssistant([{ type: "text", text: "done" }]),

279279

];

280280281-

expect(() =>

282-

pruneContextMessages({

283-

messages,

284-

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

285-

ctx: CONTEXT_WINDOW_1M,

286-

}),

287-

).not.toThrow();

281+

const result = pruneContextMessages({

282+

messages,

283+

settings: DEFAULT_CONTEXT_PRUNING_SETTINGS,

284+

ctx: CONTEXT_WINDOW_1M,

285+

});

286+287+

expect(result).toHaveLength(3);

288288

});

289289290290

it("handles well-formed thinking blocks correctly", () => {