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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
D
DataBreaches.Net
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
腾讯CDC
博客园_首页
The Cloudflare Blog
S
SegmentFault 最新的问题
C
Check Point Blog
美团技术团队
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale

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(installer): tighten nonroot smoke node preflight · op...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,18 +1,66 @@

11

import { spawnSync } from "node:child_process";

22

import { readFileSync } from "node:fs";

3+

import { runInNewContext } from "node:vm";

34

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

4556

const SCRIPT_PATH = "scripts/test-install-sh-docker.sh";

67

const DOCKER_SETUP_PATH = "scripts/docker/setup.sh";

78

const PODMAN_SETUP_PATH = "scripts/podman/setup.sh";

89

const PODMAN_RUN_PATH = "scripts/run-openclaw-podman.sh";

910

const SMOKE_RUNNER_PATH = "scripts/docker/install-sh-smoke/run.sh";

11+

const NONROOT_RUNNER_PATH = "scripts/docker/install-sh-nonroot/run.sh";

1012

const BUN_GLOBAL_SMOKE_PATH = "scripts/e2e/bun-global-install-smoke.sh";

1113

const BUN_GLOBAL_ASSERTIONS_PATH = "scripts/e2e/lib/bun-global-install/assertions.mjs";

1214

const INSTALL_SMOKE_WORKFLOW_PATH = ".github/workflows/install-smoke.yml";

1315

const RELEASE_CHECKS_WORKFLOW_PATH = ".github/workflows/openclaw-release-checks.yml";

1416

const LIVE_E2E_WORKFLOW_PATH = ".github/workflows/openclaw-live-and-e2e-checks-reusable.yml";

151718+

class ScriptExit extends Error {

19+

constructor(readonly status: number) {

20+

super(`script exited ${String(status)}`);

21+

}

22+

}

23+24+

function extractNonrootNodePreflight(): string {

25+

const script = readFileSync(NONROOT_RUNNER_PATH, "utf8");

26+

const match = script.match(/node -e '\n([\s\S]*?)\n'\ncommand -v npm/u);

27+

if (!match) {

28+

throw new Error("non-root smoke Node preflight was not found");

29+

}

30+

return match[1];

31+

}

32+33+

function runNonrootNodePreflight(version: string, options: { sqlite?: boolean } = {}) {

34+

const stderr: string[] = [];

35+

try {

36+

runInNewContext(extractNonrootNodePreflight(), {

37+

process: {

38+

versions: { node: version },

39+

stderr: {

40+

write(message: string) {

41+

stderr.push(message);

42+

},

43+

},

44+

exit(status: number) {

45+

throw new ScriptExit(status);

46+

},

47+

},

48+

require(specifier: string) {

49+

if (specifier === "node:sqlite" && options.sqlite === false) {

50+

throw new Error("missing node:sqlite");

51+

}

52+

return {};

53+

},

54+

});

55+

return { status: 0, stderr: stderr.join("") };

56+

} catch (error) {

57+

if (error instanceof ScriptExit) {

58+

return { status: error.status, stderr: stderr.join("") };

59+

}

60+

throw error;

61+

}

62+

}

63+1664

