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

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
V
Visual Studio Blog
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
I
InfoQ
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
B
Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
量子位
Hugging Face - Blog
Hugging Face - 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(cli): handle Bun launcher module misses · openclaw/op...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -15,6 +15,26 @@ async function makeLauncherFixture(fixtureRoots: string[]): Promise<string> {

1515

return fixtureRoot;

1616

}

171718+

async function makeLauncherProbeFixture(

19+

fixtureRoots: string[],

20+

probeSource: string,

21+

): Promise<string> {

22+

const fixtureRoot = await makeLauncherFixture(fixtureRoots);

23+

const launcherPath = path.join(fixtureRoot, "openclaw.mjs");

24+

const launcher = await fs.readFile(launcherPath, "utf8");

25+

const bootstrapStart = "\nif (!waitingForCompileCacheRespawn) {";

26+

const bootstrapIndex = launcher.indexOf(bootstrapStart);

27+

if (bootstrapIndex < 0) {

28+

throw new Error("openclaw launcher bootstrap block was not found");

29+

}

30+

await fs.writeFile(

31+

launcherPath,

32+

`${launcher.slice(0, bootstrapIndex)}\n${probeSource}\n`,

33+

"utf8",

34+

);

35+

return fixtureRoot;

36+

}

37+1838

async function addSourceTreeMarker(fixtureRoot: string): Promise<void> {

1939

await fs.mkdir(path.join(fixtureRoot, "src"), { recursive: true });

2040

await fs.writeFile(path.join(fixtureRoot, "src", "entry.ts"), "export {};\n", "utf8");

@@ -98,6 +118,14 @@ function launcherEnv(extra: NodeJS.ProcessEnv = {}): NodeJS.ProcessEnv {

98118

return env;

99119

}

100120121+

function hasBunRuntime(): boolean {

122+

return (

123+

spawnSync(process.env.BUN_BIN ?? "bun", ["--version"], {

124+

encoding: "utf8",

125+

}).status === 0

126+

);

127+

}

128+101129

describe("openclaw launcher", () => {

102130

const fixtureRoots: string[] = [];

103131

@@ -203,6 +231,113 @@ describe("openclaw launcher", () => {

203231

expect(result.stderr).toContain("missing dist/entry.(m)js");

204232

});

205233234+

it("treats Bun direct optional import misses as direct launcher misses", async () => {

235+

const fixtureRoot = await makeLauncherProbeFixture(

236+

fixtureRoots,

237+

[

238+

"const result = {",

239+

" direct: isDirectModuleNotFoundError(",

240+

" { message: `Cannot find module './dist/warning-filter.js' from '${fileURLToPath(import.meta.url)}'` },",

241+

" './dist/warning-filter.js',",

242+

" ),",

243+

" directWithCode: isDirectModuleNotFoundError(",

244+

" { code: 'ERR_MODULE_NOT_FOUND', message: `Cannot find module './dist/warning-filter.js' from '${fileURLToPath(import.meta.url)}'` },",

245+

" './dist/warning-filter.js',",

246+

" ),",

247+

" transitive: isDirectModuleNotFoundError(",

248+

" { message: \"Cannot find module './nested.js' from '/pkg/openclaw/dist/entry.js'\" },",

249+

" './dist/entry.js',",

250+

" ),",

251+

" sameSpecifierTransitive: isDirectModuleNotFoundError(",

252+

" { message: \"Cannot find module './dist/entry.js' from '/pkg/openclaw/dist/entry.js'\" },",

253+

" './dist/entry.js',",

254+

" ),",

255+

" nonModuleUrl: isDirectModuleNotFoundError(",

256+

" { message: 'boom', url: new URL('./dist/warning-filter.js', import.meta.url).href },",

257+

" './dist/warning-filter.js',",

258+

" ),",

259+

" nonModulePath: isDirectModuleNotFoundError(",

260+

" { message: `Cannot find module '${fileURLToPath(new URL('./dist/warning-filter.js', import.meta.url))}'` },",

261+

" './dist/warning-filter.js',",

262+

" ),",

263+

"};",

264+

"process.stdout.write(`${JSON.stringify(result)}\\n`);",

265+

].join("\n"),

266+

);

267+268+

const result = spawnSync(process.execPath, [path.join(fixtureRoot, "openclaw.mjs")], {

269+

cwd: fixtureRoot,

270+

env: launcherEnv(),

271+

encoding: "utf8",

272+

});

273+274+

expect(result.status).toBe(0);

275+

expect(JSON.parse(result.stdout)).toEqual({

276+

direct: true,

277+

directWithCode: true,

278+

nonModulePath: false,

279+

nonModuleUrl: false,

280+

sameSpecifierTransitive: false,

281+

transitive: false,

282+

});

283+

});

284+285+

it.runIf(process.env.OPENCLAW_TEST_BUN_LAUNCHER === "1" && hasBunRuntime())(

286+

"falls through Bun optional warning filter misses",

287+

async () => {

288+

const fixtureRoot = await makeLauncherFixture(fixtureRoots);

289+

await fs.writeFile(

290+

path.join(fixtureRoot, "dist", "entry.js"),

291+

"process.stdout.write('bun entry ok\\n');\n",

292+

"utf8",

293+

);

294+295+

const result = spawnSync(

296+

process.env.BUN_BIN ?? "bun",

297+

[path.join(fixtureRoot, "openclaw.mjs")],

298+

{

299+

cwd: fixtureRoot,

300+

env: launcherEnv(),

301+

encoding: "utf8",

302+

},

303+

);

304+305+

expect(result.status).toBe(0);

306+

expect(result.stdout).toBe("bun entry ok\n");

307+

},

308+

);

309+310+

it.runIf(process.env.OPENCLAW_TEST_BUN_LAUNCHER === "1" && hasBunRuntime())(

311+

"surfaces Bun transitive entry misses with the same raw specifier",

312+

async () => {

313+

const fixtureRoot = await makeLauncherFixture(fixtureRoots);

314+

await fs.writeFile(

315+

path.join(fixtureRoot, "dist", "warning-filter.js"),

316+

"export function installProcessWarningFilter() {}\n",

317+

"utf8",

318+

);

319+

await fs.writeFile(

320+

path.join(fixtureRoot, "dist", "entry.js"),

321+

'import "./dist/entry.js";\n',

322+

"utf8",

323+

);

324+325+

const result = spawnSync(

326+

process.env.BUN_BIN ?? "bun",

327+

[path.join(fixtureRoot, "openclaw.mjs"), "--help"],

328+

{

329+

cwd: fixtureRoot,

330+

env: launcherEnv(),

331+

encoding: "utf8",

332+

},

333+

);

334+335+

expect(result.status).not.toBe(0);

336+

expect(result.stderr).toContain("Cannot find module './dist/entry.js'");

337+

expect(result.stderr).not.toContain("missing dist/entry.(m)js");

338+

},

339+

);

340+206341

it("uses precomputed root help when plugin config does not invalidate it", async () => {

207342

const fixtureRoot = await makeLauncherFixture(fixtureRoots);

208343

await fs.writeFile(