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

推荐订阅源

The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
V
V2EX
博客园 - 司徒正美
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
雷峰网
雷峰网
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
S
SegmentFault 最新的问题
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
爱范儿
爱范儿
博客园 - 聂微东
量子位
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News

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 plugin registry snapshot assertions · openc...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -73,6 +73,36 @@ function createManifestlessClaudeBundleIndex(params: {

7373

});

7474

}

757576+

function expectDiagnosticsContainCode(diagnostics: readonly { code?: unknown }[], code: string) {

77+

expect(diagnostics.some((diagnostic) => diagnostic.code === code)).toBe(true);

78+

}

79+80+

function expectDiagnosticsContainSource(

81+

diagnostics: readonly { source?: unknown }[],

82+

source: string,

83+

) {

84+

expect(diagnostics.some((diagnostic) => diagnostic.source === source)).toBe(true);

85+

}

86+87+

function expectDiagnosticsDoNotContainSource(

88+

diagnostics: readonly { source?: unknown }[],

89+

source: string,

90+

) {

91+

expect(diagnostics.some((diagnostic) => diagnostic.source === source)).toBe(false);

92+

}

93+94+

function requirePluginRecord(

95+

plugins: InstalledPluginIndex["plugins"],

96+

pluginId: string,

97+

): InstalledPluginIndex["plugins"][number] {

98+

const plugin = plugins.find((candidate) => candidate.pluginId === pluginId);

99+

expect(plugin, `plugin ${pluginId}`).toBeDefined();

100+

if (!plugin) {

101+

throw new Error(`expected plugin ${pluginId}`);

102+

}

103+

return plugin;

104+

}

105+76106