describe("test-install-sh-docker", () => {

1765

it("defaults local Apple Silicon smoke runs to native arm64 while keeping CI on amd64", () => {

1866

const script = readFileSync(SCRIPT_PATH, "utf8");

@@ -96,6 +144,25 @@ describe("test-install-sh-docker", () => {

96144

expect(script).not.toContain("docker run --rm -t \\");

97145

});

98146147+

it("rejects stale non-root smoke Node runtimes below the runtime floor", () => {

148+

const result = runNonrootNodePreflight("22.18.0");

149+150+

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

151+

expect(result.stderr).toContain("unsupported node 22.18.0");

152+

});

153+154+

it("rejects non-root smoke Node runtimes without node:sqlite", () => {

155+

const result = runNonrootNodePreflight("22.19.0", { sqlite: false });

156+157+

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

158+

expect(result.stderr).toContain("unsupported node 22.19.0: missing node:sqlite");

159+

});

160+161+

it("accepts non-root smoke Node runtimes that match the installer runtime floor", () => {

162+

expect(runNonrootNodePreflight("22.19.0").status).toBe(0);

163+

expect(runNonrootNodePreflight("24.16.0").status).toBe(0);

164+

});

165+99166

it("runs the root Dockerfile build with the CI heap limit", () => {

100167

const dockerfile = readFileSync("Dockerfile", "utf8");

101168

@@ -128,7 +195,9 @@ describe("test-install-sh-docker", () => {

128195

expect(script).toContain('DOCKER_PULL_TIMEOUT="${OPENCLAW_DOCKER_SETUP_PULL_TIMEOUT:-600s}"');

129196

expect(script).toContain("run_docker_pull()");

130197

expect(script).toContain("timeout --kill-after=1s 1s true");

131-

expect(script).toContain('timeout --kill-after=30s "$DOCKER_PULL_TIMEOUT" docker pull "$image"');

198+

expect(script).toContain(

199+

'timeout --kill-after=30s "$DOCKER_PULL_TIMEOUT" docker pull "$image"',

200+

);

132201

expect(script).toContain('timeout "$DOCKER_PULL_TIMEOUT" docker pull "$image"');

133202

expect(script).toContain('run_docker_pull "$IMAGE_NAME"');

134203

expect(script).not.toContain('docker pull "$IMAGE_NAME"');

@@ -137,12 +206,12 @@ describe("test-install-sh-docker", () => {

137206

it("bounds Podman setup image pulls", () => {

138207

const script = readFileSync(PODMAN_SETUP_PATH, "utf8");

139208140-

expect(script).toContain(

141-

'PODMAN_PULL_TIMEOUT="${OPENCLAW_PODMAN_SETUP_PULL_TIMEOUT:-600s}"',

142-

);

209+

expect(script).toContain('PODMAN_PULL_TIMEOUT="${OPENCLAW_PODMAN_SETUP_PULL_TIMEOUT:-600s}"');

143210

expect(script).toContain("run_podman_pull()");

144211

expect(script).toContain("timeout --kill-after=1s 1s true");

145-

expect(script).toContain('timeout --kill-after=30s "$PODMAN_PULL_TIMEOUT" podman pull "$image"');

212+

expect(script).toContain(

213+

'timeout --kill-after=30s "$PODMAN_PULL_TIMEOUT" podman pull "$image"',

214+

);

146215

expect(script).toContain('timeout "$PODMAN_PULL_TIMEOUT" podman pull "$image"');

147216

expect(script).toContain('run_podman_pull "$OPENCLAW_IMAGE"');

148217

expect(script).not.toContain('podman pull "$OPENCLAW_IMAGE"');

@@ -314,13 +383,9 @@ describe("install-sh smoke runner", () => {

314383

]) {

315384

expect(script).toContain(envName);

316385

}

317-

expect(script).toMatch(

318-

/Run installer smoke test[\s\S]*"\$\{SMOKE_RUNNER_ENV_ARGS\[@\]\}"/u,

319-

);

386+

expect(script).toMatch(/Run installer smoke test[\s\S]*"\$\{SMOKE_RUNNER_ENV_ARGS\[@\]\}"/u);

320387

expect(script).toMatch(/Run update smoke[\s\S]*"\$\{SMOKE_RUNNER_ENV_ARGS\[@\]\}"/u);

321-

expect(script).toMatch(

322-

/Run direct npm global smoke[\s\S]*"\$\{SMOKE_RUNNER_ENV_ARGS\[@\]\}"/u,

323-

);

388+

expect(script).toMatch(/Run direct npm global smoke[\s\S]*"\$\{SMOKE_RUNNER_ENV_ARGS\[@\]\}"/u);

324389

expect(script).toMatch(

325390

/Run installer npm freshness smoke[\s\S]*"\$\{SMOKE_RUNNER_ENV_ARGS\[@\]\}"/u,

326391

);

@@ -396,9 +461,7 @@ describe("bun global install smoke", () => {

396461

expect(workflow).toContain("timeout --kill-after=30s 45m docker buildx build");

397462

expect(workflow).toContain('timeout --kill-after=30s 600s docker pull "$IMAGE_REF"');

398463

expect(workflow).not.toContain('timeout 300s docker pull "$IMAGE_REF"');

399-

expect(workflow.match(/timeout --kill-after=30s 20m docker run --rm/g)?.length).toBe(

400-

6,

401-

);

464+

expect(workflow.match(/timeout --kill-after=30s 20m docker run --rm/g)?.length).toBe(6);

402465

expect(workflow).not.toMatch(/(^|\n)\s+docker run --rm --entrypoint sh/u);

403466

expect(workflow).toContain("--progress=plain");

404467

expect(workflow).toContain("--load");