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

推荐订阅源

H
Help Net Security
月光博客
月光博客
IT之家
IT之家
B
Blog RSS Feed
T
Tailwind CSS Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - Franky
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
博客园_首页
B
Blog
V
V2EX
腾讯CDC
Vercel News
Vercel News
量子位
Microsoft Security Blog
Microsoft Security Blog

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(e2e): harden bundled lifecycle probe on Windows · ope...
vincentkoc · 2026-05-25 · via Recent Commits to openclaw:main

@@ -1,8 +1,26 @@

11

import { spawnSync } from "node:child_process";

22

import fs from "node:fs";

3+

import os from "node:os";

34

import path from "node:path";

4556

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

7+

const normalizePathForProbe = (value) => String(value ?? "").replace(/\\/g, "/");

8+

const bundledRuntimeFragments = (pluginDir) => [

9+

`/dist/extensions/${pluginDir}`,

10+

`/dist-runtime/extensions/${pluginDir}`,

11+

];

12+13+

function resolveStateDir() {

14+

if (process.env.OPENCLAW_STATE_DIR) {

15+

return process.env.OPENCLAW_STATE_DIR;

16+

}

17+

return path.join(process.env.HOME || os.homedir(), ".openclaw");

18+

}

19+20+

function pathReferencesBundledRuntime(value, pluginDir) {

21+

const normalized = normalizePathForProbe(value);

22+

return bundledRuntimeFragments(pluginDir).some((fragment) => normalized.includes(fragment));

23+

}

624725

function resolveOpenClawEntry() {

826

if (process.env.OPENCLAW_ENTRY) {

@@ -109,8 +127,9 @@ async function selectedManifestEntries() {

109127

}

110128111129

function assertInstalled(pluginId, pluginDir, requiresConfig) {

112-

const configPath = path.join(process.env.HOME, ".openclaw", "openclaw.json");

113-

const indexPath = path.join(process.env.HOME, ".openclaw", "plugins", "installs.json");

130+

const stateDir = resolveStateDir();

131+

const configPath = path.join(stateDir, "openclaw.json");

132+

const indexPath = path.join(stateDir, "plugins", "installs.json");

114133

const config = readJson(configPath);

115134

const index = readJson(indexPath);

116135

const records = index.installRecords ?? index.records ?? {};

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

125144

}

126145

if (

127146

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

128-

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

129-

record.sourcePath.includes(fragment),

130-

)

147+

!pathReferencesBundledRuntime(record.sourcePath, pluginDir)

131148

) {

132149

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

133150

}

134-

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

151+

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

135152

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

136153

}

137154

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

138-

if (

139-

paths.some((entry) =>

140-

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

141-

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

142-

),

143-

)

144-

) {

155+

if (paths.some((entry) => pathReferencesBundledRuntime(entry, pluginDir))) {

145156

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

146157

}

147158

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

@@ -162,22 +173,17 @@ function assertInstalled(pluginId, pluginDir, requiresConfig) {

162173

}

163174164175

function assertUninstalled(pluginId, pluginDir) {

165-

const configPath = path.join(process.env.HOME, ".openclaw", "openclaw.json");

166-

const indexPath = path.join(process.env.HOME, ".openclaw", "plugins", "installs.json");

176+

const stateDir = resolveStateDir();

177+

const configPath = path.join(stateDir, "openclaw.json");

178+

const indexPath = path.join(stateDir, "plugins", "installs.json");

167179

const config = fs.existsSync(configPath) ? readJson(configPath) : {};

168180

const index = fs.existsSync(indexPath) ? readJson(indexPath) : {};

169181

const records = index.installRecords ?? index.records ?? {};

170182

if (records[pluginId]) {

171183

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

172184

}

173185

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

174-

if (

175-

paths.some((entry) =>

176-

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

177-

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

178-

),

179-

)

180-

) {

186+

if (paths.some((entry) => pathReferencesBundledRuntime(entry, pluginDir))) {

181187

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

182188

}

183189

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

@@ -189,7 +195,7 @@ function assertUninstalled(pluginId, pluginDir) {

189195

if ((config.plugins?.deny || []).includes(pluginId)) {

190196

throw new Error(`denylist still contains ${pluginId} after uninstall`);

191197

}

192-

const managedPath = path.join(process.env.HOME, ".openclaw", "extensions", pluginId);

198+

const managedPath = path.join(stateDir, "extensions", pluginId);

193199

if (fs.existsSync(managedPath)) {

194200

throw new Error(

195201

`managed install directory unexpectedly exists for bundled plugin ${pluginId}: ${managedPath}`,