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

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
博客园 - Franky
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
雷峰网
雷峰网
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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 test routing and parallels smoke tests · o...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -3,8 +3,18 @@ import { tmpdir } from "node:os";

33

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

44

import { pathToFileURL } from "node:url";

55

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

6+

import {

7+

modelProviderConfigBatchJson,

8+

resolveParallelsModelTimeoutSeconds,

9+

resolveProviderAuth as resolveProviderAuthDirect,

10+

resolveSnapshot,

11+

resolveUbuntuVmName,

12+

resolveWindowsProviderAuth,

13+

run,

14+

shellQuote,

15+

} from "../../scripts/e2e/parallels/common.ts";

616

import { resolveHostCommandInvocation } from "../../scripts/e2e/parallels/host-command.ts";

7-

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

17+

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

818919

const WRAPPERS = {

1020

linux: "scripts/e2e/parallels-linux-smoke.sh",

@@ -47,10 +57,6 @@ function countNonEmptyLines(value: string): number {

4757

return count;

4858

}

495950-

function runTsEval(source: string, env: Record<string, string> = {}) {

51-

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

52-

}

53-5460

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

5561

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

5662

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

@@ -68,30 +74,25 @@ function writeFakePrlctl(tempDir: string, posixScript: string, windowsBootstrap:

6874

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

6975

}

707671-

function resolveProviderAuth(

72-

provider: string,

73-

options: {

74-

apiKeyEnv?: string;

75-

env?: Record<string, string>;

76-

modelId?: string;

77-

} = {},

78-

) {

79-

const source = `

80-

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

81-

const result = resolveProviderAuth({

82-

provider: ${JSON.stringify(provider)},

83-

apiKeyEnv: ${JSON.stringify(options.apiKeyEnv)},

84-

modelId: ${JSON.stringify(options.modelId)},

85-

});

86-

console.log(JSON.stringify(result));

87-

`;

88-

return JSON.parse(runTsEval(source, options.env)) as {

89-

apiKeyEnv: string;

90-

apiKeyValue: string;

91-

authChoice: string;

92-

authKeyFlag: string;

93-

modelId: string;

94-

};

77+

function withEnv<T>(env: Record<string, string>, callback: () => T): T {

78+

const previous = new Map<string, string | undefined>();

79+

for (const [key, value] of Object.entries(env)) {

80+

previous.set(key, process.env[key]);

81+

}

82+

for (const [key, value] of Object.entries(env)) {

83+

process.env[key] = value;

84+

}

85+

try {

86+

return callback();

87+

} finally {

88+

for (const [key, value] of previous) {

89+

if (value === undefined) {

90+

delete process.env[key];

91+

} else {

92+

process.env[key] = value;

93+

}

94+

}

95+

}

9596

}

96979798

describe("Parallels smoke model selection", () => {

@@ -129,12 +130,7 @@ describe("Parallels smoke model selection", () => {

129130

});

130131131132

it("writes full model ids as config map keys in provider batches", () => {

132-

const source = `

133-

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

134-

const result = modelProviderConfigBatchJson("openai/gpt-5.5", "windows");

135-

console.log(result);

136-

`;

137-

const batch = JSON.parse(runTsEval(source, { OPENAI_API_KEY: "sk-openai" })) as Array<{

133+

const batch = JSON.parse(modelProviderConfigBatchJson("openai/gpt-5.5", "windows")) as Array<{

138134

path: string;

139135

value: unknown;

140136

}>;

@@ -215,15 +211,10 @@ if (isPrlctl) {

215211

);

216212217213

try {

218-

const output = runTsEval(

219-

`

220-

import { resolveSnapshot, shellQuote } from "./${TS_PATHS.common}";

221-

console.log(shellQuote("it's ok"));

222-

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

223-

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

224-

`,

225-

fakePrlctlEnv(tempDir),

226-

);

214+

const output = withEnv(fakePrlctlEnv(tempDir), () => {

215+

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

216+

return `${shellQuote("it's ok")}\n${[snapshot.id, snapshot.state, snapshot.name].join("\t")}`;

217+

});

227218228219

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

229220

expect(output).toContain("{wanted}\tpoweroff\tfresh-poweroff-2026-04-01");

@@ -267,16 +258,12 @@ if (isPrlctl) {

267258

);

268259269260

try {

270-

const output = runTsEval(

271-

`

272-

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

273-

const snapshot = resolveSnapshot("vm", "macOS 26.5 latest");

274-

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

275-

`,

276-

fakePrlctlEnv(tempDir),

277-

);

261+

const output = withEnv(fakePrlctlEnv(tempDir), () => {

262+

const snapshot = resolveSnapshot("vm", "macOS 26.5 latest");

263+

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

264+

});

278265279-

expect(output.trim()).toBe("{wanted}\tpoweron\tmacOS 26.5");

266+

expect(output).toBe("{wanted}\tpoweron\tmacOS 26.5");

280267

} finally {

281268

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

282269

}

@@ -321,15 +308,9 @@ if (isPrlctl) {

321308

);

322309323310

try {

324-

const output = runTsEval(

325-

`

326-

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

327-

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

328-

`,

329-

fakePrlctlEnv(tempDir),

330-

);

311+

const output = withEnv(fakePrlctlEnv(tempDir), () => resolveUbuntuVmName("Ubuntu missing"));

331312332-

expect(output.trim()).toBe("Ubuntu 26.04");

313+

expect(output).toBe("Ubuntu 26.04");

333314

} finally {

334315

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

335316

}

@@ -353,7 +334,11 @@ console.log(resolveUbuntuVmName("Ubuntu missing"));

353334

});

354335355336

it("resolves provider defaults and explicit model overrides", () => {

356-

expect(resolveProviderAuth("openai", { env: { OPENAI_API_KEY: "sk-openai" } })).toEqual({

337+

expect(

338+

withEnv({ OPENAI_API_KEY: "sk-openai" }, () =>

339+

resolveProviderAuthDirect({ provider: "openai" }),

340+

),

341+

).toEqual({

357342

apiKeyEnv: "OPENAI_API_KEY",

358343

apiKeyValue: "sk-openai",

359344

authChoice: "openai-api-key",

@@ -362,11 +347,13 @@ console.log(resolveUbuntuVmName("Ubuntu missing"));

362347

});

363348364349

expect(

365-

resolveProviderAuth("anthropic", {

366-

apiKeyEnv: "CUSTOM_ANTHROPIC_KEY",

367-

env: { CUSTOM_ANTHROPIC_KEY: "sk-anthropic" },

368-

modelId: "anthropic/custom",

369-

}),

350+

withEnv({ CUSTOM_ANTHROPIC_KEY: "sk-anthropic" }, () =>

351+

resolveProviderAuthDirect({

352+

apiKeyEnv: "CUSTOM_ANTHROPIC_KEY",

353+

modelId: "anthropic/custom",

354+

provider: "anthropic",

355+

}),

356+

),

370357

).toEqual({

371358

apiKeyEnv: "CUSTOM_ANTHROPIC_KEY",

372359

apiKeyValue: "sk-anthropic",

@@ -377,14 +364,11 @@ console.log(resolveUbuntuVmName("Ubuntu missing"));

377364

});

378365379366

it("uses the shared GPT-5 OpenAI model for Windows smoke unless overridden", () => {

380-

const source = `

381-

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

382-

const result = resolveWindowsProviderAuth({

383-

provider: "openai",

384-

});

385-

console.log(JSON.stringify(result));

386-

`;

387-

expect(JSON.parse(runTsEval(source, { OPENAI_API_KEY: "sk-openai" }))).toEqual({

367+

expect(

368+

withEnv({ OPENAI_API_KEY: "sk-openai" }, () =>

369+

resolveWindowsProviderAuth({ provider: "openai" }),

370+

),

371+

).toEqual({

388372

apiKeyEnv: "OPENAI_API_KEY",

389373

apiKeyValue: "sk-openai",

390374

authChoice: "openai-api-key",

@@ -393,11 +377,12 @@ console.log(JSON.stringify(result));

393377

});

394378395379

expect(

396-

JSON.parse(

397-

runTsEval(source, {

380+

withEnv(

381+

{

398382

OPENAI_API_KEY: "sk-openai",

399383

OPENCLAW_PARALLELS_WINDOWS_OPENAI_MODEL: "openai/custom-windows",

400-

}),

384+

},

385+

() => resolveWindowsProviderAuth({ provider: "openai" }),

401386

),

402387

).toEqual({

403388

apiKeyEnv: "OPENAI_API_KEY",

@@ -575,7 +560,7 @@ console.log(JSON.stringify(result));

575560

expect(macos).toContain('const guestOpenClaw = "openclaw"');

576561

expect(macos).toContain('const guestNode = "node"');

577562

expect(macos).toContain('const guestNpm = "npm"');

578-

expect(macos).toContain('$(npm root -g)/openclaw/openclaw.mjs');

563+

expect(macos).toContain("$(npm root -g)/openclaw/openclaw.mjs");

579564

expect(macos).toContain("guestOpenClawEntryExec");

580565

expect(macos).not.toContain('const guestOpenClaw = "/opt/homebrew/bin/openclaw"');

581566

expect(macos).not.toContain('const guestNode = "/opt/homebrew/bin/node"');

@@ -609,17 +594,15 @@ console.log(JSON.stringify(result));

609594

});

610595611596

it("returns timed-out host command status when check is disabled", () => {

612-

const result = JSON.parse(

613-

runTsEval(`

614-

import { run } from "./${TS_PATHS.hostCommand}";

615-

const result = run(process.execPath, ["-e", "process.stdout.write('partial'); setTimeout(() => {}, 1000);"], {

616-

check: false,

617-

quiet: true,

618-

timeoutMs: 50,

619-

});

620-

console.log(JSON.stringify(result));

621-

`),

622-

) as { status: number; stdout: string };

597+

const result = run(

598+

process.execPath,

599+

["-e", "process.stdout.write('partial'); setTimeout(() => {}, 1000);"],

600+

{

601+

check: false,

602+

quiet: true,

603+

timeoutMs: 50,

604+

},

605+

);

623606624607

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

625608

expect(result.stdout).toBeTypeOf("string");

@@ -692,15 +675,11 @@ console.log(JSON.stringify(result));

692675

});

693676694677

it("gives GPT-5.5 enough Parallels model time on slower desktop guests", () => {

695-

const source = `

696-

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

697-

console.log(JSON.stringify({

698-

macos: resolveParallelsModelTimeoutSeconds("macos"),

699-

windows: resolveParallelsModelTimeoutSeconds("windows"),

700-

linux: resolveParallelsModelTimeoutSeconds("linux"),

701-

}));

702-

`;

703-

expect(JSON.parse(runTsEval(source))).toEqual({

678+

expect({

679+

linux: resolveParallelsModelTimeoutSeconds("linux"),

680+

macos: resolveParallelsModelTimeoutSeconds("macos"),

681+

windows: resolveParallelsModelTimeoutSeconds("windows"),

682+

}).toEqual({

704683

linux: 900,

705684

macos: 1800,

706685

windows: 1800,