describe("loadPluginRegistrySnapshotWithMetadata", () => {

77107

it("recovers managed npm plugins missing from a stale persisted registry", () => {

78108

const tempRoot = makeTempDir();

@@ -105,28 +135,18 @@ describe("loadPluginRegistrySnapshotWithMetadata", () => {

105135

});

106136107137

expect(result.source).toBe("derived");

108-

expect(result.diagnostics).toContainEqual(

109-

expect.objectContaining({ code: "persisted-registry-stale-source" }),

110-

);

111-

expect(result.snapshot.installRecords).toMatchObject({

112-

whatsapp: {

113-

source: "npm",

114-

spec: "@openclaw/whatsapp@2026.5.2",

115-

installPath: whatsappDir,

116-

version: "2026.5.2",

117-

resolvedName: "@openclaw/whatsapp",

118-

resolvedVersion: "2026.5.2",

119-

resolvedSpec: "@openclaw/whatsapp@2026.5.2",

120-

},

138+

expectDiagnosticsContainCode(result.diagnostics, "persisted-registry-stale-source");

139+

expect(result.snapshot.installRecords.whatsapp).toEqual({

140+

source: "npm",

141+

spec: "@openclaw/whatsapp@2026.5.2",

142+

installPath: whatsappDir,

143+

version: "2026.5.2",

144+

resolvedName: "@openclaw/whatsapp",

145+

resolvedVersion: "2026.5.2",

146+

resolvedSpec: "@openclaw/whatsapp@2026.5.2",

121147

});

122-

expect(result.snapshot.plugins).toEqual(

123-

expect.arrayContaining([

124-

expect.objectContaining({

125-

pluginId: "whatsapp",

126-

origin: "global",

127-

}),

128-

]),

129-

);

148+

const whatsappPlugin = requirePluginRecord(result.snapshot.plugins, "whatsapp");

149+

expect(whatsappPlugin.origin).toBe("global");

130150

});

131151132152

it("keeps persisted manifestless Claude bundles on the fast path", () => {

@@ -169,15 +189,11 @@ describe("loadPluginRegistrySnapshotWithMetadata", () => {

169189

if (!record?.packageJson?.fileSignature || !record.manifestFile) {

170190

throw new Error("expected package plugin index record with file signatures");

171191

}

172-

expect(record.manifestFile).toEqual(

173-

expect.objectContaining({

174-

size: fs.statSync(path.join(rootDir, "openclaw.plugin.json")).size,

175-

}),

192+

expect(record.manifestFile.size).toBe(

193+

fs.statSync(path.join(rootDir, "openclaw.plugin.json")).size,

176194

);

177-

expect(record.packageJson.fileSignature).toEqual(

178-

expect.objectContaining({

179-

size: fs.statSync(path.join(rootDir, "package.json")).size,

180-

}),

195+

expect(record.packageJson.fileSignature.size).toBe(

196+

fs.statSync(path.join(rootDir, "package.json")).size,

181197

);

182198

writePersistedInstalledPluginIndexSync(index, { stateDir });

183199

@@ -222,9 +238,7 @@ describe("loadPluginRegistrySnapshotWithMetadata", () => {

222238

});

223239224240

expect(result.source).toBe("derived");

225-

expect(result.diagnostics).toContainEqual(

226-

expect.objectContaining({ code: "persisted-registry-stale-source" }),

227-

);

241+

expectDiagnosticsContainCode(result.diagnostics, "persisted-registry-stale-source");

228242

});

229243230244

it("detects same-size same-mtime package.json replacements", () => {

@@ -253,9 +267,7 @@ describe("loadPluginRegistrySnapshotWithMetadata", () => {

253267

});

254268255269

expect(result.source).toBe("derived");

256-

expect(result.diagnostics).toContainEqual(

257-

expect.objectContaining({ code: "persisted-registry-stale-source" }),

258-

);

270+

expectDiagnosticsContainCode(result.diagnostics, "persisted-registry-stale-source");

259271

});

260272261273

it("detects package.json replacements even when stored stat fields still match", () => {

@@ -304,9 +316,7 @@ describe("loadPluginRegistrySnapshotWithMetadata", () => {

304316

});

305317306318

expect(result.source).toBe("derived");

307-

expect(result.diagnostics).toContainEqual(

308-

expect.objectContaining({ code: "persisted-registry-stale-source" }),

309-

);

319+

expectDiagnosticsContainCode(result.diagnostics, "persisted-registry-stale-source");

310320

});

311321312322

it("treats persisted registry as stale when a plugin diagnostic source path no longer exists", () => {

@@ -342,19 +352,13 @@ describe("loadPluginRegistrySnapshotWithMetadata", () => {

342352

const result = loadPluginRegistrySnapshotWithMetadata({ config, env, stateDir });

343353344354

expect(result.source).toBe("derived");

345-

expect(result.snapshot.diagnostics).not.toContainEqual(

346-

expect.objectContaining({ source: ghostDir }),

347-

);

348-

expect(result.snapshot.plugins).toContainEqual(

349-

expect.objectContaining({

350-

pluginId: "lossless-claw",

351-

origin: "global",

352-

source: fs.realpathSync(path.join(npmPluginDir, "dist", "index.js")),

353-

}),

354-

);

355-

expect(result.diagnostics).toContainEqual(

356-

expect.objectContaining({ code: "persisted-registry-stale-source" }),

355+

expectDiagnosticsDoNotContainSource(result.snapshot.diagnostics, ghostDir);

356+

const losslessPlugin = requirePluginRecord(result.snapshot.plugins, "lossless-claw");

357+

expect(losslessPlugin.origin).toBe("global");

358+

expect(losslessPlugin.source).toBe(

359+

fs.realpathSync(path.join(npmPluginDir, "dist", "index.js")),

357360

);

361+

expectDiagnosticsContainCode(result.diagnostics, "persisted-registry-stale-source");

358362

});

359363360364

it("keeps persisted registry when a non-plugin diagnostic source path still does not exist", () => {

@@ -378,9 +382,7 @@ describe("loadPluginRegistrySnapshotWithMetadata", () => {

378382

const result = loadPluginRegistrySnapshotWithMetadata({ config, env, stateDir });

379383380384

expect(result.source).toBe("persisted");

381-

expect(result.snapshot.diagnostics).toContainEqual(

382-

expect.objectContaining({ source: missingConfiguredPath }),

383-

);

385+

expectDiagnosticsContainSource(result.snapshot.diagnostics, missingConfiguredPath);

384386

expect(result.diagnostics).toStrictEqual([]);

385387

});

386388

});