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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
L
LangChain Blog
博客园 - Franky
美团技术团队
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
小众软件
小众软件
Y
Y Combinator Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News

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 realtime perf cli args · openclaw/opencl...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -26,6 +26,10 @@ const GOOGLE_REALTIME_VOICE = process.env.OPENCLAW_REALTIME_GOOGLE_VOICE?.trim()

2626

const GOOGLE_LIVE_WS_URL =

2727

"wss://generativelanguage.googleapis.com/ws/google.ai.generativelanguage.v1alpha.GenerativeService.BidiGenerateContentConstrained";

2828
29+

type RealtimeSmokeCliOptions = {

30+

help: boolean;

31+

};

32+
2933

type SmokeResult = {

3034

name: string;

3135

ok: boolean;

@@ -53,6 +57,33 @@ type OpenAIWebRtcSmokeGlobal = typeof globalThis & {

5357

openclawReadBoundedRealtimeResponseText?: OpenAIRealtimeBrowserResponseReader;

5458

};

5559
60+

class CliArgumentError extends Error {

61+

override name = "CliArgumentError";

62+

}

63+
64+

function usage(): string {

65+

return [

66+

"Usage: node --import tsx scripts/dev/realtime-talk-live-smoke.ts [options]",

67+

"",

68+

"Options:",

69+

" -h, --help Show this help",

70+

"",

71+

"Environment:",

72+

" OPENAI_API_KEY",

73+

" GEMINI_API_KEY or GOOGLE_API_KEY",

74+

].join("\n");

75+

}

76+
77+

function parseRealtimeSmokeArgs(argv = process.argv.slice(2)): RealtimeSmokeCliOptions {

78+

for (const arg of argv) {

79+

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

80+

continue;

81+

}

82+

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

83+

}

84+

return { help: argv.includes("--help") || argv.includes("-h") };

85+

}

86+
5687

function getEnv(name: string): string | undefined {

5788

const value = process.env[name]?.trim();

5889

return value ? value : undefined;

@@ -729,7 +760,12 @@ try {

729760

}

730761

}

731762
732-

async function main(): Promise<void> {

763+

async function main(argv = process.argv.slice(2)): Promise<void> {

764+

const cli = parseRealtimeSmokeArgs(argv);

765+

if (cli.help) {

766+

console.log(usage());

767+

return;

768+

}

733769

const openAIKey = getEnv("OPENAI_API_KEY");

734770

const googleKey = getEnv("GEMINI_API_KEY") ?? getEnv("GOOGLE_API_KEY");

735771

const browser = await chromium.launch({

@@ -781,17 +817,19 @@ async function main(): Promise<void> {

781817
782818

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

783819

await main().catch((error: unknown) => {

784-

console.error(shortError(error));

820+

console.error(error instanceof CliArgumentError ? error.message : shortError(error));

785821

process.exitCode = 1;

786822

});

787823

}

788824
789825

export const testing = {

790826

OPENAI_HTTP_RESPONSE_MAX_BYTES,

791827

createOpenAIClientSecret,

828+

parseRealtimeSmokeArgs,

792829

readOpenAIRealtimeBrowserResponseText,

793830

readBoundedText,

794831

resolveOpenAIHttpTimeoutMs,

832+

usage,

795833

};

796834
797835

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,22 @@ import { parsePositiveInt } from "../lib/numeric-options.mjs";

88
99

const DEFAULT_LIMIT = 30;

1010
11+

export function usage() {

12+

return "Usage: scripts/perf/summarize-cpuprofile.mjs [--limit N] <profile...>";

13+

}

14+
15+

export function shouldPrintHelp(argv) {

16+

for (const arg of argv) {

17+

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

18+

return false;

19+

}

20+

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

21+

return true;

22+

}

23+

}

24+

return false;

25+

}

26+
1127

/**

1228

* Parses CPU profile file paths and --limit.

1329

*/

@@ -24,6 +40,13 @@ export function parseArgs(argv) {

2440

limit = parsePositiveInt(arg.slice("--limit=".length), "--limit");

2541

continue;

2642

}

43+

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

44+

files.push(...argv.slice(index + 1));

45+

break;

46+

}

47+

if (arg.startsWith("-")) {

48+

throw new Error(`Unknown option: ${arg}`);

49+

}

2750

files.push(arg);

2851

}

2952

return { files, limit };

@@ -125,6 +148,10 @@ export function summarizeProfile(file, limit) {

125148

}

126149
127150

