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

推荐订阅源

美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
M
MIT News - Artificial intelligence
博客园 - 聂微东
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
C
Check Point Blog
云风的 BLOG
云风的 BLOG
腾讯CDC
H
Help Net Security
Y
Y Combinator 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
fix(test): guard gateway benchmark cli args · openclaw/op...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -178,6 +178,21 @@ const DEFAULT_TIMEOUT_MS = 30_000;

178178

const DEFAULT_POST_READY_DELAY_MS = 250;

179179

const DEFAULT_ENTRY = "dist/entry.js";

180180

const RESTART_INTENT_FILENAME = "gateway-restart-intent.json";

181+

const BOOLEAN_FLAGS = new Set(["--allow-failures", "--help", "-h", "--json"]);

182+

const VALUE_FLAGS = new Set([

183+

"--case",

184+

"--entry",

185+

"--output",

186+

"--post-ready-delay-ms",

187+

"--restarts",

188+

"--runs",

189+

"--timeout-ms",

190+

"--warmup",

191+

]);

192+
193+

class CliArgumentError extends Error {

194+

override name = "CliArgumentError";

195+

}

181196
182197

const BASE_CONFIG = {

183198

browser: { enabled: false },

@@ -233,11 +248,26 @@ const GATEWAY_CASES: readonly GatewayBenchCase[] = [

233248

function readRequiredFlagValue(argv: string[], index: number, flag: string): string {

234249

const value = argv[index + 1];

235250

if (!value || value.startsWith("-")) {

236-

throw new Error(`${flag} requires a value`);

251+

throw new CliArgumentError(`${flag} requires a value`);

237252

}

238253

return value;

239254

}

240255
256+

function validateCliArgs(argv: string[]): void {

257+

for (let index = 0; index < argv.length; index += 1) {

258+

const arg = argv[index] ?? "";

259+

if (BOOLEAN_FLAGS.has(arg)) {

260+

continue;

261+

}

262+

if (VALUE_FLAGS.has(arg)) {

263+

readRequiredFlagValue(argv, index, arg);

264+

index += 1;

265+

continue;

266+

}

267+

throw new CliArgumentError(`Unknown argument: ${arg}`);

268+

}

269+

}

270+
241271

function parseFlagValue(argv: string[], flag: string): string | undefined {

242272

for (let index = 0; index < argv.length; index += 1) {

243273

if (argv[index] === flag) {

@@ -319,6 +349,7 @@ function resolveCases(caseIds: string[]): GatewayBenchCase[] {

319349

}

320350
321351

function parseOptions(argv: string[] = process.argv.slice(2)): CliOptions {

352+

validateCliArgs(argv);

322353

return {

323354

allowFailures: hasFlag(argv, "--allow-failures"),

324355

cases: resolveCases(parseRepeatableFlag(argv, "--case")),

@@ -1649,13 +1680,19 @@ export const testing = {

16491680

shouldFailBenchmark,

16501681

stopChild,

16511682

summarizeCase,

1683+

validateCliArgs,

16521684

waitForRestartProbe,

16531685

writeConfig,

16541686

writeRestartIntent,

16551687

};

16561688
16571689

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

16581690

main().catch((err: unknown) => {

1691+

if (err instanceof CliArgumentError) {

1692+

console.error(err.message);

1693+

process.exitCode = 1;

1694+

return;

1695+

}

16591696

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

16601697

process.exitCode = 1;

16611698

});

Original file line numberDiff line numberDiff line change

@@ -108,6 +108,20 @@ const DEFAULT_RUNS = 5;

108108

const DEFAULT_WARMUP = 1;

109109

const DEFAULT_TIMEOUT_MS = 30_000;

110110

const DEFAULT_ENTRY = "dist/entry.js";

111+

const BOOLEAN_FLAGS = new Set(["--help", "-h", "--json"]);

112+

const VALUE_FLAGS = new Set([

113+

"--case",

114+

"--cpu-prof-dir",

115+

"--entry",

116+

"--output",

117+

"--runs",

118+

"--timeout-ms",

119+

"--warmup",

120+

]);

121+
122+

class CliArgumentError extends Error {

123+

override name = "CliArgumentError";

124+

}

111125
112126

const BASE_CONFIG = {

113127

browser: { enabled: false },

@@ -187,11 +201,26 @@ const GATEWAY_CASES: readonly GatewayBenchCase[] = [

187201

function readRequiredFlagValue(argv: string[], index: number, flag: string): string {

188202

const value = argv[index + 1];

189203

if (!value || value.startsWith("-")) {

190-

throw new Error(`${flag} requires a value`);

204+

throw new CliArgumentError(`${flag} requires a value`);

191205

}

192206

return value;

193207

}

194208
209+

function validateCliArgs(argv: string[]): void {

210+

for (let index = 0; index < argv.length; index += 1) {

211+

const arg = argv[index] ?? "";

212+

if (BOOLEAN_FLAGS.has(arg)) {

213+

continue;

214+

}

215+

if (VALUE_FLAGS.has(arg)) {

216+

readRequiredFlagValue(argv, index, arg);

217+

index += 1;

218+

continue;

219+

}

220+

throw new CliArgumentError(`Unknown argument: ${arg}`);

221+

}

222+

}

223+
195224

function parseFlagValue(argv: string[], flag: string): string | undefined {

196225

for (let index = 0; index < argv.length; index += 1) {

197226

if (argv[index] === flag) {

@@ -265,6 +294,7 @@ function resolveCases(caseIds: string[]): GatewayBenchCase[] {

265294

}

266295
267296

function parseOptions(argv: string[] = process.argv.slice(2)): CliOptions {

297+

validateCliArgs(argv);

268298

return {

269299

cases: resolveCases(parseRepeatableFlag(argv, "--case")),

270300

cpuProfDir: parseFlagValue(argv, "--cpu-prof-dir"),

@@ -965,12 +995,18 @@ export const testing = {

965995

sanitizedEnv,

966996

stopChild,

967997

summarizeCase,

998+

validateCliArgs,

968999

waitForProbe,

9691000

writeConfig,

9701001

};

9711002
9721003

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

9731004

main().catch((err: unknown) => {

1005+

if (err instanceof CliArgumentError) {

1006+

console.error(err.message);

1007+

process.exitCode = 1;

1008+

return;

1009+

}

9741010

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

9751011

process.exitCode = 1;

9761012

});

Original file line numberDiff line numberDiff line change

@@ -42,6 +42,7 @@ describe("gateway restart benchmark script", () => {

4242

});

4343
4444

it("rejects ambiguous benchmark CLI values before spawning Node", () => {

45+

expect(() => testing.parseOptions(["--wat"])).toThrow("Unknown argument: --wat");

4546

expect(testing.parsePositiveInt("5", 1, "--restarts")).toBe(5);

4647

expect(testing.parseNonNegativeInt("0", 1, "--warmup")).toBe(0);

4748

expect(

@@ -73,6 +74,26 @@ describe("gateway restart benchmark script", () => {

7374

expect(() => testing.resolveEntry("--inspect")).toThrow(/must be a file path/u);

7475

});

7576
77+

it("rejects unknown benchmark CLI args before checking platform or running cases", () => {

78+

const result = spawnSync(

79+

process.execPath,

80+

["--import", "tsx", "scripts/bench-gateway-restart.ts", "--wat"],

81+

{

82+

cwd: process.cwd(),

83+

encoding: "utf8",

84+

env: {

85+

...process.env,

86+

NODE_NO_WARNINGS: "1",

87+

},

88+

},

89+

);

90+
91+

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

92+

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

93+

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

94+

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

95+

});

96+
7697

it("guards the SIGUSR1 restart benchmark on Windows", () => {

7798

expect(() => testing.ensureSupportedRestartPlatform("linux")).not.toThrow();

7899

expect(() => testing.ensureSupportedRestartPlatform("darwin")).not.toThrow();

Original file line numberDiff line numberDiff line change

@@ -52,6 +52,7 @@ describe("gateway startup benchmark script", () => {

5252

});

5353
5454

it("rejects ambiguous benchmark CLI values before spawning Node", () => {

55+

expect(() => testing.parseOptions(["--wat"])).toThrow("Unknown argument: --wat");

5556

expect(testing.parsePositiveInt("5", 1, "--runs")).toBe(5);

5657

expect(testing.parseNonNegativeInt("0", 1, "--warmup")).toBe(0);

5758

expect(

@@ -83,6 +84,26 @@ describe("gateway startup benchmark script", () => {

8384

expect(() => testing.resolveEntry("--inspect")).toThrow(/must be a file path/u);

8485

});

8586
87+

it("rejects unknown benchmark CLI args before running cases", () => {

88+

const result = spawnSync(

89+

process.execPath,

90+

["--import", "tsx", "scripts/bench-gateway-startup.ts", "--wat"],

91+

{

92+

cwd: process.cwd(),

93+

encoding: "utf8",

94+

env: {

95+

...process.env,

96+

NODE_NO_WARNINGS: "1",

97+

},

98+

},

99+

);

100+
101+

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

102+

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

103+

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

104+

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

105+

});

106+
86107

it("does not disable local-check policy in the child gateway environment", () => {

87108

const env = testing.sanitizedEnv("/tmp/openclaw-bench", "/tmp/openclaw-bench/config.json", {

88109

config: {},