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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

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(test): avoid walking plugin tool contracts · openclaw...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main

@@ -1,6 +1,7 @@

1+

import { spawnSync } from "node:child_process";

12

import fs from "node:fs";

23

import path from "node:path";

3-

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

4+

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

4556

type PluginManifestFile = {

67

id?: unknown;

@@ -10,6 +11,11 @@ type PluginManifestFile = {

1011

};

11121213

function walkFiles(dir: string): string[] {

14+

const gitFiles = listGitFiles(dir);

15+

if (gitFiles) {

16+

return gitFiles;

17+

}

18+1319

const files: string[] = [];

1420

for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {

1521

if (entry.name === "node_modules" || entry.name === "dist" || entry.name.startsWith(".")) {

@@ -25,6 +31,71 @@ function walkFiles(dir: string): string[] {

2531

return files;

2632

}

273334+

function repoRelativePath(filePath: string): string {

35+

return path.relative(process.cwd(), filePath).split(path.sep).join("/");

36+

}

37+38+

function isSkippedRepoPath(relativePath: string): boolean {

39+

return relativePath

40+

.split("/")

41+

.some((part) => part === "node_modules" || part === "dist" || part.startsWith("."));

42+

}

43+44+

function listGitFiles(dir: string): string[] | null {

45+

const relativeDir = repoRelativePath(dir);

46+

if (!relativeDir || relativeDir.startsWith("..") || path.isAbsolute(relativeDir)) {

47+

return null;

48+

}

49+

const result = spawnSync("git", ["ls-files", "--", relativeDir], {

50+

cwd: process.cwd(),

51+

encoding: "utf8",

52+

stdio: ["ignore", "pipe", "ignore"],

53+

});

54+

if (result.status !== 0) {

55+

return null;

56+

}

57+

return result.stdout

58+

.split("\n")

59+

.map((line) => line.trim().replaceAll("\\", "/"))

60+

.filter((line) => line.length > 0 && !isSkippedRepoPath(line))

61+

.map((line) => path.join(process.cwd(), ...line.split("/")))

62+

.toSorted();

63+

}

64+65+

function listGitPluginManifestPaths(extensionsDir: string): string[] | null {

66+

const relativeDir = repoRelativePath(extensionsDir);

67+

if (!relativeDir || relativeDir.startsWith("..") || path.isAbsolute(relativeDir)) {

68+

return null;

69+

}

70+

const result = spawnSync("git", ["ls-files", "--", relativeDir], {

71+

cwd: process.cwd(),

72+

encoding: "utf8",

73+

stdio: ["ignore", "pipe", "ignore"],

74+

});

75+

if (result.status !== 0) {

76+

return null;

77+

}

78+

return result.stdout

79+

.split("\n")

80+

.map((line) => line.trim().replaceAll("\\", "/"))

81+

.filter((line) => /^extensions\/[^/]+\/openclaw\.plugin\.json$/u.test(line))

82+

.map((line) => path.join(process.cwd(), ...line.split("/")))

83+

.toSorted();

84+

}

85+86+

function listPluginManifestPaths(extensionsDir: string): string[] {

87+

const gitPaths = listGitPluginManifestPaths(extensionsDir);

88+

if (gitPaths) {

89+

return gitPaths;

90+

}

91+92+

return fs

93+

.readdirSync(extensionsDir, { withFileTypes: true })

94+

.filter((entry) => entry.isDirectory() && !entry.name.startsWith("."))

95+

.map((entry) => path.join(extensionsDir, entry.name, "openclaw.plugin.json"))

96+

.filter((manifestPath) => fs.existsSync(manifestPath));

97+

}

98+2899

function isProductionSource(filePath: string): boolean {

29100

if (!/\.(?:cjs|mjs|js|ts|tsx)$/.test(filePath)) {

30101

return false;

@@ -202,22 +273,31 @@ function normalizeManifestTools(value: unknown): string[] {

202273

}

203274204275

describe("bundled plugin tool manifest contracts", () => {

276+

it("lists plugin tool contract inputs from git without walking extension roots", () => {

277+

const extensionsDir = path.join(process.cwd(), "extensions");

278+

const readDir = vi.spyOn(fs, "readdirSync");

279+

try {

280+

const manifestPaths = listPluginManifestPaths(extensionsDir);

281+

const sourceFiles = manifestPaths.flatMap((manifestPath) =>

282+

walkFiles(path.dirname(manifestPath)).filter(isProductionSource),

283+

);

284+285+

expect(manifestPaths.length).toBeGreaterThan(0);

286+

expect(sourceFiles.length).toBeGreaterThan(0);

287+

expect(readDir).not.toHaveBeenCalled();

288+

} finally {

289+

readDir.mockRestore();

290+

}

291+

});

292+205293

it("declares every production registerTool owner in contracts.tools", () => {

206294

const extensionsDir = path.join(process.cwd(), "extensions");

207295

const failures: string[] = [];

208296209-

for (const entry of fs.readdirSync(extensionsDir, { withFileTypes: true })) {

210-

if (!entry.isDirectory() || entry.name.startsWith(".")) {

211-

continue;

212-

}

213-

const pluginDir = path.join(extensionsDir, entry.name);

214-

const manifestPath = path.join(pluginDir, "openclaw.plugin.json");

215-

if (!fs.existsSync(manifestPath)) {

216-

continue;

217-

}

218-297+

for (const manifestPath of listPluginManifestPaths(extensionsDir)) {

298+

const pluginDir = path.dirname(manifestPath);

219299

const manifest = readManifest(manifestPath);

220-

const pluginId = typeof manifest.id === "string" ? manifest.id : entry.name;

300+

const pluginId = typeof manifest.id === "string" ? manifest.id : path.basename(pluginDir);

221301

const declaredTools = new Set(normalizeManifestTools(manifest.contracts?.tools));

222302

const registeredNames = new Set<string>();

223303

let registerCallCount = 0;