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

推荐订阅源

罗磊的独立博客
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
U
Unit 42
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
腾讯CDC
I
InfoQ
GbyAI
GbyAI
博客园_首页

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(e2e): select installable bundled plugins · openclaw/...
vincentkoc · 2026-05-25 · via Recent Commits to openclaw:main

@@ -1,53 +1,93 @@

1+

import { spawnSync } from "node:child_process";

12

import fs from "node:fs";

23

import path from "node:path";

3445

const readJson = (file) => JSON.parse(fs.readFileSync(file, "utf8"));

566-

function loadManifestEntries() {

7-

const explicit = (process.env.OPENCLAW_BUNDLED_PLUGIN_SWEEP_IDS || "")

8-

.split(/[,\s]+/u)

9-

.map((entry) => entry.trim())

10-

.filter(Boolean);

11-

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

12-

const manifestEntries = fs

13-

.readdirSync(extensionRoot, { withFileTypes: true })

14-

.filter((entry) => entry.isDirectory())

15-

.map((entry) => {

16-

const manifestPath = path.join(extensionRoot, entry.name, "openclaw.plugin.json");

17-

if (!fs.existsSync(manifestPath)) {

7+

function resolveOpenClawEntry() {

8+

if (process.env.OPENCLAW_ENTRY) {

9+

return process.env.OPENCLAW_ENTRY;

10+

}

11+

for (const entry of ["dist/index.mjs", "dist/index.js"]) {

12+

if (fs.existsSync(entry)) {

13+

return entry;

14+

}

15+

}

16+

throw new Error("Missing OPENCLAW_ENTRY and dist/index.(m)js");

17+

}

18+19+

function readPluginsList() {

20+

const entry = resolveOpenClawEntry();

21+

const result = spawnSync(process.execPath, [entry, "plugins", "list", "--json"], {

22+

cwd: process.cwd(),

23+

encoding: "utf8",

24+

env: process.env,

25+

});

26+

if (result.status !== 0) {

27+

throw new Error(

28+

`Unable to list packaged bundled plugins: ${result.stderr || result.stdout || `exit ${result.status}`}`,

29+

);

30+

}

31+

const payload = JSON.parse(result.stdout);

32+

return Array.isArray(payload.plugins) ? payload.plugins : [];

33+

}

34+35+

function pluginRequiresConfig(pluginDir) {

36+

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

37+

if (!fs.existsSync(manifestPath)) {

38+

throw new Error(`missing bundled plugin manifest: ${manifestPath}`);

39+

}

40+

const manifest = readJson(manifestPath);

41+

const required = manifest.configSchema?.required;

42+

return Array.isArray(required) && required.some((value) => typeof value === "string");

43+

}

44+45+

async function loadPackagedBundledEntries() {

46+

return readPluginsList()

47+

.filter((plugin) => plugin?.origin === "bundled")

48+

.map((plugin) => {

49+

const id = typeof plugin.id === "string" ? plugin.id.trim() : "";

50+

const rootDir = typeof plugin.rootDir === "string" ? plugin.rootDir.trim() : "";

51+

const source = typeof plugin.source === "string" ? plugin.source.trim() : "";

52+

const pluginDir = rootDir || (source ? path.dirname(source) : "");

53+

if (!id || !pluginDir) {

1854

return null;

1955

}

20-

const manifest = readJson(manifestPath);

21-

const id = typeof manifest.id === "string" ? manifest.id.trim() : "";

22-

if (!id) {

23-

throw new Error(`Bundled plugin manifest is missing id: ${manifestPath}`);

24-

}

25-

const required = manifest.configSchema?.required;

2656

return {

2757

id,

28-

dir: entry.name,

29-

requiresConfig:

30-

Array.isArray(required) && required.some((value) => typeof value === "string"),

58+

dir: path.basename(pluginDir),

59+

rootDir: pluginDir,

60+

requiresConfig: pluginRequiresConfig(pluginDir),

3161

};

3262

})

3363

.filter(Boolean)

3464

.toSorted((a, b) => a.id.localeCompare(b.id));

65+

}

66+67+

async function loadManifestEntries() {

68+

const explicit = (process.env.OPENCLAW_BUNDLED_PLUGIN_SWEEP_IDS || "")

69+

.split(/[,\s]+/u)

70+

.map((entry) => entry.trim())

71+

.filter(Boolean);

72+

const manifestEntries = await loadPackagedBundledEntries();

35733674

if (explicit.length === 0) {

3775

return manifestEntries;

3876

}

39-

return explicit.map(

40-

(lookup) =>

41-

manifestEntries.find((entry) => entry.id === lookup || entry.dir === lookup) || {

42-

id: lookup,

43-

dir: lookup,

44-

requiresConfig: false,

45-

},

46-

);

77+

const available = manifestEntries.map((entry) => entry.id).join(", ");

78+

return explicit.map((lookup) => {

79+

const found = manifestEntries.find((entry) => entry.id === lookup || entry.dir === lookup);

80+

if (!found) {

81+

throw new Error(

82+

`OPENCLAW_BUNDLED_PLUGIN_SWEEP_IDS entry is not an installable bundled plugin in this package: ${lookup}. Available: ${available}`,

83+

);

84+

}

85+

return found;

86+

});

4787

}

488849-

function selectedManifestEntries() {

50-

const allEntries = loadManifestEntries();

89+

async function selectedManifestEntries() {

90+

const allEntries = await loadManifestEntries();

5191

const total = Number.parseInt(process.env.OPENCLAW_BUNDLED_PLUGIN_SWEEP_TOTAL || "1", 10);

5292

const index = Number.parseInt(process.env.OPENCLAW_BUNDLED_PLUGIN_SWEEP_INDEX || "0", 10);

5393

if (!Number.isInteger(total) || total < 1) {

@@ -85,15 +125,23 @@ function assertInstalled(pluginId, pluginDir, requiresConfig) {

85125

}

86126

if (

87127

typeof record.sourcePath !== "string" ||

88-

!record.sourcePath.includes(`/dist/extensions/${pluginDir}`)

128+

![`/dist/extensions/${pluginDir}`, `/dist-runtime/extensions/${pluginDir}`].some((fragment) =>

129+

record.sourcePath.includes(fragment),

130+

)

89131

) {

90132

throw new Error(`unexpected bundled source path for ${pluginId}: ${record.sourcePath}`);

91133

}

92134

if (record.installPath !== record.sourcePath) {

93135

throw new Error(`bundled install path should equal source path for ${pluginId}`);

94136

}

95137

const paths = config.plugins?.load?.paths || [];

96-

if (paths.some((entry) => String(entry).includes(`/dist/extensions/${pluginDir}`))) {

138+

if (

139+

paths.some((entry) =>

140+

[`/dist/extensions/${pluginDir}`, `/dist-runtime/extensions/${pluginDir}`].some(

141+

(fragment) => String(entry).includes(fragment),

142+

),

143+

)

144+

) {

97145

throw new Error(`config load paths should not include bundled install path for ${pluginId}`);

98146

}

99147

if (requiresConfig && config.plugins?.entries?.[pluginId]?.enabled === true) {

@@ -123,7 +171,13 @@ function assertUninstalled(pluginId, pluginDir) {

123171

throw new Error(`install record still present after uninstall for ${pluginId}`);

124172

}

125173

const paths = config.plugins?.load?.paths || [];

126-

if (paths.some((entry) => String(entry).includes(`/dist/extensions/${pluginDir}`))) {

174+

if (

175+

paths.some((entry) =>

176+

[`/dist/extensions/${pluginDir}`, `/dist-runtime/extensions/${pluginDir}`].some(

177+

(fragment) => String(entry).includes(fragment),

178+

),

179+

)

180+

) {

127181

throw new Error(`load path still present after uninstall for ${pluginId}`);

128182

}

129183

if (config.plugins?.entries?.[pluginId]) {

@@ -145,8 +199,8 @@ function assertUninstalled(pluginId, pluginDir) {

145199146200

const [command, pluginId, pluginDir, requiresConfig] = process.argv.slice(2);

147201

if (command === "select") {

148-

for (const entry of selectedManifestEntries()) {

149-

console.log(`${entry.id}\t${entry.dir}\t${entry.requiresConfig ? "1" : "0"}`);

202+

for (const entry of await selectedManifestEntries()) {

203+

console.log(`${entry.id}\t${entry.dir}\t${entry.requiresConfig ? "1" : "0"}\t${entry.rootDir}`);

150204

}

151205

} else if (command === "assert-installed") {

152206

assertInstalled(pluginId, pluginDir, requiresConfig === "1");