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

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
MyScale Blog
MyScale Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
罗磊的独立博客
G
Google Developers Blog
Y
Y Combinator Blog
博客园 - 【当耐特】
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
美团技术团队
宝玉的分享
宝玉的分享
Jina AI
Jina AI
小众软件
小众软件
T
Tailwind CSS Blog
A
About on SuperTechFans

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(rpc): enforce kitchen sink command rss ceiling · ope...
vincentkoc · 2026-06-03 · via Recent Commits to openclaw:main

@@ -33,6 +33,10 @@ const FETCH_BODY_MAX_BYTES = readPositiveInt(

3333

1024 * 1024,

3434

);

3535

const MAX_RSS_MIB = readPositiveInt(process.env.OPENCLAW_KITCHEN_SINK_MAX_RSS_MIB, 2048);

36+

const MAX_COMMAND_RSS_MIB = readPositiveInt(

37+

process.env.OPENCLAW_KITCHEN_SINK_COMMAND_MAX_RSS_MIB,

38+

8192,

39+

);

3640

const GATEWAY_TEARDOWN_GRACE_MS = 10000;

3741

const GATEWAY_TEARDOWN_KILL_GRACE_MS = 2000;

3842

const OUTPUT_CAPTURE_CHARS = readPositiveInt(

@@ -74,6 +78,7 @@ Environment:

7478

OPENCLAW_KITCHEN_SINK_RPC_INSTALL_MS Plugin install timeout.

7579

OPENCLAW_KITCHEN_SINK_RPC_CALL_MS RPC call timeout.

7680

OPENCLAW_KITCHEN_SINK_MAX_RSS_MIB Gateway RSS ceiling.

81+

OPENCLAW_KITCHEN_SINK_COMMAND_MAX_RSS_MIB Install/CLI command RSS ceiling.

7782

OPENCLAW_KITCHEN_SINK_KEEP_TMP=1 Preserve the isolated temp home.

7883

`;

7984

}

@@ -482,11 +487,19 @@ async function rpcCallViaCli(method, params, options) {

482487

JSON.stringify(params ?? {}),

483488

],

484489

options.env,

485-

{ timeoutMs: RPC_TIMEOUT_MS + 30000 },

490+

createRpcCliRunOptions(method, options),

486491

);

487492

return parseJsonOutput(stdout);

488493

}

489494495+

export function createRpcCliRunOptions(method, options = {}) {

496+

return {

497+

...options.commandResourceOptions,

498+

resourceLabel: `gateway call ${method}`,

499+

timeoutMs: RPC_TIMEOUT_MS + 30000,

500+

};

501+

}

502+490503

export function findDistCallGatewayModuleFiles(cwd = process.cwd()) {

491504

const distDir = path.join(cwd, "dist");

492505

return fs.existsSync(distDir)

@@ -1331,20 +1344,38 @@ async function sampleWindowsProcess(pid, run, commandLineNeedles = []) {

13311344

return null;

13321345

}

133313461334-

export function assertResourceCeiling(sample) {

1347+

function assertProcessResourceCeiling(sample, { label, maxRssMiB, requireSample = true }) {

13351348

if (!sample) {

1336-

throw new Error("gateway RSS sample was not captured");

1349+

if (requireSample) {

1350+

throw new Error(`${label} RSS sample was not captured`);

1351+

}

1352+

return;

13371353

}

1338-

if (sample.rssMiB > MAX_RSS_MIB) {

1339-

throw new Error(`gateway RSS exceeded ${MAX_RSS_MIB} MiB: ${sample.rssMiB} MiB`);

1354+

if (sample.rssMiB > maxRssMiB) {

1355+

throw new Error(`${label} RSS exceeded ${maxRssMiB} MiB: ${sample.rssMiB} MiB`);

13401356

}

1341-

if ((sample.aggregateRssMiB ?? sample.rssMiB) > MAX_RSS_MIB) {

1357+

if ((sample.aggregateRssMiB ?? sample.rssMiB) > maxRssMiB) {

13421358

throw new Error(

1343-

`gateway aggregate RSS exceeded ${MAX_RSS_MIB} MiB: ${sample.aggregateRssMiB} MiB`,

1359+

`${label} aggregate RSS exceeded ${maxRssMiB} MiB: ${sample.aggregateRssMiB} MiB`,

13441360

);

13451361

}

13461362

}

134713631364+

export function assertResourceCeiling(sample) {

1365+

assertProcessResourceCeiling(sample, {

1366+

label: "gateway",

1367+

maxRssMiB: MAX_RSS_MIB,

1368+

});

1369+

}

1370+1371+

export function assertCommandResourceCeiling(sample) {

1372+

assertProcessResourceCeiling(sample, {

1373+

label: "command",

1374+

maxRssMiB: MAX_COMMAND_RSS_MIB,

1375+

requireSample: false,

1376+

});

1377+

}

1378+13481379

export function findErrorLogFindings(logPath) {

13491380

if (!fs.existsSync(logPath)) {

13501381

return [];

@@ -1509,6 +1540,7 @@ export async function main() {

15091540

assertIncludesAny(inspectProviders, EXPECTED_PROVIDERS, "plugins inspect providers");

1510154115111542

child = await startGateway(runner, port, env, logPath);

1543+

const rpcOptions = { commandResourceOptions, env, port, runner };

15121544

const sampleGateway = async () => {

15131545

const gatewayCommandLineNeedles = ["gateway", "--port", String(port)];

15141546

const processSampleOptions = runner.pnpm

@@ -1548,27 +1580,27 @@ export async function main() {

15481580

throw new Error(`/readyz did not report ready: ${JSON.stringify(readyz)}`);

15491581

}

155015821551-

await retryRpcCall("health", {}, { runner, port, env });

1552-

await retryRpcCall("status", {}, { runner, port, env });

1583+

await retryRpcCall("health", {}, rpcOptions);

1584+

await retryRpcCall("status", {}, rpcOptions);

15531585

const channelStatus = await retryRpcCall(

15541586

"channels.status",

15551587

{ probe: true, timeoutMs: 10000 },

1556-

{ runner, port, env },

1588+

rpcOptions,

15571589

);

15581590

const channelAccount = assertChannelAccountRunning(channelStatus);

1559159115601592

const commands = await retryRpcCall(

15611593

"commands.list",

15621594

{ agentId: "main", scope: "text" },

1563-

{ runner, port, env },

1595+

rpcOptions,

15641596

);

15651597

const commandNames = extractPluginCommandNames(commands);

15661598

assertIncludesAll(commandNames, EXPECTED_COMMANDS, "commands.list plugin commands");

1567159915681600

const catalog = await retryRpcCall(

15691601

"tools.catalog",

15701602

{ agentId: "main", includePlugins: true },

1571-

{ runner, port, env },

1603+

rpcOptions,

15721604

);

15731605

const catalogTools = extractToolEntries(catalog);

15741606

const catalogToolIds = catalogTools.map((entry) => entry?.id).filter(isNonEmptyString);

@@ -1581,12 +1613,12 @@ export async function main() {

15811613

const createdSession = await retryRpcCall(

15821614

"sessions.create",

15831615

{ key: SESSION_KEY, agentId: "main", label: "kitchen-sink-rpc" },

1584-

{ runner, port, env },

1616+

rpcOptions,

15851617

);

15861618

const effective = await retryRpcCall(

15871619

"tools.effective",

15881620

{ sessionKey: createdSession.key, agentId: "main" },

1589-

{ runner, port, env },

1621+

rpcOptions,

15901622

);

15911623

const effectiveToolIds = extractToolEntries(effective).map((entry) => entry?.id);

15921624

assertIncludesAny(effectiveToolIds, EXPECTED_TOOLS, "tools.effective plugin tools");

@@ -1600,29 +1632,30 @@ export async function main() {

16001632

agentId: "main",

16011633

idempotencyKey: "kitchen-sink-rpc-search",

16021634

},

1603-

{ runner, port, env },

1635+

rpcOptions,

16041636

);

16051637

assertToolInvokeResult(invoked);

160616381607-

const ttsProviders = await retryRpcCall("tts.providers", {}, { runner, port, env });

1608-

const ttsStatus = await retryRpcCall("tts.status", {}, { runner, port, env });

1639+

const ttsProviders = await retryRpcCall("tts.providers", {}, rpcOptions);

1640+

const ttsStatus = await retryRpcCall("tts.status", {}, rpcOptions);

16091641

assertIncludesAny(extractProviderIds(ttsProviders), EXPECTED_SPEECH_PROVIDERS, "tts.providers");

16101642

assertIncludesAny(extractProviderIds(ttsStatus), EXPECTED_SPEECH_PROVIDERS, "tts.status");

161116431612-

const uiDescriptors = await retryRpcCall("plugins.uiDescriptors", {}, { runner, port, env });

1644+

const uiDescriptors = await retryRpcCall("plugins.uiDescriptors", {}, rpcOptions);

16131645

if (!uiDescriptors || typeof uiDescriptors !== "object") {

16141646

throw new Error(

16151647

`plugins.uiDescriptors returned invalid payload: ${JSON.stringify(uiDescriptors)}`,

16161648

);

16171649

}

1618-

const stability = await retryRpcCall("diagnostics.stability", {}, { runner, port, env });

1650+

const stability = await retryRpcCall("diagnostics.stability", {}, rpcOptions);

16191651

assertDiagnosticStabilityClean(stability);

16201652

await sampleInFlight?.catch(() => {});

16211653

const finalSample = await sampleGateway();

16221654

assertResourceCeiling(finalSample);

16231655

const peakSample = summarizeProcessSamples(processSamples);

16241656

const commandPeakSample = summarizeProcessSamples(commandSamples);

16251657

assertResourceCeiling(peakSample);

1658+

assertCommandResourceCeiling(commandPeakSample);

16261659

assertNoErrorLogs(logPath);

1627166016281661

console.log(