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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
月光博客
月光博客
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
Vercel News
Vercel News
量子位
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
腾讯CDC
有赞技术团队
有赞技术团队

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(update): repair managed npm plugin peers · openclaw/o...
fuller-stack · 2026-05-23 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import fs from "node:fs/promises";

22

import os from "node:os";

33

import path from "node:path";

44

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

5+

import { resolveOpenClawPackageRootSync } from "../../infra/openclaw-root.js";

56

import { runPluginPayloadSmokeCheck } from "./plugin-payload-validation.js";

6778

describe("runPluginPayloadSmokeCheck", () => {

@@ -28,6 +29,25 @@ describe("runPluginPayloadSmokeCheck", () => {

2829

}

2930

}

303132+

function resolveTestHostRoot(): string {

33+

const hostRoot = resolveOpenClawPackageRootSync({

34+

argv1: process.argv[1],

35+

moduleUrl: import.meta.url,

36+

cwd: process.cwd(),

37+

});

38+

expect(hostRoot).toBeTruthy();

39+

return hostRoot!;

40+

}

41+42+

async function linkOpenClawPeerToHost(dir: string): Promise<void> {

43+

await fs.mkdir(path.join(dir, "node_modules"), { recursive: true });

44+

await fs.symlink(resolveTestHostRoot(), path.join(dir, "node_modules", "openclaw"), "junction");

45+

}

46+47+

async function resolveRealPath(target: string): Promise<string> {

48+

return await fs.realpath(target).catch(() => target);

49+

}

50+3151

it("reports ok for a record whose package.json + main file exist", async () => {

3252

const dir = path.join(tmpRoot, "discord");

3353

await writePackage(

@@ -167,6 +187,127 @@ describe("runPluginPayloadSmokeCheck", () => {

167187

expect(result.failures).toEqual([]);

168188

});

169189190+

it("reports a failure when an openclaw peer link is missing", async () => {

191+

const dir = path.join(tmpRoot, "codex");

192+

await writePackage(

193+

dir,

194+

{

195+

name: "@openclaw/codex",

196+

main: "dist/index.js",

197+

peerDependencies: { openclaw: ">=2026.5.18-beta.1" },

198+

},

199+

"export default {};\n",

200+

);

201+202+

const result = await runPluginPayloadSmokeCheck({

203+

records: { codex: { source: "npm", installPath: dir } },

204+

env: {},

205+

});

206+207+

expect(result.failures).toStrictEqual([

208+

{

209+

pluginId: "codex",

210+

installPath: dir,

211+

reason: "missing-openclaw-peer-link",

212+

detail: `Plugin declares peerDependency "openclaw" but peer link audit failed: missing ${path.join(

213+

dir,

214+

"node_modules",

215+

"openclaw",

216+

)}.`,

217+

},

218+

]);

219+

});

220+221+

it("reports a failure when an openclaw peer link is a stale real directory", async () => {

222+

const dir = path.join(tmpRoot, "codex");

223+

await writePackage(

224+

dir,

225+

{

226+

name: "@openclaw/codex",

227+

main: "dist/index.js",

228+

peerDependencies: { openclaw: ">=2026.5.18-beta.1" },

229+

},

230+

"export default {};\n",

231+

);

232+

const stalePeerDir = path.join(dir, "node_modules", "openclaw");

233+

await fs.mkdir(stalePeerDir, { recursive: true });

234+235+

const result = await runPluginPayloadSmokeCheck({

236+

records: { codex: { source: "npm", installPath: dir } },

237+

env: {},

238+

});

239+240+

expect(result.failures).toHaveLength(1);

241+

expect(result.failures[0]).toMatchObject({

242+

pluginId: "codex",

243+

installPath: dir,

244+

reason: "missing-openclaw-peer-link",

245+

});

246+

expect(result.failures[0]?.detail).toContain(`${stalePeerDir} points to`);

247+

expect(result.failures[0]?.detail).toContain(

248+

`instead of ${await resolveRealPath(resolveTestHostRoot())}`,

249+

);

250+

});

251+252+

it("reports a failure when an openclaw peer link points at the wrong package root", async () => {

253+

const dir = path.join(tmpRoot, "codex");

254+

await writePackage(

255+

dir,

256+

{

257+

name: "@openclaw/codex",

258+

main: "dist/index.js",

259+

peerDependencies: { openclaw: ">=2026.5.18-beta.1" },

260+

},

261+

"export default {};\n",

262+

);

263+

const wrongHostRoot = path.join(tmpRoot, "old-openclaw");

264+

await fs.mkdir(wrongHostRoot, { recursive: true });

265+

await fs.mkdir(path.join(dir, "node_modules"), { recursive: true });

266+

await fs.symlink(wrongHostRoot, path.join(dir, "node_modules", "openclaw"), "junction");

267+268+

const result = await runPluginPayloadSmokeCheck({

269+

records: { codex: { source: "npm", installPath: dir } },

270+

env: {},

271+

});

272+273+

expect(result.failures).toHaveLength(1);

274+

expect(result.failures[0]).toMatchObject({

275+

pluginId: "codex",

276+

installPath: dir,

277+

reason: "missing-openclaw-peer-link",

278+

});

279+

expect(result.failures[0]?.detail).toContain(

280+

`${path.join(

281+

dir,

282+

"node_modules",

283+

"openclaw",

284+

)} points to ${await resolveRealPath(wrongHostRoot)} instead of ${await resolveRealPath(

285+

resolveTestHostRoot(),

286+

)}`,

287+

);

288+

});

289+290+

it("accepts an openclaw peer link when it resolves to the host package root", async () => {

291+

const dir = path.join(tmpRoot, "codex");

292+

await writePackage(

293+

dir,

294+

{

295+

name: "@openclaw/codex",

296+

main: "dist/index.js",

297+

peerDependencies: { openclaw: ">=2026.5.18-beta.1" },

298+

},

299+

"export default {};\n",

300+

);

301+

await linkOpenClawPeerToHost(dir);

302+303+

const result = await runPluginPayloadSmokeCheck({

304+

records: { codex: { source: "npm", installPath: dir } },

305+

env: {},

306+

});

307+308+

expect(result.failures).toEqual([]);

309+

});

310+170311

it("reports a failure when an `openclaw.extensions` entry file is missing", async () => {

171312

const dir = path.join(tmpRoot, "brave");

172313

await writePackage(dir, {