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

推荐订阅源

有赞技术团队
有赞技术团队
美团技术团队
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
V
V2EX
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
量子位
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
月光博客
月光博客
L
LangChain 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(installer): reject stale cli node runtimes · openclaw...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -557,6 +557,173 @@ describe("install-cli.sh", () => {

557557

}

558558

});

559559560+

it("replaces cached generic Node runtimes below the runtime floor", () => {

561+

const tmp = mkdtempSync(join(tmpdir(), "openclaw-install-cli-generic-stale-node-"));

562+

const prefix = join(tmp, "prefix");

563+

const nodePrefixBin = join(prefix, "tools", "node-v22.22.0", "bin");

564+

const staleNode = join(nodePrefixBin, "node");

565+

const staleNpm = join(nodePrefixBin, "npm");

566+

const newNode = join(tmp, "new-node");

567+

const newNpm = join(tmp, "new-npm");

568+569+

mkdirSync(nodePrefixBin, { recursive: true });

570+

writeFileSync(

571+

staleNode,

572+

[

573+

"#!/bin/bash",

574+

'if [[ "${1:-}" == "-v" ]]; then',

575+

" printf 'v22.18.0\\n'",

576+

" exit 0",

577+

"fi",

578+

'if [[ "${1:-}" == "-e" ]]; then',

579+

" exit 0",

580+

"fi",

581+

"exit 0",

582+

"",

583+

].join("\n"),

584+

);

585+

writeFileSync(staleNpm, ["#!/bin/bash", "exit 0", ""].join("\n"));

586+

writeFileSync(

587+

newNode,

588+

[

589+

"#!/bin/bash",

590+

'if [[ "${1:-}" == "-v" ]]; then',

591+

" printf 'v22.22.0\\n'",

592+

" exit 0",

593+

"fi",

594+

'if [[ "${1:-}" == "-e" ]]; then',

595+

" exit 0",

596+

"fi",

597+

"exit 0",

598+

"",

599+

].join("\n"),

600+

);

601+

writeFileSync(newNpm, ["#!/bin/bash", "exit 0", ""].join("\n"));

602+

chmodSync(staleNode, 0o755);

603+

chmodSync(staleNpm, 0o755);

604+

chmodSync(newNode, 0o755);

605+

chmodSync(newNpm, 0o755);

606+607+

try {

608+

const result = runInstallCliShell(

609+

[

610+

"set -euo pipefail",

611+

`cd ${JSON.stringify(process.cwd())}`,

612+

`source ${JSON.stringify(SCRIPT_PATH)}`,

613+

"os_detect() { printf 'linux\\n'; }",

614+

"arch_detect() { printf 'x64\\n'; }",

615+

"is_musl_linux() { return 1; }",

616+

"detect_downloader() { :; }",

617+

"require_bin() { :; }",

618+

"download_file() {",

619+

' case "$1" in',

620+

" */SHASUMS256.txt) printf 'fixture-sha node-v22.22.0-linux-x64.tar.gz\\n' > \"$2\" ;;",

621+

" *) printf 'node tarball fixture\\n' > \"$2\" ;;",

622+

" esac",

623+

"}",

624+

"sha256_file() { printf 'fixture-sha\\n'; }",

625+

"tar() {",

626+

" local dest=''",

627+

" while [[ $# -gt 0 ]]; do",

628+

' if [[ "$1" == \'-C\' ]]; then dest="$2"; shift 2; else shift; fi',

629+

" done",

630+

' mkdir -p "$dest/bin"',

631+

' cp "$NEW_NODE" "$dest/bin/node"',

632+

' cp "$NEW_NPM" "$dest/bin/npm"',

633+

"}",

634+

`PREFIX=${JSON.stringify(prefix)}`,

635+

"NODE_VERSION=22.22.0",

636+

"NODE_VERSION_REQUESTED=1",

637+

"install_node",

638+

].join("\n"),

639+

{

640+

NEW_NODE: newNode,

641+

NEW_NPM: newNpm,

642+

},

643+

);

644+645+

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

646+

expect(result.stdout).toContain("Installing Node 22.22.0 (user-space)");

647+

expect(result.stdout).not.toContain('"status":"skip"');

648+

expect(readFileSync(staleNode, "utf8")).toContain("v22.22.0");

649+

} finally {

650+

rmSync(tmp, { force: true, recursive: true });

651+

}

652+

});

653+654+

it("rejects downloaded generic Node runtimes below the runtime floor", () => {

655+

const tmp = mkdtempSync(join(tmpdir(), "openclaw-install-cli-generic-old-node-"));

656+

const prefix = join(tmp, "prefix");

657+

const newNode = join(tmp, "new-node");

658+

const newNpm = join(tmp, "new-npm");

659+660+

writeFileSync(

661+

newNode,

662+

[

663+

"#!/bin/bash",

664+

'if [[ "${1:-}" == "-v" ]]; then',

665+

" printf 'v22.18.0\\n'",

666+

" exit 0",

667+

"fi",

668+

'if [[ "${1:-}" == "-e" ]]; then',

669+

" exit 0",

670+

"fi",

671+

"exit 0",

672+

"",

673+

].join("\n"),

674+

);

675+

writeFileSync(newNpm, ["#!/bin/bash", "exit 0", ""].join("\n"));

676+

chmodSync(newNode, 0o755);

677+

chmodSync(newNpm, 0o755);

678+679+

try {

680+

const result = runInstallCliShell(

681+

[

682+

"set -euo pipefail",

683+

`cd ${JSON.stringify(process.cwd())}`,

684+

`source ${JSON.stringify(SCRIPT_PATH)}`,

685+

"os_detect() { printf 'linux\\n'; }",

686+

"arch_detect() { printf 'x64\\n'; }",

687+

"is_musl_linux() { return 1; }",

688+

"detect_downloader() { :; }",

689+

"require_bin() { :; }",

690+

"download_file() {",

691+

' case "$1" in',

692+

" */SHASUMS256.txt) printf 'fixture-sha node-v22.18.0-linux-x64.tar.gz\\n' > \"$2\" ;;",

693+

" *) printf 'node tarball fixture\\n' > \"$2\" ;;",

694+

" esac",

695+

"}",

696+

"sha256_file() { printf 'fixture-sha\\n'; }",

697+

"tar() {",

698+

" local dest=''",

699+

" while [[ $# -gt 0 ]]; do",

700+

' if [[ "$1" == \'-C\' ]]; then dest="$2"; shift 2; else shift; fi',

701+

" done",

702+

' mkdir -p "$dest/bin"',

703+

' cp "$NEW_NODE" "$dest/bin/node"',

704+

' cp "$NEW_NPM" "$dest/bin/npm"',

705+

"}",

706+

`PREFIX=${JSON.stringify(prefix)}`,

707+

"NODE_VERSION=22.18.0",

708+

"NODE_VERSION_REQUESTED=1",

709+

"install_node",

710+

].join("\n"),

711+

{

712+

NEW_NODE: newNode,

713+

NEW_NPM: newNpm,

714+

},

715+

);

716+717+

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

718+

expect(result.stdout).toContain(

719+

"Installed Node 22.18.0 must provide Node >= 22.19.0 with node:sqlite",

720+

);

721+

expect(result.stdout).toContain("found v22.18.0");

722+

} finally {

723+

rmSync(tmp, { force: true, recursive: true });

724+

}

725+

});

726+560727

it("clears npm freshness filters for package installs", () => {

561728

expect(script).toContain('freshness_flag="--min-release-age=0"');

562729

expect(script).toContain('npm_config_has_raw_key "$(npm_bin)" "min-release-age"');