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

推荐订阅源

V
Visual Studio Blog
U
Unit 42
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
博客园 - 司徒正美
Vercel News
Vercel News
I
InfoQ
GbyAI
GbyAI
C
Check Point Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
B
Blog
MyScale Blog
MyScale Blog
腾讯CDC
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 三生石上(FineUI控件)

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: tighten install package dir assertions · openclaw/o...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -2,7 +2,7 @@ import fsSync from "node:fs";

22

import fs from "node:fs/promises";

33

import path from "node:path";

44

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

5-

import { runCommandWithTimeout } from "../process/exec.js";

5+

import { runCommandWithTimeout, type CommandOptions } from "../process/exec.js";

66

import { createSuiteTempRootTracker } from "../test-helpers/temp-dir.js";

77

import { installPackageDir } from "./install-package-dir.js";

88

@@ -60,6 +60,38 @@ function createFsError(code: string, message = code): NodeJS.ErrnoException {

6060

return Object.assign(new Error(message), { code });

6161

}

626263+

async function expectMissingPath(filePath: string): Promise<void> {

64+

try {

65+

await fs.stat(filePath);

66+

} catch (error) {

67+

expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");

68+

return;

69+

}

70+

throw new Error(`Expected missing path: ${filePath}`);

71+

}

72+73+

function expectRunCommandCallForArgv(

74+

expectedArgv: string[],

75+

predicate?: (options: CommandOptions) => boolean,

76+

): CommandOptions {

77+

const calls = vi.mocked(runCommandWithTimeout).mock.calls as [

78+

string[],

79+

number | CommandOptions,

80+

][];

81+

for (const [argv, optionsOrTimeout] of calls.toReversed()) {

82+

if (

83+

JSON.stringify(argv) !== JSON.stringify(expectedArgv) ||

84+

typeof optionsOrTimeout === "number"

85+

) {

86+

continue;

87+

}

88+

if (!predicate || predicate(optionsOrTimeout)) {

89+

return optionsOrTimeout;

90+

}

91+

}

92+

throw new Error(`Expected runCommandWithTimeout call: ${expectedArgv.join(" ")}`);

93+

}

94+6395

async function rebindInstallBasePath(params: {

6496

installBaseDir: string;

6597

preservedDir: string;

@@ -295,11 +327,7 @@ describe("installPackageDir", () => {

295327

},

296328

});

297329298-

await expect(

299-

fs.stat(path.join(outsideInstallRoot, "demo", "marker.txt")),

300-

).rejects.toMatchObject({

301-

code: "ENOENT",

302-

});

330+

await expectMissingPath(path.join(outsideInstallRoot, "demo", "marker.txt"));

303331

expect(warnings).toContain(

304332

"Install base directory changed during install; aborting staged publish.",

305333

);

@@ -345,11 +373,7 @@ describe("installPackageDir", () => {

345373

expect(warnings).toContain(

346374

"Install base directory changed before backup cleanup; leaving backup in place.",

347375

);

348-

await expect(

349-

fs.stat(path.join(outsideInstallRoot, "demo", "marker.txt")),

350-

).rejects.toMatchObject({

351-

code: "ENOENT",

352-

});

376+

await expectMissingPath(path.join(outsideInstallRoot, "demo", "marker.txt"));

353377

const backupRoot = path.join(preservedInstallRoot, ".openclaw-install-backups");

354378

await expect(fs.readdir(backupRoot)).resolves.toHaveLength(1);

355379

});

@@ -392,12 +416,14 @@ describe("installPackageDir", () => {

392416

});

393417394418

expect(result).toEqual({ ok: true });

395-

expect(vi.mocked(runCommandWithTimeout)).toHaveBeenCalledWith(

396-

["npm", "install", "--omit=dev", "--loglevel=error", "--ignore-scripts"],

397-

expect.objectContaining({

398-

cwd: expect.stringContaining(".openclaw-install-stage-"),

399-

}),

400-

);

419+

const installOptions = expectRunCommandCallForArgv([

420+

"npm",

421+

"install",

422+

"--omit=dev",

423+

"--loglevel=error",

424+

"--ignore-scripts",

425+

]);

426+

expect(installOptions.cwd).toContain(".openclaw-install-stage-");

401427

});

402428403429

it("hides the staged project .npmrc while npm install runs and restores it afterward", async () => {

@@ -425,9 +451,7 @@ describe("installPackageDir", () => {

425451

if (cwd === undefined) {

426452

throw new Error("expected package install cwd");

427453

}

428-

await expect(fs.stat(path.join(cwd, ".npmrc"))).rejects.toMatchObject({

429-

code: "ENOENT",

430-

});

454+

await expectMissingPath(path.join(cwd, ".npmrc"));

431455

await expect(

432456

listMatchingEntries(cwd, ".openclaw-install-hidden-npmrc-"),

433457

).resolves.toHaveLength(1);

@@ -502,28 +526,19 @@ describe("installPackageDir", () => {

502526

});

503527504528

expect(result).toEqual({ ok: true });

505-

expect(vi.mocked(runCommandWithTimeout)).toHaveBeenCalledWith(

529+

const installOptions = expectRunCommandCallForArgv(

506530

["npm", "install", "--omit=dev", "--loglevel=error", "--ignore-scripts"],

507-

expect.objectContaining({

508-

env: expect.objectContaining({

509-

npm_config_global: "false",

510-

npm_config_location: "project",

511-

npm_config_package_lock: "false",

512-

npm_config_save: "false",

513-

}),

514-

}),

515-

);

516-

expect(vi.mocked(runCommandWithTimeout)).toHaveBeenCalledWith(

517-

expect.any(Array),

518-

expect.objectContaining({

519-

env: expect.not.objectContaining({

520-

NPM_CONFIG_GLOBAL: expect.any(String),

521-

NPM_CONFIG_LOCATION: expect.any(String),

522-

NPM_CONFIG_PREFIX: expect.any(String),

523-

npm_config_prefix: expect.any(String),

524-

}),

525-

}),

531+

(options) => options.env?.npm_config_global === "false",

526532

);

533+

const env = installOptions.env ?? {};

534+

expect(env.npm_config_global).toBe("false");

535+

expect(env.npm_config_location).toBe("project");

536+

expect(env.npm_config_package_lock).toBe("false");

537+

expect(env.npm_config_save).toBe("false");

538+

expect("NPM_CONFIG_GLOBAL" in env).toBe(false);

539+

expect("NPM_CONFIG_LOCATION" in env).toBe(false);

540+

expect("NPM_CONFIG_PREFIX" in env).toBe(false);

541+

expect("npm_config_prefix" in env).toBe(false);

527542

});

528543529544

it("surfaces npm stderr when dependency install fails", async () => {