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

推荐订阅源

The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
L
LangChain Blog
WordPress大学
WordPress大学
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
MyScale Blog
MyScale Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
博客园 - 【当耐特】
P
Proofpoint News Feed
D
DataBreaches.Net

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 installed plugin index assertions · opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -45,6 +45,15 @@ function createPluginCandidate(stateDir: string, pluginId: string): PluginCandid

4545

};

4646

}

474748+

function expectRecordFields(record: unknown, expected: Record<string, unknown>) {

49+

expect(record).toBeDefined();

50+

const actual = record as Record<string, unknown>;

51+

for (const [key, value] of Object.entries(expected)) {

52+

expect(actual[key]).toEqual(value);

53+

}

54+

return actual;

55+

}

56+4857

afterEach(() => {

4958

for (const dir of tempDirs.splice(0)) {

5059

fs.rmSync(dir, { recursive: true, force: true });

@@ -73,23 +82,22 @@ describe("plugin index install records store", () => {

73827483

const indexPath = resolveInstalledPluginIndexRecordsStorePath({ stateDir });

7584

expect(indexPath).toBe(path.join(stateDir, "plugins", "installs.json"));

76-

expect(JSON.parse(fs.readFileSync(indexPath, "utf8"))).toMatchObject({

77-

version: 1,

78-

generatedAtMs: 1777118400000,

79-

installRecords: {

80-

twitch: {

81-

source: "npm",

82-

spec: "@openclaw/plugin-twitch@1.0.0",

83-

installPath: "plugins/npm/@openclaw/plugin-twitch",

84-

},

85-

},

86-

plugins: [

87-

{

88-

pluginId: "twitch",

89-

installRecordHash: expect.stringMatching(/^[a-f0-9]{64}$/u),

90-

},

91-

],

85+

const persisted = JSON.parse(fs.readFileSync(indexPath, "utf8")) as {

86+

version?: number;

87+

generatedAtMs?: number;

88+

installRecords?: Record<string, unknown>;

89+

plugins?: Array<{ pluginId?: string; installRecordHash?: string }>;

90+

};

91+

expect(persisted.version).toBe(1);

92+

expect(persisted.generatedAtMs).toBe(1777118400000);

93+

expectRecordFields(persisted.installRecords?.twitch, {

94+

source: "npm",

95+

spec: "@openclaw/plugin-twitch@1.0.0",

96+

installPath: "plugins/npm/@openclaw/plugin-twitch",

9297

});

98+

expect(persisted.plugins).toHaveLength(1);

99+

expect(persisted.plugins?.[0]?.pluginId).toBe("twitch");

100+

expect(persisted.plugins?.[0]?.installRecordHash).toMatch(/^[a-f0-9]{64}$/u);

93101

await expect(readPersistedInstalledPluginIndexInstallRecords({ stateDir })).resolves.toEqual({

94102

twitch: {

95103

source: "npm",

@@ -117,20 +125,15 @@ describe("plugin index install records store", () => {

117125

},

118126

);

119127120-

expect(

121-

JSON.parse(

122-

fs.readFileSync(resolveInstalledPluginIndexRecordsStorePath({ stateDir }), "utf8"),

123-

),

124-

).toMatchObject({

125-

installRecords: {

126-

missing: {

127-

source: "npm",

128-

spec: "missing-plugin@1.0.0",

129-

installPath: path.join(stateDir, "plugins", "missing"),

130-

},

131-

},

132-

plugins: [],

128+

const persisted = JSON.parse(

129+

fs.readFileSync(resolveInstalledPluginIndexRecordsStorePath({ stateDir }), "utf8"),

130+

) as { installRecords?: Record<string, unknown>; plugins?: unknown[] };

131+

expectRecordFields(persisted.installRecords?.missing, {

132+

source: "npm",

133+

spec: "missing-plugin@1.0.0",

134+

installPath: path.join(stateDir, "plugins", "missing"),

133135

});

136+

expect(persisted.plugins).toEqual([]);

134137

await expect(loadInstalledPluginIndexInstallRecords({ stateDir })).resolves.toEqual({

135138

missing: {

136139

source: "npm",

@@ -210,36 +213,28 @@ describe("plugin index install records store", () => {

210213

fs.mkdirSync(path.dirname(indexPath), { recursive: true });

211214

fs.writeFileSync(indexPath, JSON.stringify({ installRecords: {}, plugins: [] }), "utf8");

212215213-

await expect(loadInstalledPluginIndexInstallRecords({ stateDir })).resolves.toMatchObject({

214-

codex: {

215-

source: "npm",

216-

spec: "@openclaw/codex@2026.5.2",

217-

installPath: codexDir,

218-

version: "2026.5.2",

219-

resolvedName: "@openclaw/codex",

220-

resolvedVersion: "2026.5.2",

221-

resolvedSpec: "@openclaw/codex@2026.5.2",

222-

},

223-

discord: {

224-

source: "npm",

225-

spec: "@openclaw/discord@2026.5.2",

226-

installPath: discordDir,

227-

version: "2026.5.2",

228-

resolvedName: "@openclaw/discord",

229-

resolvedVersion: "2026.5.2",

230-

resolvedSpec: "@openclaw/discord@2026.5.2",

231-

},

216+

const loaded = await loadInstalledPluginIndexInstallRecords({ stateDir });

217+

expectRecordFields(loaded.codex, {

218+

source: "npm",

219+

spec: "@openclaw/codex@2026.5.2",

220+

installPath: codexDir,

221+

version: "2026.5.2",

222+

resolvedName: "@openclaw/codex",

223+

resolvedVersion: "2026.5.2",

224+

resolvedSpec: "@openclaw/codex@2026.5.2",

232225

});

233-

expect(loadInstalledPluginIndexInstallRecordsSync({ stateDir })).toMatchObject({

234-

codex: {

235-

source: "npm",

236-

installPath: codexDir,

237-

},

238-

discord: {

239-

source: "npm",

240-

installPath: discordDir,

241-

},

226+

expectRecordFields(loaded.discord, {

227+

source: "npm",

228+

spec: "@openclaw/discord@2026.5.2",

229+

installPath: discordDir,

230+

version: "2026.5.2",

231+

resolvedName: "@openclaw/discord",

232+

resolvedVersion: "2026.5.2",

233+

resolvedSpec: "@openclaw/discord@2026.5.2",

242234

});

235+

const loadedSync = loadInstalledPluginIndexInstallRecordsSync({ stateDir });

236+

expectRecordFields(loadedSync.codex, { source: "npm", installPath: codexDir });

237+

expectRecordFields(loadedSync.discord, { source: "npm", installPath: discordDir });

243238

});

244239245240

it("keeps persisted install record metadata over recovered npm records", async () => {

@@ -263,13 +258,12 @@ describe("plugin index install records store", () => {

263258

{ stateDir, candidates: [candidate] },

264259

);

265260266-

await expect(loadInstalledPluginIndexInstallRecords({ stateDir })).resolves.toMatchObject({

267-

discord: {

268-

source: "npm",

269-

spec: "@openclaw/discord@beta",

270-

installPath: path.join(stateDir, "custom", "discord"),

271-

integrity: "sha512-persisted",

272-

},

261+

const loaded = await loadInstalledPluginIndexInstallRecords({ stateDir });

262+

expectRecordFields(loaded.discord, {

263+

source: "npm",

264+

spec: "@openclaw/discord@beta",

265+

installPath: path.join(stateDir, "custom", "discord"),

266+

integrity: "sha512-persisted",

273267

});

274268

});

275269

@@ -290,14 +284,13 @@ describe("plugin index install records store", () => {

290284

{ stateDir, candidates: [candidate] },

291285

);

292286293-

await expect(loadInstalledPluginIndexInstallRecords({ stateDir })).resolves.toMatchObject({

294-

"git-demo": {

295-

source: "git",

296-

spec: "git:file:///tmp/git-demo@abc123",

297-

gitUrl: "file:///tmp/git-demo",

298-

gitRef: "abc123",

299-

gitCommit: "abc123",

300-

},

287+

const loaded = await loadInstalledPluginIndexInstallRecords({ stateDir });

288+

expectRecordFields(loaded["git-demo"], {

289+

source: "git",

290+

spec: "git:file:///tmp/git-demo@abc123",

291+

gitUrl: "file:///tmp/git-demo",

292+

gitRef: "abc123",

293+

gitCommit: "abc123",

301294

});

302295

});

303296

@@ -329,20 +322,19 @@ describe("plugin index install records store", () => {

329322

{ stateDir, candidates: [candidate] },

330323

);

331324332-

await expect(loadInstalledPluginIndexInstallRecords({ stateDir })).resolves.toMatchObject({

333-

"clawpack-demo": {

334-

source: "clawhub",

335-

spec: "clawhub:clawpack-demo",

336-

artifactKind: "npm-pack",

337-

artifactFormat: "tgz",

338-

npmIntegrity: "sha512-clawpack",

339-

npmShasum: "1".repeat(40),

340-

npmTarballName: "clawpack-demo-2026.5.1-beta.2.tgz",

341-

clawpackSha256: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",

342-

clawpackSpecVersion: 1,

343-

clawpackManifestSha256: "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",

344-

clawpackSize: 4096,

345-

},

325+

const loaded = await loadInstalledPluginIndexInstallRecords({ stateDir });

326+

expectRecordFields(loaded["clawpack-demo"], {

327+

source: "clawhub",

328+

spec: "clawhub:clawpack-demo",

329+

artifactKind: "npm-pack",

330+

artifactFormat: "tgz",

331+

npmIntegrity: "sha512-clawpack",

332+

npmShasum: "1".repeat(40),

333+

npmTarballName: "clawpack-demo-2026.5.1-beta.2.tgz",

334+

clawpackSha256: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",

335+

clawpackSpecVersion: 1,

336+

clawpackManifestSha256: "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",

337+

clawpackSize: 4096,

346338

});

347339

});

348340

@@ -376,7 +368,7 @@ describe("plugin index install records store", () => {

376368

spec: "keep@1.0.0",

377369

},

378370

});

379-

expect(withInstall.demo).toMatchObject({

371+

expectRecordFields(withInstall.demo, {

380372

source: "npm",

381373

spec: "demo@latest",

382374

installedAt: "2026-04-25T00:00:00.000Z",