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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
IT之家
IT之家
C
Check Point Blog
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
M
MIT News - Artificial intelligence
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
F
Fortinet All Blogs
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

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): harden bundled plugin install sweep · openclaw...
vincentkoc · 2026-05-26 · via Recent Commits to openclaw:main

@@ -4,8 +4,13 @@ import os from "node:os";

44

import path from "node:path";

55

import process from "node:process";

66

import { setTimeout as delay } from "node:timers/promises";

7+

import { fileURLToPath } from "node:url";

7889

const TOKEN = "bundled-plugin-runtime-smoke-token";

10+

const OUTPUT_CAPTURE_CHARS = readPositiveInt(

11+

process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_OUTPUT_CHARS,

12+

1024 * 1024,

13+

);

914

const WATCHDOG_MS = readPositiveInt(process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_WATCHDOG_MS, 1000);

1015

const READY_TIMEOUT_MS = readPositiveInt(

1116

process.env.OPENCLAW_BUNDLED_PLUGIN_RUNTIME_READY_MS,

@@ -136,27 +141,58 @@ function isNonEmptyString(value) {

136141

return typeof value === "string" && value.trim().length > 0;

137142

}

138143144+

export function appendBoundedOutput(buffer, chunk, maxChars = OUTPUT_CAPTURE_CHARS) {

145+

const nextText = buffer.text + String(chunk);

146+

if (nextText.length <= maxChars) {

147+

return { text: nextText, truncatedChars: buffer.truncatedChars };

148+

}

149+

const truncatedChars = buffer.truncatedChars + nextText.length - maxChars;

150+

return { text: nextText.slice(-maxChars), truncatedChars };

151+

}

152+153+

function formatCapturedOutput(label, buffer) {

154+

if (!buffer.text) {

155+

return "";

156+

}

157+

const prefix =

158+

buffer.truncatedChars > 0

159+

? `[${label} truncated ${buffer.truncatedChars} chars; showing tail]\n`

160+

: "";

161+

return `${prefix}${buffer.text}`;

162+

}

163+139164

function runCommand(command, args, options = {}) {

140165

return new Promise((resolve, reject) => {

141166

const child = childProcess.spawn(command, args, {

142167

stdio: ["ignore", "pipe", "pipe"],

143168

...options,

144169

});

145-

let stdout = "";

146-

let stderr = "";

170+

let stdout = { text: "", truncatedChars: 0 };

171+

let stderr = { text: "", truncatedChars: 0 };

147172

child.stdout?.on("data", (chunk) => {

148-

stdout += String(chunk);

173+

stdout = appendBoundedOutput(stdout, chunk);

149174

});

150175

child.stderr?.on("data", (chunk) => {

151-

stderr += String(chunk);

176+

stderr = appendBoundedOutput(stderr, chunk);

152177

});

153178

child.on("error", reject);

154179

child.on("close", (status, signal) => {

155180

if (status === 0) {

156-

resolve({ stdout, stderr });

181+

resolve({

182+

stdout: stdout.text,

183+

stderr: stderr.text,

184+

stdoutTruncatedChars: stdout.truncatedChars,

185+

stderrTruncatedChars: stderr.truncatedChars,

186+

});

157187

return;

158188

}

159-

const detail = [stdout, stderr].filter(Boolean).join("\n").trim();

189+

const detail = [

190+

formatCapturedOutput("stdout", stdout),

191+

formatCapturedOutput("stderr", stderr),

192+

]

193+

.filter(Boolean)

194+

.join("\n")

195+

.trim();

160196

reject(

161197

new Error(

162198

`${command} ${args.join(" ")} failed with ${signal || status}${detail ? `\n${detail}` : ""}`,

@@ -726,7 +762,7 @@ async function smokeOpenAiTts(pluginIndex) {

726762

}

727763

}

728764729-

function createIsolatedStateEnv(label) {

765+

export function createIsolatedStateEnv(label) {

730766

const root = fs.mkdtempSync(path.join(os.tmpdir(), `openclaw-${label}-`));

731767

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

732768

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

@@ -735,7 +771,8 @@ function createIsolatedStateEnv(label) {

735771

return {

736772

...process.env,

737773

HOME: home,

738-

OPENCLAW_HOME: stateDir,

774+

USERPROFILE: home,

775+

OPENCLAW_HOME: home,

739776

OPENCLAW_STATE_DIR: stateDir,

740777

OPENCLAW_CONFIG_PATH: configPath,

741778

};

@@ -752,16 +789,22 @@ function tailText(text) {

752789

return text.split(/\r?\n/u).slice(-120).join("\n");

753790

}

754791755-

const [command, pluginId, pluginDir, requiresConfigRaw, pluginIndexRaw, pluginRoot, provider] =

756-

process.argv.slice(2);

757-

const pluginIndex = Number.parseInt(pluginIndexRaw || "0", 10);

792+

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

793+

const [command, pluginId, pluginDir, requiresConfigRaw, pluginIndexRaw, pluginRoot, provider] =

794+

argv;

795+

const pluginIndex = Number.parseInt(pluginIndexRaw || "0", 10);

796+797+

if (command === "plugin") {

798+

await smokePlugin(pluginId, pluginDir, requiresConfigRaw === "1", pluginIndex, pluginRoot);

799+

} else if (command === "tts-global-disable") {

800+

await smokeTtsGlobalDisable(pluginId, pluginDir, provider, pluginIndex, pluginRoot);

801+

} else if (command === "tts-openai-live") {

802+

await smokeOpenAiTts(pluginIndex);

803+

} else {

804+

throw new Error(`Unknown runtime smoke command: ${command || "(missing)"}`);

805+

}

806+

}

758807759-

if (command === "plugin") {

760-

await smokePlugin(pluginId, pluginDir, requiresConfigRaw === "1", pluginIndex, pluginRoot);

761-

} else if (command === "tts-global-disable") {

762-

await smokeTtsGlobalDisable(pluginId, pluginDir, provider, pluginIndex, pluginRoot);

763-

} else if (command === "tts-openai-live") {

764-

await smokeOpenAiTts(pluginIndex);

765-

} else {

766-

throw new Error(`Unknown runtime smoke command: ${command || "(missing)"}`);

808+

if (process.argv[1] && path.resolve(process.argv[1]) === fileURLToPath(import.meta.url)) {

809+

await main();

767810

}