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

推荐订阅源

量子位
WordPress大学
WordPress大学
小众软件
小众软件
云风的 BLOG
云风的 BLOG
IT之家
IT之家
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
宝玉的分享
宝玉的分享
博客园 - Franky
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
D
Docker
博客园 - 聂微东
C
Check Point Blog
H
Help Net Security

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
test: speed up crabbox wrapper tests · openclaw/openclaw@...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -2,7 +2,7 @@ import { spawnSync } from "node:child_process";

22

import { chmodSync, mkdirSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";

33

import { tmpdir } from "node:os";

44

import path from "node:path";

5-

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

5+

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

6677

const tempDirs: string[] = [];

88

const repoRoot = process.cwd();

@@ -17,17 +17,9 @@ function makeFakeCrabbox(helpText: string): string {

1717

function writeFakeCrabbox(binDir: string, helpText: string): string {

1818

mkdirSync(binDir, { recursive: true });

1919

const crabboxPath = path.join(binDir, "crabbox");

20-

const script = [

21-

"#!/usr/bin/env node",

20+

const helperPath = path.join(binDir, "fake-crabbox-json.cjs");

21+

const helperScript = [

2222

"const args = process.argv.slice(2);",

23-

'if (args[0] === "--version") {',

24-

' console.log("crabbox 0.15.0");',

25-

" process.exit(0);",

26-

"}",

27-

'if (args[0] === "run" && args[1] === "--help") {',

28-

` process.stdout.write(${JSON.stringify(helpText)});`,

29-

" process.exit(0);",

30-

"}",

3123

'if (args[0] === "config" && args[1] === "show" && args.includes("--json")) {',

3224

" const status = Number.parseInt(process.env.OPENCLAW_FAKE_CRABBOX_CONFIG_STATUS || '0', 10);",

3325

" if (status !== 0) {",

@@ -42,6 +34,39 @@ function writeFakeCrabbox(binDir: string, helpText: string): string {

4234

"const scriptContent = scriptPath ? require('node:fs').readFileSync(scriptPath, 'utf8') : '';",

4335

"console.log(JSON.stringify({ args, cwd: process.cwd(), scriptContent }));",

4436

].join("\n");

37+

writeFileSync(helperPath, `${helperScript}\n`, "utf8");

38+39+

if (process.platform !== "win32") {

40+

const script = [

41+

"#!/bin/sh",

42+

'if [ "$1" = "--version" ]; then',

43+

' printf "%s\\n" "crabbox 0.15.0"',

44+

" exit 0",

45+

"fi",

46+

'if [ "$1" = "run" ] && [ "$2" = "--help" ]; then',

47+

` printf "%s" ${shellSingleQuote(helpText)}`,

48+

" exit 0",

49+

"fi",

50+

`exec ${shellSingleQuote(process.execPath)} ${shellSingleQuote(helperPath)} "$@"`,

51+

].join("\n");

52+

writeFileSync(crabboxPath, `${script}\n`, "utf8");

53+

chmodSync(crabboxPath, 0o755);

54+

return crabboxPath;

55+

}

56+57+

const script = [

58+

"#!/usr/bin/env node",

59+

"const args = process.argv.slice(2);",

60+

'if (args[0] === "--version") {',

61+

' console.log("crabbox 0.15.0");',

62+

" process.exit(0);",

63+

"}",

64+

'if (args[0] === "run" && args[1] === "--help") {',

65+

` process.stdout.write(${JSON.stringify(helpText)});`,

66+

" process.exit(0);",

67+

"}",

68+

`require(${JSON.stringify(helperPath)});`,

69+

].join("\n");

4570

writeFileSync(crabboxPath, `${script}\n`, "utf8");

4671

writeFileSync(

4772

`${crabboxPath}.cmd`,

@@ -52,6 +77,10 @@ function writeFakeCrabbox(binDir: string, helpText: string): string {

5277

return crabboxPath;

5378

}

547980+

function shellSingleQuote(value: string): string {

81+

return `'${value.replaceAll("'", "'\\''")}'`;

82+

}

83+5584

function makeFakeGit(

5685

responses: Record<string, { status?: number; stdout?: string; stderr?: string }>,

5786

): string {

@@ -142,13 +171,13 @@ function expectGroupedShellCommand(remoteCommand: string, command: string): void

142171

}

143172

}

144173145-

afterEach(() => {

174+

afterAll(() => {

146175

for (const dir of tempDirs.splice(0)) {

147176

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

148177

}

149178

});

150179151-

describe("scripts/crabbox-wrapper", () => {

180+

describe.concurrent("scripts/crabbox-wrapper", () => {

152181

const advertisedProviderAliasHelp = [

153182

"provider: hetzner, aws, gcp, local-container, blacksmith-testbox,",

154183

" namespace-devbox, runpod, semaphore, cloudflare, railway, exe-dev, or ssh",

@@ -397,7 +426,7 @@ describe("scripts/crabbox-wrapper", () => {

397426

expect(remoteCommand).toContain("openclaw_crabbox_env");

398427

expect(remoteCommand).not.toContain("export -f env openclaw_crabbox_env");

399428

expect(remoteCommand).not.toContain('env() { openclaw_crabbox_env "$@"; };');

400-

expect(remoteCommand).toContain('PATH=$PATH:${1#PATH=}');

429+

expect(remoteCommand).toContain("PATH=$PATH:${1#PATH=}");

401430

expect(remoteCommand).toContain("pnpm --version >&2");

402431

expectGroupedShellCommand(

403432

remoteCommand,

@@ -429,8 +458,8 @@ describe("scripts/crabbox-wrapper", () => {

429458

const remoteCommand = normalizeShellLineEndings(output.args.at(-1) ?? "");

430459

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

431460

expect(remoteCommand).toContain("openclaw_crabbox_bootstrap_macos_js");

432-

expect(remoteCommand).toContain('-u|--unset|-C|--chdir)');

433-

expect(remoteCommand).toContain('-i|--ignore-environment)');

461+

expect(remoteCommand).toContain("-u|--unset|-C|--chdir)");

462+

expect(remoteCommand).toContain("-i|--ignore-environment)");

434463

expect(remoteCommand).toContain("pnpm --version >&2");

435464

expectGroupedShellCommand(

436465

remoteCommand,

@@ -518,7 +547,7 @@ describe("scripts/crabbox-wrapper", () => {

518547

});

519548520549

it("does not shadow unrelated env calls in AWS macOS shell commands", () => {

521-

const shellScript = 'node --version; env -i PATH=/usr/bin:/bin printenv PATH';

550+

const shellScript = "node --version; env -i PATH=/usr/bin:/bin printenv PATH";

522551

const result = runWrapper(

523552

"provider: hetzner, aws, local-container, blacksmith-testbox, or cloudflare\n",

524553

["run", "--provider", "aws", "--target", "macos", "--shell", "--", shellScript],

@@ -536,18 +565,7 @@ describe("scripts/crabbox-wrapper", () => {

536565

it("does not bootstrap env split-string commands after ignore-environment", () => {

537566

const result = runWrapper(

538567

"provider: hetzner, aws, local-container, blacksmith-testbox, or cloudflare\n",

539-

[

540-

"run",

541-

"--provider",

542-

"aws",

543-

"--target",

544-

"macos",

545-

"--",

546-

"env",

547-

"-i",

548-

"-S",

549-

"pnpm --version",

550-

],

568+

["run", "--provider", "aws", "--target", "macos", "--", "env", "-i", "-S", "pnpm --version"],

551569

);

552570553571

const output = parseFakeCrabboxOutput(result);

@@ -1690,17 +1708,7 @@ describe("scripts/crabbox-wrapper", () => {

16901708

it("preserves sparse changed-gate Git bootstrap for direct timeout-wrapped shell commands", () => {

16911709

const result = runWrapper(

16921710

"provider: hetzner, aws, local-container, blacksmith-testbox, or cloudflare\n",

1693-

[

1694-

"run",

1695-

"--provider",

1696-

"aws",

1697-

"--",

1698-

"timeout",

1699-

"1200s",

1700-

"bash",

1701-

"-lc",

1702-

"pnpm check:changed",

1703-

],

1711+

["run", "--provider", "aws", "--", "timeout", "1200s", "bash", "-lc", "pnpm check:changed"],

17041712

{

17051713

gitResponses: {

17061714

["config\u0000--bool\u0000core.sparseCheckout"]: { stdout: "true\n" },