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

推荐订阅源

云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
博客园 - 【当耐特】
H
Help Net Security
腾讯CDC
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
Y
Y Combinator Blog
C
Check Point 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(e2e): clean Parallels guest temp scripts · openclaw/o...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -58,6 +58,28 @@ function throwIfFailed(label: string, result: CommandResult, check: boolean | un

5858

throw new Error(`${label} failed with exit code ${result.status}`);

5959

}

606061+

const POSIX_GUEST_SCRIPT_CLEANUP_TIMEOUT_MS = 30_000;

62+63+

function appendCommandResult(phases: PhaseRunner, result: CommandResult): void {

64+

phases.append(result.stdout);

65+

phases.append(result.stderr);

66+

}

67+68+

function cleanupPosixGuestScript(phases: PhaseRunner, transportArgs: string[]): void {

69+

try {

70+

appendCommandResult(

71+

phases,

72+

run("prlctl", transportArgs, {

73+

check: false,

74+

quiet: true,

75+

timeoutMs: POSIX_GUEST_SCRIPT_CLEANUP_TIMEOUT_MS,

76+

}),

77+

);

78+

} catch {

79+

// Cleanup must not hide the command failure that made the phase useful.

80+

}

81+

}

82+6183

export async function runWindowsBackgroundPowerShell(

6284

options: WindowsBackgroundPowerShellOptions,

6385

): Promise<void> {

@@ -354,48 +376,36 @@ export class LinuxGuest {

354376

) {}

355377356378

exec(args: string[], options: GuestExecOptions = {}): string {

357-

const result = run(

358-

"prlctl",

359-

["exec", this.vmName, "/usr/bin/env", "HOME=/root", "OPENCLAW_ALLOW_ROOT=1", ...args],

360-

{

361-

check: false,

362-

input: options.input,

363-

quiet: true,

364-

timeoutMs: this.phases.remainingTimeoutMs(options.timeoutMs),

365-

},

366-

);

379+

const result = run("prlctl", this.transportArgs(args), {

380+

check: false,

381+

input: options.input,

382+

quiet: true,

383+

timeoutMs: this.phases.remainingTimeoutMs(options.timeoutMs),

384+

});

367385

this.phases.append(result.stdout);

368386

this.phases.append(result.stderr);

369387

throwIfFailed("Linux guest command", result, options.check);

370388

return result.stdout.trim();

371389

}

372390391+

private transportArgs(args: string[]): string[] {

392+

return ["exec", this.vmName, "/usr/bin/env", "HOME=/root", "OPENCLAW_ALLOW_ROOT=1", ...args];

393+

}

394+373395

bash(script: string): string {

374396

const scriptPath = `/tmp/${guestScriptName("sh")}`;

375-

const write = run(

376-

"prlctl",

377-

[

378-

"exec",

379-

this.vmName,

380-

"/usr/bin/env",

381-

"HOME=/root",

382-

"OPENCLAW_ALLOW_ROOT=1",

383-

"dd",

384-

`of=${scriptPath}`,

385-

"bs=1048576",

386-

],

387-

{

397+

try {

398+

const write = run("prlctl", this.transportArgs(["dd", `of=${scriptPath}`, "bs=1048576"]), {

399+

check: false,

388400

input: `umask 022\n${script}`,

389401

quiet: true,

390402

timeoutMs: this.phases.remainingTimeoutMs(),

391-

},

392-

);

393-

this.phases.append(write.stdout);

394-

this.phases.append(write.stderr);

395-

try {

403+

});

404+

appendCommandResult(this.phases, write);

405+

throwIfFailed("Linux guest script write", write, undefined);

396406

return this.exec(["bash", scriptPath]);

397407

} finally {

398-

this.exec(["rm", "-f", scriptPath], { check: false });

408+

cleanupPosixGuestScript(this.phases, this.transportArgs(["/bin/rm", "-f", scriptPath]));

399409

}

400410

}

401411

}

@@ -420,29 +430,31 @@ export class MacosGuest {

420430

return this.run(args, options).stdout.trim();

421431

}

422432423-

run(args: string[], options: MacosGuestOptions = {}): CommandResult {

424-

const envArgs = Object.entries({ PATH: this.input.path, ...options.env }).map(

433+

private transportArgs(args: string[], env: Record<string, string> = {}): string[] {

434+

const envArgs = Object.entries({ PATH: this.input.path, ...env }).map(

425435

([key, value]) => `${key}=${value}`,

426436

);

427437

const user = this.input.getUser();

428-

const transportArgs =

429-

this.input.getTransport() === "sudo"

430-

? [

431-

"exec",

432-

this.input.vmName,

433-

"/usr/bin/sudo",

434-

"-H",

435-

"-u",

436-

user,

437-

"/usr/bin/env",

438-

`HOME=${this.input.resolveDesktopHome(user)}`,

439-

`USER=${user}`,

440-

`LOGNAME=${user}`,

441-

...envArgs,

442-

...args,

443-

]

444-

: ["exec", this.input.vmName, "--current-user", "/usr/bin/env", ...envArgs, ...args];

445-

const result = run("prlctl", transportArgs, {

438+

return this.input.getTransport() === "sudo"

439+

? [

440+

"exec",

441+

this.input.vmName,

442+

"/usr/bin/sudo",

443+

"-H",

444+

"-u",

445+

user,

446+

"/usr/bin/env",

447+

`HOME=${this.input.resolveDesktopHome(user)}`,

448+

`USER=${user}`,

449+

`LOGNAME=${user}`,

450+

...envArgs,

451+

...args,

452+

]

453+

: ["exec", this.input.vmName, "--current-user", "/usr/bin/env", ...envArgs, ...args];

454+

}

455+456+

run(args: string[], options: MacosGuestOptions = {}): CommandResult {

457+

const result = run("prlctl", this.transportArgs(args, options.env), {

446458

check: false,

447459

input: options.input,

448460

quiet: true,

@@ -456,13 +468,13 @@ export class MacosGuest {

456468457469

sh(script: string, env: Record<string, string> = {}): string {

458470

const scriptPath = `/tmp/${guestScriptName("sh")}`;

459-

this.exec(["/bin/dd", `of=${scriptPath}`, "bs=1048576"], {

460-

input: `umask 022\n${script}`,

461-

});

462471

try {

472+

this.exec(["/bin/dd", `of=${scriptPath}`, "bs=1048576"], {

473+

input: `umask 022\n${script}`,

474+

});

463475

return this.exec(["/bin/bash", scriptPath], { env });

464476

} finally {

465-

this.exec(["/bin/rm", "-f", scriptPath], { check: false });

477+

cleanupPosixGuestScript(this.phases, this.transportArgs(["/bin/rm", "-f", scriptPath]));

466478

}

467479

}

468480

}