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

推荐订阅源

人人都是产品经理
人人都是产品经理
量子位
博客园 - 三生石上(FineUI控件)
博客园 - Franky
博客园_首页
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
IT之家
IT之家
Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
Last Week in AI
Last Week in AI
U
Unit 42
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
H
Help Net Security
V
V2EX
S
SegmentFault 最新的问题
月光博客
月光博客
Martin Fowler
Martin Fowler
Vercel News
Vercel News
Y
Y Combinator Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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: clarify blocked plugin validation · openclaw/opencla...
steipete · 2026-05-04 · via Recent Commits to openclaw:main

@@ -102,6 +102,7 @@ describe("config plugin validation", () => {

102102

let voiceCallSchemaPluginDir = "";

103103

let bundlePluginDir = "";

104104

let manifestlessClaudeBundleDir = "";

105+

let blockedPluginDir = "";

105106

const suiteEnv = () =>

106107

({

107108

HOME: suiteHome,

@@ -188,6 +189,12 @@ describe("config plugin validation", () => {

188189

await writeManifestlessClaudeBundleFixture({

189190

dir: manifestlessClaudeBundleDir,

190191

});

192+

blockedPluginDir = path.join(suiteHome, "blocked-plugin");

193+

await writePluginFixture({

194+

dir: blockedPluginDir,

195+

id: "blocked-plugin",

196+

schema: { type: "object" },

197+

});

191198

voiceCallSchemaPluginDir = path.join(suiteHome, "voice-call-schema-plugin");

192199

const voiceCallManifestPath = path.join(

193200

process.cwd(),

@@ -246,6 +253,165 @@ describe("config plugin validation", () => {

246253

}

247254

});

248255256+

it.runIf(process.platform !== "win32")(

257+

"reports configured blocked plugins without stale not-found wording",

258+

async () => {

259+

await fs.chmod(blockedPluginDir, 0o777);

260+

try {

261+

const res = validateInSuite({

262+

agents: { list: [{ id: "pi" }] },

263+

plugins: {

264+

enabled: true,

265+

load: { paths: [blockedPluginDir] },

266+

entries: { "blocked-plugin": { enabled: true } },

267+

allow: ["blocked-plugin"],

268+

},

269+

});

270+271+

expect(res.ok).toBe(true);

272+

if (!res.ok) {

273+

return;

274+

}

275+

expect(res.warnings).toEqual(

276+

expect.arrayContaining([

277+

expect.objectContaining({

278+

path: "plugins.entries.blocked-plugin",

279+

message: expect.stringContaining("plugin present but blocked: blocked-plugin"),

280+

}),

281+

expect.objectContaining({

282+

path: "plugins.allow",

283+

message: expect.stringContaining("plugin present but blocked: blocked-plugin"),

284+

}),

285+

]),

286+

);

287+

expect(

288+

res.warnings.some(

289+

(warning) =>

290+

warning.message.includes("plugin not found: blocked-plugin") ||

291+

warning.message.includes("remove it from plugins config"),

292+

),

293+

).toBe(false);

294+

} finally {

295+

await chmodSafeDir(blockedPluginDir);

296+

}

297+

},

298+

);

299+300+

it("maps legacy blocked diagnostics without plugin ids to configured load paths", () => {

301+

const res = validateConfigObjectWithPlugins(

302+

{

303+

agents: { list: [{ id: "pi" }] },

304+

plugins: {

305+

enabled: true,

306+

load: { paths: [blockedPluginDir] },

307+

entries: { "blocked-plugin": { enabled: true } },

308+

allow: ["blocked-plugin"],

309+

},

310+

},

311+

{

312+

env: suiteEnv(),

313+

pluginMetadataSnapshot: {

314+

manifestRegistry: {

315+

plugins: [],

316+

diagnostics: [

317+

{

318+

level: "warn",

319+

source: path.join(blockedPluginDir, "index.js"),

320+

message: `blocked plugin candidate: world-writable path (${blockedPluginDir}, mode=0777)`,

321+

},

322+

],

323+

},

324+

},

325+

},

326+

);

327+328+

expect(res.ok).toBe(true);

329+

if (!res.ok) {

330+

return;

331+

}

332+

expect(res.warnings).toEqual(

333+

expect.arrayContaining([

334+

expect.objectContaining({

335+

path: "plugins.entries.blocked-plugin",

336+

message: expect.stringContaining("plugin present but blocked: blocked-plugin"),

337+

}),

338+

expect.objectContaining({

339+

path: "plugins.allow",

340+

message: expect.stringContaining("plugin present but blocked: blocked-plugin"),

341+

}),

342+

]),

343+

);

344+

expect(

345+

res.warnings.some((warning) => warning.message.includes("plugin not found: blocked-plugin")),

346+

).toBe(false);

347+

});

348+349+

it("does not source-match blocked diagnostics that already name a different plugin id", () => {

350+

const aliasDir = path.join(suiteHome, "alias-dir");

351+

const res = validateConfigObjectWithPlugins(

352+

{

353+

agents: { list: [{ id: "pi" }] },

354+

plugins: {

355+

enabled: true,

356+

load: { paths: [aliasDir] },

357+

entries: {

358+

"actual-id": { enabled: true },

359+

"alias-dir": { enabled: true },

360+

},

361+

allow: ["actual-id", "alias-dir"],

362+

},

363+

},

364+

{

365+

env: suiteEnv(),

366+

pluginMetadataSnapshot: {

367+

manifestRegistry: {

368+

plugins: [],

369+

diagnostics: [

370+

{

371+

level: "warn",

372+

pluginId: "actual-id",

373+

source: path.join(aliasDir, "index.js"),

374+

message: `blocked plugin candidate: world-writable path (${aliasDir}, mode=0777)`,

375+

},

376+

],

377+

},

378+

},

379+

},

380+

);

381+382+

expect(res.ok).toBe(true);

383+

if (!res.ok) {

384+

return;

385+

}

386+

expect(res.warnings).toEqual(

387+

expect.arrayContaining([

388+

expect.objectContaining({

389+

path: "plugins.entries.actual-id",

390+

message: expect.stringContaining("plugin present but blocked: actual-id"),

391+

}),

392+

expect.objectContaining({

393+

path: "plugins.allow",

394+

message: expect.stringContaining("plugin present but blocked: actual-id"),

395+

}),

396+

expect.objectContaining({

397+

path: "plugins.entries.alias-dir",

398+

message:

399+

"plugin not found: alias-dir (stale config entry ignored; remove it from plugins config)",

400+

}),

401+

expect.objectContaining({

402+

path: "plugins.allow",

403+

message:

404+

"plugin not found: alias-dir (stale config entry ignored; remove it from plugins config)",

405+

}),

406+

]),

407+

);

408+

expect(

409+

res.warnings.some((warning) =>

410+

warning.message.includes("plugin present but blocked: alias-dir"),

411+

),

412+

).toBe(false);

413+

});

414+249415

it("warns instead of failing for stale channel config backed by missing plugin refs", async () => {

250416

const res = validateInSuite({

251417

agents: { list: [{ id: "pi" }] },