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

推荐订阅源

J
Java Code Geeks
小众软件
小众软件
博客园 - 叶小钗
宝玉的分享
宝玉的分享
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
U
Unit 42
F
Fortinet All Blogs
IT之家
IT之家
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell

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(test): clean release check cli errors · openclaw/open...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -386,7 +386,7 @@ if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href)

386386

try {

387387

runStartupMemoryCheck();

388388

} catch (error) {

389-

console.error(error instanceof Error ? error.stack : String(error));

389+

console.error(error instanceof Error ? error.message : String(error));

390390

process.exitCode = 1;

391391

}

392392

}

Original file line numberDiff line numberDiff line change

@@ -444,7 +444,7 @@ export const testing = {

444444

if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {

445445

main().catch(

446446

/** @param {unknown} error */ (error) => {

447-

console.error(error instanceof Error ? error.stack : String(error));

447+

console.error(error instanceof Error ? error.message : String(error));

448448

process.exitCode = 1;

449449

},

450450

);

Original file line numberDiff line numberDiff line change

@@ -387,6 +387,23 @@ function readOptionValue(argv, index, optionName, { allowEmpty = false } = {}) {

387387

return value;

388388

}

389389
390+

function usage() {

391+

return `Usage: node scripts/generate-dependency-release-evidence.mjs --output-dir <dir> --release-ref <ref> --npm-dist-tag <tag> [options]

392+
393+

Generates release dependency evidence reports and summary artifacts.

394+
395+

Options:

396+

--root <dir> Repository root

397+

--output-dir <dir> Evidence artifact directory

398+

--release-ref <ref> Release tag or SHA under validation

399+

--npm-dist-tag <tag> npm dist-tag being validated

400+

--base-ref <ref> Dependency change comparison base

401+

--github-output <path> GitHub Actions output file

402+

--github-step-summary <path> GitHub Actions step summary file

403+

-h, --help Show this help

404+

`;

405+

}

406+
390407

export function parseArgs(argv) {

391408

const options = {

392409

rootDir: process.cwd(),

@@ -402,6 +419,9 @@ export function parseArgs(argv) {

402419

if (arg === "--") {

403420

continue;

404421

}

422+

if (arg === "-h" || arg === "--help") {

423+

return { ...options, help: true };

424+

}

405425

if (arg === "--root") {

406426

options.rootDir = readOptionValue(argv, index, arg);

407427

index += 1;

@@ -446,7 +466,12 @@ export function parseArgs(argv) {

446466

* Runs the dependency release evidence generator CLI.

447467

*/

448468

export async function main(argv = process.argv.slice(2)) {

449-

await generateDependencyReleaseEvidence(parseArgs(argv));

469+

const options = parseArgs(argv);

470+

if (options.help) {

471+

process.stdout.write(usage());

472+

return 0;

473+

}

474+

await generateDependencyReleaseEvidence(options);

450475

return 0;

451476

}

452477

@@ -456,7 +481,7 @@ if (process.argv[1] && path.resolve(process.argv[1]) === path.resolve(import.met

456481

process.exitCode = exitCode;

457482

},

458483

/** @param {unknown} error */ (error) => {

459-

process.stderr.write(`${error.stack ?? error.message ?? String(error)}\n`);

484+

process.stderr.write(`${error instanceof Error ? error.message : String(error)}\n`);

460485

process.exitCode = 1;

461486

},

462487

);

Original file line numberDiff line numberDiff line change

@@ -15,6 +15,11 @@ function makeTempRoot(): string {

1515

return root;

1616

}

1717
18+

function expectNoNodeStack(stderr: string): void {

19+

expect(stderr).not.toContain("Node.js");

20+

expect(stderr).not.toContain("\n at ");

21+

}

22+
1823

afterEach(() => {

1924

for (const root of tempRoots.splice(0)) {

2025

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

@@ -130,6 +135,18 @@ describe("check-cli-startup-memory", () => {

130135

expect(readdirSync(tempRoot)).toEqual([]);

131136

});

132137
138+

it("reports CLI argument errors without a Node stack trace", () => {

139+

const result = spawnSync(process.execPath, ["scripts/check-cli-startup-memory.mjs", "--wat"], {

140+

cwd: path.resolve(__dirname, "..", ".."),

141+

encoding: "utf8",

142+

});

143+
144+

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

145+

expect(result.stdout).toBe("");

146+

expect(result.stderr.trim()).toBe("Unknown option: --wat");

147+

expectNoNodeStack(result.stderr);

148+

});

149+
133150

it("times out startup probes instead of hanging indefinitely", () => {

134151

if (process.platform !== "darwin" && process.platform !== "linux") {

135152

return;

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,5 @@

11

// Check Gateway Cpu Scenarios tests cover check gateway cpu scenarios script behavior.

2+

import { spawnSync } from "node:child_process";

23

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

34

import path from "node:path";

45

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

@@ -14,6 +15,18 @@ function makeTempRoot(): string {

1415

return root;

1516

}

1617
18+

function runCli(...args: string[]) {

19+

return spawnSync(process.execPath, ["scripts/check-gateway-cpu-scenarios.mjs", ...args], {

20+

cwd: path.resolve("."),

21+

encoding: "utf8",

22+

});

23+

}

24+
25+

function expectNoNodeStack(stderr: string) {

26+

expect(stderr).not.toContain("Node.js");

27+

expect(stderr).not.toContain("\n at ");

28+

}

29+
1730

function writeQaSuiteSummary(

1831

outputDir: string,

1932

counts: { failed: number; passed: number; total: number } = { failed: 0, passed: 1, total: 1 },

@@ -96,6 +109,15 @@ describe("gateway CPU scenario guard", () => {

96109

}

97110

});

98111
112+

it("reports CLI argument errors without a Node stack trace", () => {

113+

const result = runCli("--wat");

114+
115+

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

116+

expect(result.stdout).toBe("");

117+

expect(result.stderr.trim()).toBe("Unknown argument: --wat");

118+

expectNoNodeStack(result.stderr);

119+

});

120+
99121

it("prepares CLI startup artifacts before running the startup bench", async () => {

100122

const outputDir = makeTempRoot();

101123

const startupOutput = path.join(outputDir, "gateway-startup-bench.json");

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,5 @@

11

// Generate Dependency Release Evidence tests cover generate dependency release evidence script behavior.

2+

import { spawnSync } from "node:child_process";

23

import { mkdtemp, readFile, rm, writeFile } from "node:fs/promises";

34

import { tmpdir } from "node:os";

45

import path from "node:path";

@@ -18,6 +19,22 @@ async function writeJson(dir: string, fileName: string, value: unknown) {

1819

await writeFile(path.join(dir, fileName), `${JSON.stringify(value, null, 2)}\n`, "utf8");

1920

}

2021
22+

function runCli(...args: string[]) {

23+

return spawnSync(

24+

process.execPath,

25+

["scripts/generate-dependency-release-evidence.mjs", ...args],

26+

{

27+

cwd: path.resolve("."),

28+

encoding: "utf8",

29+

},

30+

);

31+

}

32+
33+

function expectNoNodeStack(stderr: string) {

34+

expect(stderr).not.toContain("Node.js");

35+

expect(stderr).not.toContain("\n at ");

36+

}

37+
2138

describe("generate-dependency-release-evidence", () => {

2239

it("defines the release evidence command list and policy classifications", () => {

2340

expect(DEPENDENCY_EVIDENCE_REPORTS.map(({ command, policy }) => ({ command, policy }))).toEqual(

@@ -99,6 +116,23 @@ describe("generate-dependency-release-evidence", () => {

99116

).toThrow("Expected --github-output <value>.");

100117

});

101118
119+

it("prints CLI help without generating evidence", () => {

120+

const result = runCli("--help");

121+
122+

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

123+

expect(result.stdout).toContain("Usage: node scripts/generate-dependency-release-evidence.mjs");

124+

expect(result.stderr).toBe("");

125+

});

126+
127+

it("reports CLI argument errors without a Node stack trace", () => {

128+

const result = runCli("--wat");

129+
130+

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

131+

expect(result.stdout).toBe("");

132+

expect(result.stderr.trim()).toBe("Unsupported argument: --wat");

133+

expectNoNodeStack(result.stderr);

134+

});

135+
102136

it("falls back to fetching tags when local previous-release resolution misses", () => {

103137

const calls: Array<{ command: string; args: string[] }> = [];

104138

let describeCalls = 0;