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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
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(e2e): scrub Windows update config on PowerShell 5.1 ·...
vincentkoc · 2026-05-23 · via Recent Commits to openclaw:main

@@ -1,6 +1,14 @@

1-

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

1+

import {

2+

chmodSync,

3+

copyFileSync,

4+

mkdtempSync,

5+

readFileSync,

6+

rmSync,

7+

writeFileSync,

8+

} from "node:fs";

29

import { tmpdir } from "node:os";

3-

import { join } from "node:path";

10+

import { delimiter, join } from "node:path";

11+

import { pathToFileURL } from "node:url";

412

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

513

import { execNodeEvalSync, spawnNodeEvalSync } from "../../src/test-utils/node-process.js";

614

@@ -49,6 +57,27 @@ function runTsEval(source: string, env: Record<string, string> = {}) {

4957

return execNodeEvalSync(source, { env: { ...process.env, ...env }, imports: ["tsx"] });

5058

}

515960+

function fakePrlctlEnv(tempDir: string): Record<string, string> {

61+

const pathValue = `${tempDir}${delimiter}${process.env.Path ?? process.env.PATH ?? ""}`;

62+

const fakeBootstrap = pathToFileURL(join(tempDir, "prlctl-bootstrap.mjs")).href;

63+

const nodeOptions = [process.env.NODE_OPTIONS, `--import=${fakeBootstrap}`]

64+

.filter(Boolean)

65+

.join(" ");

66+

return { NODE_OPTIONS: nodeOptions, PATH: pathValue, Path: pathValue };

67+

}

68+69+

function writeFakePrlctl(

70+

tempDir: string,

71+

posixScript: string,

72+

windowsBootstrap: string,

73+

): void {

74+

const prlctlPath = join(tempDir, "prlctl");

75+

writeFileSync(prlctlPath, posixScript);

76+

chmodSync(prlctlPath, 0o755);

77+

copyFileSync(process.execPath, join(tempDir, "prlctl.exe"));

78+

writeFileSync(join(tempDir, "prlctl-bootstrap.mjs"), windowsBootstrap);

79+

}

80+5281

function resolveProviderAuth(

5382

provider: string,

5483

options: {

@@ -161,9 +190,8 @@ console.log(result);

161190162191

it("quotes shell args and resolves fuzzy snapshot hints through the shared TypeScript helper", () => {

163192

const tempDir = mkdtempSync(join(tmpdir(), "openclaw-parallels-helper-"));

164-

const prlctlPath = join(tempDir, "prlctl");

165-

writeFileSync(

166-

prlctlPath,

193+

writeFakePrlctl(

194+

tempDir,

167195

`#!/usr/bin/env bash

168196

set -euo pipefail

169197

if [[ "$1" == "snapshot-list" ]]; then

@@ -177,9 +205,24 @@ JSON

177205

exit 0

178206

fi

179207

exit 1

208+

`,

209+

`import { basename } from "node:path";

210+

const isPrlctl = [process.argv0, process.execPath].some((value) =>

211+

basename(value).toLowerCase() === "prlctl.exe",

212+

);

213+

if (isPrlctl) {

214+

if (process.argv.some((arg) => arg.includes("snapshot-list"))) {

215+

console.log(JSON.stringify({

216+

"{older}": { name: "fresh", state: "running" },

217+

"{wanted}": { name: "fresh-poweroff-2026-04-01", state: "poweroff" },

218+

"{other}": { name: "unrelated", state: "poweroff" },

219+

}));

220+

process.exit(0);

221+

}

222+

process.exit(1);

223+

}

180224

`,

181225

);

182-

chmodSync(prlctlPath, 0o755);

183226184227

try {

185228

const output = runTsEval(

@@ -189,7 +232,7 @@ console.log(shellQuote("it's ok"));

189232

const snapshot = resolveSnapshot("vm", "fresh");

190233

console.log([snapshot.id, snapshot.state, snapshot.name].join("\\t"));

191234

`,

192-

{ PATH: `${tempDir}:${process.env.PATH ?? ""}` },

235+

fakePrlctlEnv(tempDir),

193236

);

194237195238

expect(output.split("\n")[0]).toBe("'it'\"'\"'s ok'");

@@ -201,9 +244,8 @@ console.log([snapshot.id, snapshot.state, snapshot.name].join("\\t"));

201244202245

it("uses one Ubuntu VM fallback resolver for Linux lanes", () => {

203246

const tempDir = mkdtempSync(join(tmpdir(), "openclaw-parallels-vm-helper-"));

204-

const prlctlPath = join(tempDir, "prlctl");

205-

writeFileSync(

206-

prlctlPath,

247+

writeFakePrlctl(

248+

tempDir,

207249

`#!/usr/bin/env bash

208250

set -euo pipefail

209251

if [[ "$1" == "list" ]]; then

@@ -217,17 +259,32 @@ JSON

217259

exit 0

218260

fi

219261

exit 1

262+

`,

263+

`import { basename } from "node:path";

264+

const isPrlctl = [process.argv0, process.execPath].some((value) =>

265+

basename(value).toLowerCase() === "prlctl.exe",

266+

);

267+

if (isPrlctl) {

268+

if (process.argv.some((arg) => arg.includes("list"))) {

269+

console.log(JSON.stringify([

270+

{ name: "Ubuntu 25.10" },

271+

{ name: "Ubuntu 23.10" },

272+

{ name: "Ubuntu 24.04.3 ARM64" },

273+

]));

274+

process.exit(0);

275+

}

276+

process.exit(1);

277+

}

220278

`,

221279

);

222-

chmodSync(prlctlPath, 0o755);

223280224281

try {

225282

const output = runTsEval(

226283

`

227284

import { resolveUbuntuVmName } from "./${TS_PATHS.common}";

228285

console.log(resolveUbuntuVmName("Ubuntu missing"));

229286

`,

230-

{ PATH: `${tempDir}:${process.env.PATH ?? ""}` },

287+

fakePrlctlEnv(tempDir),

231288

);

232289233290

expect(output.trim()).toBe("Ubuntu 24.04.3 ARM64");

@@ -428,6 +485,15 @@ console.log(JSON.stringify(result));

428485

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

429486

});

430487488+

it("keeps the Windows update config scrub compatible with PowerShell 5.1", () => {

489+

const script = readFileSync(TS_PATHS.npmUpdateScripts, "utf8");

490+491+

expect(script).not.toContain("ConvertFrom-Json -AsHashtable");

492+

expect(script).toContain("function Get-OpenClawJsonProperty");

493+

expect(script).toContain("function Remove-OpenClawJsonProperty");

494+

expect(script).toContain("Remove-OpenClawJsonProperty $entries $pluginId");

495+

});

496+431497

it("keeps aggregate update guest scripts isolated from the npm-update orchestrator", () => {

432498

const orchestrator = readFileSync(TS_PATHS.npmUpdate, "utf8");

433499

const updateScripts = readFileSync(TS_PATHS.npmUpdateScripts, "utf8");