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

推荐订阅源

美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 司徒正美
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
B
Blog
V
V2EX
J
Java Code Geeks
D
Docker
博客园 - 叶小钗
The Cloudflare Blog
量子位
博客园_首页
MongoDB | Blog
MongoDB | 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(release): stabilize final validation checks · opencla...
steipete · 2026-05-06 · via Recent Commits to openclaw:main

@@ -121,6 +121,23 @@ function assertCorruptUpdate(updateJsonPath, pluginId) {

121121

if (!plugins) {

122122

throw new Error(`missing postUpdate.plugins in update output: ${JSON.stringify(payload)}`);

123123

}

124+

assertCorruptPluginTolerated(plugins, pluginId);

125+

}

126+127+

function assertCorruptPluginResult(pluginJsonPath, pluginId) {

128+

const plugins = readJson(pluginJsonPath);

129+

assertCorruptPluginTolerated(plugins, pluginId);

130+

}

131+132+

function assertCorruptPluginTolerated(plugins, pluginId) {

133+

const evidence = collectPluginEvidence(plugins, pluginId);

134+

if (plugins.status === "ok") {

135+

if (isCorruptPluginDisabledAfterUpdate(evidence, pluginId)) {

136+

return;

137+

}

138+

assertCorruptPluginCleanOrRepaired(evidence);

139+

return;

140+

}

124141

if (plugins.status !== "warning") {

125142

throw new Error(

126143

`expected post-update plugin status warning, got ${JSON.stringify(plugins.status)}`,

@@ -129,33 +146,49 @@ function assertCorruptUpdate(updateJsonPath, pluginId) {

129146

assertCorruptPluginDetails(plugins, pluginId);

130147

}

131148132-

function assertCorruptPluginResult(pluginJsonPath, pluginId) {

133-

const plugins = readJson(pluginJsonPath);

134-

if (plugins.status !== "warning") {

149+

function isCorruptPluginDisabledAfterUpdate(evidence, pluginId) {

150+

const outcome = evidence.outcome;

151+

const message = typeof outcome?.message === "string" ? outcome.message : "";

152+

return (

153+

outcome?.status === "skipped" &&

154+

message.includes(`Disabled "${pluginId}" after plugin update failure`) &&

155+

message.includes("OpenClaw will continue without it")

156+

);

157+

}

158+159+

function assertCorruptPluginCleanOrRepaired(evidence) {

160+

if (evidence.outcome) {

135161

throw new Error(

136-

`expected post-update plugin status warning, got ${JSON.stringify(plugins.status)}`,

162+

`expected clean or repaired corrupt plugin state, got ${JSON.stringify(evidence)}`,

163+

);

164+

}

165+

if (evidence.warning || evidence.integrityDrift || evidence.syncMessages.length > 0) {

166+

throw new Error(

167+

`expected warning post-update status for corrupt plugin evidence, got ok: ${JSON.stringify(

168+

evidence,

169+

)}`,

137170

);

138171

}

139-

assertCorruptPluginDetails(plugins, pluginId);

140172

}

141173142174

function assertCorruptPluginDetails(plugins, pluginId) {

143-

const outcomes = plugins.npm?.outcomes ?? [];

144-

const outcome = outcomes.find((entry) => entry?.pluginId === pluginId);

175+

const evidence = collectPluginEvidence(plugins, pluginId);

176+

const outcome = evidence.outcome;

145177

if (!outcome || outcome.status !== "error") {

146178

throw new Error(

147179

`expected error outcome for ${pluginId}, got ${JSON.stringify({

148-

outcomes,

180+

outcomes: plugins.npm?.outcomes ?? [],

149181

warnings: plugins.warnings ?? [],

150182

sync: plugins.sync,

151183

integrityDrifts: plugins.integrityDrifts ?? [],

152184

})}`,

153185

);

154186

}

155-

const warnings = plugins.warnings ?? [];

156-

const warning = warnings.find((entry) => entry?.pluginId === pluginId);

187+

const warning = evidence.warning;

157188

if (!warning) {

158-

throw new Error(`expected warning for ${pluginId}, got ${JSON.stringify(warnings)}`);

189+

throw new Error(

190+

`expected warning for ${pluginId}, got ${JSON.stringify(plugins.warnings ?? [])}`,

191+

);

159192

}

160193

const text = JSON.stringify({ outcome, warning });

161194

for (const expected of [

@@ -169,6 +202,21 @@ function assertCorruptPluginDetails(plugins, pluginId) {

169202

}

170203

}

171204205+

function collectPluginEvidence(plugins, pluginId) {

206+

const outcomes = plugins.npm?.outcomes ?? [];

207+

const warnings = plugins.warnings ?? [];

208+

const integrityDrifts = plugins.integrityDrifts ?? [];

209+

const syncMessages = [...(plugins.sync?.warnings ?? []), ...(plugins.sync?.errors ?? [])].filter(

210+

(message) => String(message).includes(pluginId),

211+

);

212+

return {

213+

outcome: outcomes.find((entry) => entry?.pluginId === pluginId),

214+

warning: warnings.find((entry) => entry?.pluginId === pluginId),

215+

integrityDrift: integrityDrifts.find((entry) => entry?.pluginId === pluginId),

216+

syncMessages,

217+

};

218+

}

219+172220

function assertLegacyPostUpdatePluginFailure(updateJsonPath) {

173221

const payload = readJson(updateJsonPath);

174222

if (payload.status !== "error" || payload.reason !== "post-update-plugins") {