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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
H
Help Net Security
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
C
Check Point Blog
F
Fortinet All Blogs
腾讯CDC
博客园 - Franky
WordPress大学
WordPress大学
U
Unit 42

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(daemon): filter missing service path fallbacks · open...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -13,10 +13,14 @@ import {

1313

} from "./service-env.js";

14141515

describe("getMinimalServicePathParts - Linux user directories", () => {

16+

const allExist = (): boolean => true;

17+

const noneExist = (): boolean => false;

18+1619

it("includes user bin directories when HOME is set on Linux", () => {

1720

const result = getMinimalServicePathParts({

1821

platform: "linux",

1922

home: "/home/testuser",

23+

existsSync: allExist,

2024

});

21252226

// Should include all common user bin directories

@@ -53,6 +57,7 @@ describe("getMinimalServicePathParts - Linux user directories", () => {

5357

const result = getMinimalServicePathParts({

5458

platform: "linux",

5559

home: "/home/testuser",

60+

existsSync: allExist,

5661

});

57625863

const userDirIndex = result.indexOf("/home/testuser/.local/bin");

@@ -68,6 +73,7 @@ describe("getMinimalServicePathParts - Linux user directories", () => {

6873

platform: "linux",

6974

home: "/home/testuser",

7075

extraDirs: ["/custom/bin"],

76+

existsSync: allExist,

7177

});

72787379

const extraDirIndex = result.indexOf("/custom/bin");

@@ -91,6 +97,7 @@ describe("getMinimalServicePathParts - Linux user directories", () => {

9197

NVM_DIR: "/opt/nvm",

9298

FNM_DIR: "/opt/fnm",

9399

},

100+

existsSync: allExist,

94101

});

9510296103

expect(result).toContain("/opt/pnpm");

@@ -107,6 +114,7 @@ describe("getMinimalServicePathParts - Linux user directories", () => {

107114

const result = getMinimalServicePathParts({

108115

platform: "darwin",

109116

home: "/Users/testuser",

117+

existsSync: allExist,

110118

});

111119112120

// Should include common user bin directories

@@ -138,6 +146,7 @@ describe("getMinimalServicePathParts - Linux user directories", () => {

138146

NVM_DIR: "/Users/testuser/.nvm",

139147

PNPM_HOME: "/Users/testuser/Library/pnpm",

140148

},

149+

existsSync: allExist,

141150

});

142151143152

// fnm uses aliases/default/bin (not current)

@@ -152,6 +161,7 @@ describe("getMinimalServicePathParts - Linux user directories", () => {

152161

const result = getMinimalServicePathParts({

153162

platform: "darwin",

154163

home: "/Users/testuser",

164+

existsSync: allExist,

155165

});

156166157167

// fnm on macOS defaults to ~/Library/Application Support/fnm

@@ -169,18 +179,105 @@ describe("getMinimalServicePathParts - Linux user directories", () => {

169179

const result = getMinimalServicePathParts({

170180

platform: "win32",

171181

home: "C:\\Users\\testuser",

182+

existsSync: allExist,

172183

});

173184174185

// Windows returns empty array (uses existing PATH)

175186

expect(result).toEqual([]);

176187

});

188+189+

it("omits hard-coded version-manager fallbacks on Linux when missing", () => {

190+

const result = getMinimalServicePathParts({

191+

platform: "linux",

192+

home: "/home/testuser",

193+

existsSync: noneExist,

194+

});

195+196+

expect(result).toContain("/home/testuser/.local/bin");

197+

expect(result).toContain("/home/testuser/.npm-global/bin");

198+

expect(result).toContain("/home/testuser/bin");

199+

expect(result).toContain("/home/testuser/.nix-profile/bin");

200+

expect(result).not.toContain("/home/testuser/.volta/bin");

201+

expect(result).not.toContain("/home/testuser/.asdf/shims");

202+

expect(result).not.toContain("/home/testuser/.bun/bin");

203+

expect(result).not.toContain("/home/testuser/.nvm/current/bin");

204+

expect(result).not.toContain("/home/testuser/.local/share/fnm/aliases/default/bin");

205+

expect(result).not.toContain("/home/testuser/.local/share/fnm/current/bin");

206+

expect(result).not.toContain("/home/testuser/.fnm/aliases/default/bin");

207+

expect(result).not.toContain("/home/testuser/.fnm/current/bin");

208+

expect(result).not.toContain("/home/testuser/.local/share/pnpm");

209+

});

210+211+

it("omits hard-coded version-manager fallbacks on macOS when missing", () => {

212+

const result = getMinimalServicePathParts({

213+

platform: "darwin",

214+

home: "/Users/testuser",

215+

existsSync: noneExist,

216+

});

217+218+

expect(result).toContain("/Users/testuser/.local/bin");

219+

expect(result).toContain("/Users/testuser/.npm-global/bin");

220+

expect(result).toContain("/Users/testuser/bin");

221+

expect(result).toContain("/Users/testuser/.nix-profile/bin");

222+

expect(result).not.toContain("/Users/testuser/.volta/bin");

223+

expect(result).not.toContain("/Users/testuser/.asdf/shims");

224+

expect(result).not.toContain("/Users/testuser/.bun/bin");

225+

expect(result).not.toContain(

226+

"/Users/testuser/Library/Application Support/fnm/aliases/default/bin",

227+

);

228+

expect(result).not.toContain("/Users/testuser/.fnm/aliases/default/bin");

229+

expect(result).not.toContain("/Users/testuser/Library/pnpm");

230+

expect(result).not.toContain("/Users/testuser/.local/share/pnpm");

231+

});

232+233+

it("keeps env-configured roots when fallback directories are missing", () => {

234+

const result = getMinimalServicePathPartsFromEnv({

235+

platform: "linux",

236+

env: {

237+

HOME: "/home/testuser",

238+

PNPM_HOME: "/opt/pnpm",

239+

VOLTA_HOME: "/opt/volta",

240+

BUN_INSTALL: "/opt/bun",

241+

ASDF_DATA_DIR: "/opt/asdf",

242+

NVM_DIR: "/opt/nvm",

243+

FNM_DIR: "/opt/fnm",

244+

},

245+

existsSync: noneExist,

246+

});

247+248+

expect(result).toContain("/opt/pnpm");

249+

expect(result).toContain("/opt/volta/bin");

250+

expect(result).toContain("/opt/bun/bin");

251+

expect(result).toContain("/opt/asdf/shims");

252+

expect(result).toContain("/opt/nvm/current/bin");

253+

expect(result).toContain("/opt/fnm/aliases/default/bin");

254+

expect(result).toContain("/opt/fnm/current/bin");

255+

});

256+257+

it("emits only existing hard-coded version-manager fallbacks", () => {

258+

const exists = (candidate: string) =>

259+

candidate === "/home/testuser/.volta/bin" ||

260+

candidate === "/home/testuser/.local/share/fnm/aliases/default/bin";

261+

const result = getMinimalServicePathParts({

262+

platform: "linux",

263+

home: "/home/testuser",

264+

existsSync: exists,

265+

});

266+267+

expect(result).toContain("/home/testuser/.volta/bin");

268+

expect(result).toContain("/home/testuser/.local/share/fnm/aliases/default/bin");

269+

expect(result).not.toContain("/home/testuser/.bun/bin");

270+

expect(result).not.toContain("/home/testuser/.asdf/shims");

271+

expect(result).not.toContain("/home/testuser/.fnm/aliases/default/bin");

272+

});

177273

});

178274179275

describe("getMinimalServicePathParts - Nix Home Manager", () => {

180276

it("falls back to default Nix profile when NIX_PROFILES is absent on Linux", () => {

181277

const result = getMinimalServicePathParts({

182278

platform: "linux",

183279

home: "/home/testuser",

280+

existsSync: () => true,

184281

});

185282186283

expect(result).toContain("/home/testuser/.nix-profile/bin");

@@ -190,6 +287,7 @@ describe("getMinimalServicePathParts - Nix Home Manager", () => {

190287

const result = getMinimalServicePathParts({

191288

platform: "darwin",

192289

home: "/Users/testuser",

290+

existsSync: () => true,

193291

});

194292195293

expect(result).toContain("/Users/testuser/.nix-profile/bin");

@@ -202,6 +300,7 @@ describe("getMinimalServicePathParts - Nix Home Manager", () => {

202300

HOME: "/home/testuser",

203301

NIX_PROFILES: "/nix/var/nix/profiles/default /home/testuser/.nix-profile",

204302

},

303+

existsSync: () => true,

205304

});

206305207306

const userIdx = result.indexOf("/home/testuser/.nix-profile/bin");

@@ -218,6 +317,7 @@ describe("getMinimalServicePathParts - Nix Home Manager", () => {

218317

HOME: "/Users/testuser",

219318

NIX_PROFILES: "/nix/var/nix/profiles/default /Users/testuser/.nix-profile",

220319

},

320+

existsSync: () => true,

221321

});

222322223323

const userIdx = result.indexOf("/Users/testuser/.nix-profile/bin");

@@ -234,6 +334,7 @@ describe("getMinimalServicePathParts - Nix Home Manager", () => {

234334

HOME: "/home/testuser",

235335

NIX_PROFILES: "/nix/var/nix/profiles/per-user/testuser/profile",

236336

},

337+

existsSync: () => true,

237338

});

238339239340

expect(result).toContain("/nix/var/nix/profiles/per-user/testuser/profile/bin");

@@ -246,6 +347,7 @@ describe("getMinimalServicePathParts - Nix Home Manager", () => {

246347

HOME: "/Users/testuser",

247348

NIX_PROFILES: "/nix/var/nix/profiles/per-user/testuser/profile",

248349

},

350+

existsSync: () => true,

249351

});

250352251353

expect(result).toContain("/nix/var/nix/profiles/per-user/testuser/profile/bin");

@@ -259,6 +361,7 @@ describe("getMinimalServicePathParts - Nix Home Manager", () => {

259361

NIX_PROFILES:

260362

"/nix/var/nix/profiles/default /nix/var/nix/profiles/per-user/testuser/custom /home/testuser/.nix-profile",

261363

},

364+

existsSync: () => true,

262365

});

263366264367

const userIdx = result.indexOf("/home/testuser/.nix-profile/bin");

@@ -299,6 +402,7 @@ describe("buildMinimalServicePath", () => {

299402

const result = buildMinimalServicePath({

300403

platform: "linux",

301404

env: { HOME: "/home/alice" },

405+

existsSync: () => true,

302406

});

303407

const parts = splitPath(result, "linux");

304408

@@ -332,6 +436,7 @@ describe("buildMinimalServicePath", () => {

332436

const result = buildMinimalServicePath({

333437

platform: "linux",

334438

env: { HOME: "/home/bob" },

439+

existsSync: () => true,

335440

});

336441

const parts = splitPath(result, "linux");

337442

@@ -366,6 +471,7 @@ describe("buildMinimalServicePath", () => {

366471

platform: "linux",

367472

extraDirs: ["/home/alice/.nvm/versions/node/v22.22.0/bin"],

368473

env: { HOME: "/home/alice" },

474+

existsSync: () => true,

369475

});

370476

const parts = splitPath(result, "linux");

371477