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

推荐订阅源

宝玉的分享
宝玉的分享
J
Java Code Geeks
S
SegmentFault 最新的问题
L
LangChain Blog
M
MIT News - Artificial intelligence
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
Jina AI
Jina AI
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 叶小钗
美团技术团队
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net

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 kitchen sink rpc temp state · openclaw/o...
vincentkoc · 2026-05-25 · via Recent Commits to openclaw:main

@@ -54,7 +54,7 @@ function resolveOpenClawRunner() {

5454

return { pnpm: true, baseArgs: ["openclaw"], label: "pnpm openclaw" };

5555

}

565657-

function makeEnv() {

57+

export function makeEnv() {

5858

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-kitchen-sink-rpc-"));

5959

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

6060

const stateDir = path.join(home, ".openclaw");

@@ -75,6 +75,31 @@ function makeEnv() {

7575

};

7676

}

777778+

export async function cleanupKitchenSinkEnv(root, options = {}) {

79+

if (root) {

80+

const attempts = Math.max(1, options.attempts ?? 5);

81+

const delayMs = Math.max(0, options.delayMs ?? 250);

82+

let lastError;

83+

for (let attempt = 1; attempt <= attempts; attempt += 1) {

84+

try {

85+

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

86+

return true;

87+

} catch (error) {

88+

lastError = error;

89+

if (attempt < attempts) {

90+

await delay(delayMs);

91+

}

92+

}

93+

}

94+

if (options.warn !== false) {

95+

const message = lastError instanceof Error ? lastError.message : String(lastError);

96+

console.error(`Kitchen Sink RPC temp root cleanup failed; preserved ${root}: ${message}`);

97+

}

98+

return false;

99+

}

100+

return true;

101+

}

102+78103

function writeJson(file, value) {

79104

fs.mkdirSync(path.dirname(file), { recursive: true });

80105

fs.writeFileSync(file, `${JSON.stringify(value, null, 2)}\n`);

@@ -841,53 +866,57 @@ export async function main() {

841866

const port = readPositiveInt(process.env.OPENCLAW_KITCHEN_SINK_RPC_PORT, DEFAULT_PORT);

842867

const { root, env } = makeEnv();

843868

const logPath = path.join(root, "gateway.log");

869+

const keepTmp = process.env.OPENCLAW_KITCHEN_SINK_KEEP_TMP === "1";

870+

let failed = false;

871+

let child;

844872845-

console.log(`Kitchen Sink RPC walk using ${PLUGIN_SPEC} via ${runner.label}`);

846-

await runOpenClaw(runner, ["plugins", "install", PLUGIN_SPEC], env, {

847-

timeoutMs: INSTALL_TIMEOUT_MS,

848-

});

849-

runner = resolveOpenClawRunner();

850-

console.log(`Kitchen Sink RPC runtime runner: ${runner.label}`);

851-

configureKitchenSink(env, port);

852-

await runOpenClaw(runner, ["plugins", "enable", PLUGIN_ID], env, { timeoutMs: 60000 });

853-

const inspect = parseJsonOutput(

854-

(await runOpenClaw(runner, ["plugins", "inspect", PLUGIN_ID, "--runtime", "--json"], env))

855-

.stdout,

856-

);

857-

if (inspect?.plugin?.status !== "loaded") {

858-

throw new Error(`Kitchen Sink plugin did not inspect as loaded: ${JSON.stringify(inspect)}`);

859-

}

860-

const inspectPlugin = inspect.plugin ?? {};

861-

const inspectProviders = [

862-

...(Array.isArray(inspectPlugin.providerIds) ? inspectPlugin.providerIds : []),

863-

...(Array.isArray(inspectPlugin.providers) ? inspectPlugin.providers : []),

864-

];

865-

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

866-867-

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

868873

const processSamples = [];

869-

const sampleGateway = async () => {

870-

const windowsSampleOptions = runner.pnpm

871-

? { windowsCommandLineNeedles: ["gateway", "--port", String(port)] }

872-

: {};

873-

let sample = await sampleProcess(child.pid, windowsSampleOptions);

874-

if (!sample && process.platform === "win32") {

875-

sample = await sampleWindowsProcessByPort(port);

876-

}

877-

if (sample) {

878-

processSamples.push(sample);

879-

}

880-

return sample;

881-

};

882874

let sampleInFlight = null;

883-

const collectTimedSample = () => {

884-

sampleInFlight ??= sampleGateway().finally(() => {

885-

sampleInFlight = null;

886-

});

887-

return sampleInFlight;

888-

};

889875

let sampleTimer;

890876

try {

877+

console.log(`Kitchen Sink RPC walk using ${PLUGIN_SPEC} via ${runner.label}`);

878+

await runOpenClaw(runner, ["plugins", "install", PLUGIN_SPEC], env, {

879+

timeoutMs: INSTALL_TIMEOUT_MS,

880+

});

881+

runner = resolveOpenClawRunner();

882+

console.log(`Kitchen Sink RPC runtime runner: ${runner.label}`);

883+

configureKitchenSink(env, port);

884+

await runOpenClaw(runner, ["plugins", "enable", PLUGIN_ID], env, { timeoutMs: 60000 });

885+

const inspect = parseJsonOutput(

886+

(await runOpenClaw(runner, ["plugins", "inspect", PLUGIN_ID, "--runtime", "--json"], env))

887+

.stdout,

888+

);

889+

if (inspect?.plugin?.status !== "loaded") {

890+

throw new Error(`Kitchen Sink plugin did not inspect as loaded: ${JSON.stringify(inspect)}`);

891+

}

892+

const inspectPlugin = inspect.plugin ?? {};

893+

const inspectProviders = [

894+

...(Array.isArray(inspectPlugin.providerIds) ? inspectPlugin.providerIds : []),

895+

...(Array.isArray(inspectPlugin.providers) ? inspectPlugin.providers : []),

896+

];

897+

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

898+899+

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

900+

const sampleGateway = async () => {

901+

const windowsSampleOptions = runner.pnpm

902+

? { windowsCommandLineNeedles: ["gateway", "--port", String(port)] }

903+

: {};

904+

let sample = await sampleProcess(child.pid, windowsSampleOptions);

905+

if (!sample && process.platform === "win32") {

906+

sample = await sampleWindowsProcessByPort(port);

907+

}

908+

if (sample) {

909+

processSamples.push(sample);

910+

}

911+

return sample;

912+

};

913+

const collectTimedSample = () => {

914+

sampleInFlight ??= sampleGateway().finally(() => {

915+

sampleInFlight = null;

916+

});

917+

return sampleInFlight;

918+

};

919+891920

await waitForGatewayReady(child, port, logPath);

892921

const initialSample = await sampleGateway();

893922

sampleTimer = setInterval(() => {

@@ -996,13 +1025,19 @@ export async function main() {

9961025

);

9971026

console.log("Kitchen Sink RPC walk passed");

9981027

} catch (error) {

1028+

failed = true;

9991029

console.error(tailFile(logPath));

10001030

throw error;

10011031

} finally {

10021032

if (sampleTimer) {

10031033

clearInterval(sampleTimer);

10041034

}

10051035

await stopGateway(child);

1036+

if (!failed && !keepTmp) {

1037+

await cleanupKitchenSinkEnv(root);

1038+

} else if (failed || keepTmp) {

1039+

console.error(`Kitchen Sink RPC temp root preserved: ${root}`);

1040+

}

10061041

}

10071042

}

10081043