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

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
M
MIT News - Artificial intelligence
美团技术团队
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
有赞技术团队
有赞技术团队
L
LangChain Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
S
SegmentFault 最新的问题
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
B
Blog
I
InfoQ

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
perf: speed up test hotspots · openclaw/openclaw@980d73d
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,4 +1,3 @@

1-

import { execFileSync } from "node:child_process";

21

import fsSync from "node:fs";

32

import os from "node:os";

43

import path from "node:path";

@@ -16,31 +15,6 @@ const EXPECTED_FRESHNESS_ENV = {

1615

npm_config_min_release_age: "0",

1716

};

181719-

function readNpmConfigList(env: NodeJS.ProcessEnv): Record<string, unknown> {

20-

const raw = execFileSync("npm", ["config", "list", "--json"], {

21-

encoding: "utf-8",

22-

env: {

23-

...process.env,

24-

...env,

25-

},

26-

stdio: ["ignore", "pipe", "pipe"],

27-

timeout: 5_000,

28-

});

29-

return JSON.parse(raw) as Record<string, unknown>;

30-

}

31-32-

function expectUnsetNpmJsonConfig(value: unknown): void {

33-

expect(value == null).toBe(true);

34-

}

35-36-

function expectZeroNpmJsonConfig(value: unknown): void {

37-

expect(value === 0 || value === "0").toBe(true);

38-

}

39-40-

function expectUnsetOrZeroNpmJsonConfig(value: unknown): void {

41-

expect(value == null || value === false || value === 0 || value === "0").toBe(true);

42-

}

43-4418

function createIsolatedNpmConfigEnv(dir: string): NodeJS.ProcessEnv {

4519

const home = path.join(dir, "home");

4620

const globalconfig = path.join(dir, "global-npmrc");

@@ -344,6 +318,36 @@ describe("npm project install env", () => {

344318

}

345319

});

346320321+

it("prefers scoped npm prefix policy over parent npm prefix policy", () => {

322+

const dir = fsSync.mkdtempSync(path.join(os.tmpdir(), "openclaw-prefix-npmrc-"));

323+

try {

324+

const baseEnv = createIsolatedNpmConfigEnv(dir);

325+

const scopedPrefix = path.join(dir, "scoped-prefix");

326+

const parentPrefix = path.join(dir, "parent-prefix");

327+

fsSync.mkdirSync(path.join(scopedPrefix, "etc"), { recursive: true });

328+

fsSync.mkdirSync(path.join(parentPrefix, "etc"), { recursive: true });

329+

fsSync.writeFileSync(

330+

path.join(scopedPrefix, "etc", "npmrc"),

331+

"before=2026-01-01T00:00:00.000Z\n",

332+

"utf-8",

333+

);

334+

fsSync.writeFileSync(path.join(parentPrefix, "etc", "npmrc"), "min-release-age=7\n", "utf-8");

335+336+

expect(

337+

createNpmFreshnessBypassArgs(

338+

{

339+

...baseEnv,

340+

NPM_CONFIG_PREFIX: parentPrefix,

341+

},

342+

FROZEN_NOW,

343+

{ npmConfigPrefix: scopedPrefix },

344+

),

345+

).toEqual([`--before=${FROZEN_NOW.toISOString()}`]);

346+

} finally {

347+

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

348+

}

349+

});

350+347351

it("overrides stale npmrc before config without emitting release-age config", () => {

348352

const dir = fsSync.mkdtempSync(path.join(os.tmpdir(), "openclaw-npmrc-"));

349353

try {

@@ -359,9 +363,9 @@ describe("npm project install env", () => {

359363

FROZEN_NOW,

360364

);

361365362-

const npmConfig = readNpmConfigList(env);

363-

expect(npmConfig.before).toBe(FROZEN_NOW.toISOString());

364-

expectUnsetNpmJsonConfig(npmConfig["min-release-age"]);

366+

expect(env.npm_config_before).toBe(FROZEN_NOW.toISOString());

367+

expect(env.npm_config_min_release_age).toBe("");

368+

expect(env["npm_config_min-release-age"]).toBe("");

365369

} finally {

366370

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

367371

}

@@ -370,12 +374,14 @@ describe("npm project install env", () => {

370374

it("uses release-age args for npmrc release-age policies", () => {

371375

const dir = fsSync.mkdtempSync(path.join(os.tmpdir(), "openclaw-npmrc-"));

372376

try {

377+

const baseEnv = createIsolatedNpmConfigEnv(dir);

373378

const npmrc = path.join(dir, "npmrc");

374379

fsSync.writeFileSync(npmrc, "min-release-age=7\n", "utf-8");

375380376381

expect(

377382

createNpmFreshnessBypassArgs(

378383

{

384+

...baseEnv,

379385

NPM_CONFIG_USERCONFIG: npmrc,

380386

},

381387

FROZEN_NOW,

@@ -389,10 +395,12 @@ describe("npm project install env", () => {

389395

it("overrides npmrc release-age config without emitting before config", () => {

390396

const dir = fsSync.mkdtempSync(path.join(os.tmpdir(), "openclaw-npmrc-"));

391397

try {

398+

const baseEnv = createIsolatedNpmConfigEnv(dir);

392399

const npmrc = path.join(dir, "npmrc");

393400

fsSync.writeFileSync(npmrc, "min-release-age=7\n", "utf-8");

394401

const env = createNpmProjectInstallEnv(

395402

{

403+

...baseEnv,

396404

NPM_CONFIG_USERCONFIG: npmrc,

397405

},

398406

{},

@@ -401,13 +409,8 @@ describe("npm project install env", () => {

401409402410

expect(env.npm_config_before).toBe("");

403411

expect(env.npm_config_min_release_age).toBe("0");

404-

const npmConfig = readNpmConfigList(env);

405-

expect(

406-

npmConfig.before == null ||

407-

npmConfig.before === false ||

408-

typeof npmConfig.before === "string",

409-

).toBe(true);

410-

expectUnsetOrZeroNpmJsonConfig(npmConfig["min-release-age"]);

412+

expect(env.NPM_CONFIG_BEFORE).toBe("");

413+

expect(env["npm_config_min-release-age"]).toBe("");

411414

} finally {

412415

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

413416

}