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

推荐订阅源

IT之家
IT之家
J
Java Code Geeks
小众软件
小众软件
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
量子位
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
L
LangChain 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: guard plugin metadata snapshot reuse · openclaw/open...
shakkernerd · 2026-04-28 · via Recent Commits to openclaw:main

@@ -1,5 +1,6 @@

11

import { beforeEach, describe, expect, it, vi } from "vitest";

22

import type { OpenClawConfig } from "../config/types.openclaw.js";

3+

import { resolveInstalledPluginIndexPolicyHash } from "./installed-plugin-index-policy.js";

34

import type { PluginManifestRecord, PluginManifestRegistry } from "./manifest-registry.js";

45

import type { PluginRegistrySnapshot } from "./plugin-registry.js";

56

@@ -47,13 +48,16 @@ function createManifestRecord(

4748

};

4849

}

495050-

function createIndex(plugins: readonly PluginManifestRecord[]): PluginRegistrySnapshot {

51+

function createIndex(

52+

plugins: readonly PluginManifestRecord[],

53+

params: { policyHash?: string } = {},

54+

): PluginRegistrySnapshot {

5155

return {

5256

version: 1,

5357

hostContractVersion: "test",

5458

compatRegistryVersion: "test",

5559

migrationVersion: 1,

56-

policyHash: "policy",

60+

policyHash: params.policyHash ?? "policy",

5761

generatedAtMs: 1,

5862

installRecords: {},

5963

diagnostics: [],

@@ -194,6 +198,15 @@ describe("loadPluginLookUpTable", () => {

194198

}),

195199

];

196200

const index = createIndex(plugins);

201+

const config = {

202+

channels: {

203+

telegram: { token: "configured" },

204+

},

205+

} as OpenClawConfig;

206+

const compatibleIndex = {

207+

...index,

208+

policyHash: resolveInstalledPluginIndexPolicyHash(config),

209+

};

197210

const manifestRegistry: PluginManifestRegistry = {

198211

plugins,

199212

diagnostics: [],

@@ -203,22 +216,14 @@ describe("loadPluginLookUpTable", () => {

203216

const { loadPluginLookUpTable } = await import("./plugin-lookup-table.js");

204217205218

const metadataSnapshot = loadPluginMetadataSnapshot({

206-

config: {

207-

channels: {

208-

telegram: { token: "configured" },

209-

},

210-

} as OpenClawConfig,

219+

config,

211220

env: {},

212-

index,

221+

index: compatibleIndex,

213222

});

214223

loadPluginManifestRegistryForInstalledIndex.mockClear();

215224216225

const table = loadPluginLookUpTable({

217-

config: {

218-

channels: {

219-

telegram: { token: "configured" },

220-

},

221-

} as OpenClawConfig,

226+

config,

222227

env: {},

223228

metadataSnapshot,

224229

});

@@ -229,4 +234,59 @@ describe("loadPluginLookUpTable", () => {

229234

expect(table.metrics.indexPluginCount).toBe(1);

230235

expect(table.metrics.manifestPluginCount).toBe(1);

231236

});

237+238+

it("rebuilds when a provided metadata snapshot has a stale plugin policy", async () => {

239+

const plugins = [

240+

createManifestRecord({

241+

id: "telegram",

242+

origin: "bundled",

243+

channels: ["telegram"],

244+

}),

245+

];

246+

const snapshotConfig = {

247+

plugins: {

248+

allow: ["telegram"],

249+

},

250+

} as OpenClawConfig;

251+

const requestedConfig = {

252+

plugins: {

253+

allow: ["other-plugin"],

254+

},

255+

} as OpenClawConfig;

256+

const snapshotIndex = createIndex(plugins, {

257+

policyHash: resolveInstalledPluginIndexPolicyHash(snapshotConfig),

258+

});

259+

const requestedIndex = createIndex(plugins, {

260+

policyHash: resolveInstalledPluginIndexPolicyHash(requestedConfig),

261+

});

262+

const manifestRegistry: PluginManifestRegistry = {

263+

plugins,

264+

diagnostics: [],

265+

};

266+

loadPluginManifestRegistryForInstalledIndex.mockReturnValue(manifestRegistry);

267+

const { loadPluginMetadataSnapshot } = await import("./plugin-metadata-snapshot.js");

268+

const { loadPluginLookUpTable } = await import("./plugin-lookup-table.js");

269+270+

const metadataSnapshot = loadPluginMetadataSnapshot({

271+

config: snapshotConfig,

272+

env: {},

273+

index: snapshotIndex,

274+

});

275+

loadPluginManifestRegistryForInstalledIndex.mockClear();

276+277+

loadPluginLookUpTable({

278+

config: requestedConfig,

279+

env: {},

280+

index: requestedIndex,

281+

metadataSnapshot,

282+

});

283+284+

expect(loadPluginManifestRegistryForInstalledIndex).toHaveBeenCalledOnce();

285+

expect(loadPluginManifestRegistryForInstalledIndex).toHaveBeenCalledWith(

286+

expect.objectContaining({

287+

index: requestedIndex,

288+

config: requestedConfig,

289+

}),

290+

);

291+

});

232292

});