function main() {

151+

if (shouldPrintHelp(process.argv.slice(2))) {

152+

console.log(usage());

153+

return;

154+

}

128155

let options;

129156

try {

130157

options = parseArgs(process.argv.slice(2));

@@ -133,7 +160,7 @@ function main() {

133160

process.exit(1);

134161

}

135162

if (options.files.length === 0) {

136-

console.error("usage: scripts/perf/summarize-cpuprofile.mjs [--limit N] <profile...>");

163+

console.error(usage());

137164

process.exit(2);

138165

}

139166

try {

Original file line numberDiff line numberDiff line change

@@ -399,6 +399,44 @@ describe("script-specific dev tooling hardening", () => {

399399

);

400400

});

401401
402+

it("prints OpenAI realtime smoke help without launching live checks", () => {

403+

expect(realtimeSmokeTesting.parseRealtimeSmokeArgs(["--help"])).toEqual({ help: true });

404+
405+

const result = spawnSync(

406+

process.execPath,

407+

["--import", "tsx", "scripts/dev/realtime-talk-live-smoke.ts", "--help"],

408+

{

409+

cwd: process.cwd(),

410+

encoding: "utf8",

411+

},

412+

);

413+
414+

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

415+

expect(result.stdout).toContain(

416+

"Usage: node --import tsx scripts/dev/realtime-talk-live-smoke.ts",

417+

);

418+

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

419+

});

420+
421+

it("rejects unknown OpenAI realtime smoke args before launching live checks", () => {

422+

expect(() => realtimeSmokeTesting.parseRealtimeSmokeArgs(["--wat"])).toThrow(

423+

"Unknown argument: --wat",

424+

);

425+
426+

const result = spawnSync(

427+

process.execPath,

428+

["--import", "tsx", "scripts/dev/realtime-talk-live-smoke.ts", "--wat"],

429+

{

430+

cwd: process.cwd(),

431+

encoding: "utf8",

432+

},

433+

);

434+
435+

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

436+

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

437+

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

438+

});

439+
402440

it("bounds OpenAI realtime smoke response body reads by content-length", async () => {

403441

const maxBytes = realtimeSmokeTesting.OPENAI_HTTP_RESPONSE_MAX_BYTES;

404442

const response = new Response("{}", {

Original file line numberDiff line numberDiff line change

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

44

import os from "node:os";

55

import path from "node:path";

66

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

7-

import { parseArgs } from "../../scripts/perf/summarize-cpuprofile.mjs";

7+

import { parseArgs, shouldPrintHelp } from "../../scripts/perf/summarize-cpuprofile.mjs";

88
99

describe("scripts/perf/summarize-cpuprofile.mjs", () => {

1010

it("parses split and inline positive limit flags", () => {

@@ -16,6 +16,28 @@ describe("scripts/perf/summarize-cpuprofile.mjs", () => {

1616

files: ["a.cpuprofile", "b.cpuprofile"],

1717

limit: 7,

1818

});

19+

expect(parseArgs(["--limit", "5", "--", "--dash.cpuprofile"])).toEqual({

20+

files: ["--dash.cpuprofile"],

21+

limit: 5,

22+

});

23+

});

24+
25+

it("prints help without treating it as a profile path", () => {

26+

expect(shouldPrintHelp(["--help"])).toBe(true);

27+

expect(shouldPrintHelp(["--", "--help"])).toBe(false);

28+
29+

const result = spawnSync(

30+

process.execPath,

31+

["scripts/perf/summarize-cpuprofile.mjs", "--help"],

32+

{

33+

cwd: process.cwd(),

34+

encoding: "utf8",

35+

},

36+

);

37+
38+

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

39+

expect(result.stdout).toContain("Usage: scripts/perf/summarize-cpuprofile.mjs");

40+

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

1941

});

2042
2143

it("rejects malformed limit flags instead of falling back", () => {

@@ -29,6 +51,19 @@ describe("scripts/perf/summarize-cpuprofile.mjs", () => {

2951

}

3052

});

3153
54+

it("rejects unknown options instead of treating them as profile paths", () => {

55+

expect(() => parseArgs(["--wat"])).toThrow("Unknown option: --wat");

56+
57+

const result = spawnSync(process.execPath, ["scripts/perf/summarize-cpuprofile.mjs", "--wat"], {

58+

cwd: process.cwd(),

59+

encoding: "utf8",

60+

});

61+
62+

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

63+

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

64+

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

65+

});

66+
3267

it("rejects empty CPU profiles instead of printing zero-sample summaries", () => {

3368

const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-cpuprofile-"));

3469

const profilePath = path.join(tempDir, "empty.cpuprofile");