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

推荐订阅源

WordPress大学
WordPress大学
L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
小众软件
小众软件
博客园 - Franky
D
Docker
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
宝玉的分享
宝玉的分享
C
Check Point Blog
B
Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
The Cloudflare Blog
博客园 - 聂微东
博客园_首页
Engineering at Meta
Engineering at Meta

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(e2e): harden plugin gauntlet cleanup · openclaw/openc...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main
11

#!/usr/bin/env node

223-

import { spawn, spawnSync } from "node:child_process";

3+

import { spawn } from "node:child_process";

44

import fs from "node:fs";

55

import os from "node:os";

66

import path from "node:path";

@@ -374,55 +374,8 @@ function writeCommandLog(params) {

374374

return logPath;

375375

}

376376377-

export function runMeasuredCommand(params) {

378-

const { command, args, mode } =

379-

params.timeMode === "none"

380-

? { command: params.command, args: params.args, mode: "none" }

381-

: timeWrapperArgs(params.command, params.args);

382-

const started = performance.now();

383-

const result = spawnSync(command, args, {

384-

cwd: params.cwd,

385-

env: params.env,

386-

encoding: "utf8",

387-

timeout: params.timeoutMs,

388-

maxBuffer: params.maxBufferBytes ?? COMMAND_OUTPUT_MAX_BUFFER_BYTES,

389-

...(mode === "none" ? (params.spawnOptions ?? {}) : {}),

390-

});

391-

const wallMs = performance.now() - started;

392-

const spawnError = result.error

393-

? {

394-

code: typeof result.error.code === "string" ? result.error.code : null,

395-

message: result.error.message,

396-

}

397-

: null;

398-

const status = result.status ?? (result.signal || spawnError ? 1 : 0);

399-

const stdout = result.stdout ?? "";

400-

const stderr = [

401-

result.stderr ?? "",

402-

spawnError ? `[spawn error] ${spawnError.code ?? "unknown"} ${spawnError.message}` : "",

403-

]

404-

.filter(Boolean)

405-

.join("\n");

406-

const diagnosticFailure = detectCommandDiagnosticFailure(stdout, stderr);

407-

const logPath = writeCommandLog({

408-

logDir: params.logDir,

409-

label: params.label,

410-

command: [params.command, ...params.args],

411-

stdout,

412-

stderr,

413-

});

414-

return {

415-

label: params.label,

416-

phase: params.phase,

417-

pluginId: params.pluginId ?? null,

418-

status,

419-

diagnosticFailure,

420-

signal: result.signal ?? null,

421-

timedOut: spawnError?.code === "ETIMEDOUT",

422-

spawnError,

423-

logPath,

424-

...parseTimedMetrics(stderr, wallMs, mode),

425-

};

377+

export async function runMeasuredCommand(params) {

378+

return await runMeasuredCommandLive(params);

426379

}

427380428381

export function runMeasuredCommandLive(params) {

@@ -642,7 +595,7 @@ export function hasGauntletWorkRows(rows) {

642595

return rows.some((row) => row.phase !== "prebuild");

643596

}

644597645-

function runPluginLifecycle(params) {

598+

async function runPluginLifecycle(params) {

646599

for (const plugin of params.plugins) {

647600

const commands = [

648601

{

@@ -658,7 +611,7 @@ function runPluginLifecycle(params) {

658611

for (const { phase, args } of commands) {

659612

process.stderr.write(`[plugin-gauntlet] ${plugin.id} ${phase}\n`);

660613

params.rows.push(

661-

runMeasuredCommand({

614+

await runMeasuredCommand({

662615

cwd: params.repoRoot,

663616

env: params.env,

664617

logDir: path.join(params.outputDir, "logs", "lifecycle"),

@@ -673,13 +626,13 @@ function runPluginLifecycle(params) {

673626

}

674627

}

675628676-

function runSlashHelpProbes(params) {

629+

async function runSlashHelpProbes(params) {

677630

for (const plugin of params.plugins) {

678631

for (const alias of plugin.cliCommandAliases) {

679632

const command = alias.cliCommand ?? alias.name;

680633

process.stderr.write(`[plugin-gauntlet] ${plugin.id} slash-help /${alias.name}\n`);

681634

params.rows.push(

682-

runMeasuredCommand({

635+

await runMeasuredCommand({

683636

cwd: params.repoRoot,

684637

env: params.env,

685638

logDir: path.join(params.outputDir, "logs", "slash-help"),

@@ -694,7 +647,7 @@ function runSlashHelpProbes(params) {

694647

}

695648

}

696649697-

function runQaChunks(params) {

650+

async function runQaChunks(params) {

698651

const chunks = [

699652

...(params.qaBaseline ? [{ label: "baseline", plugins: [] }] : []),

700653

...chunkArray(params.plugins, params.qaPluginChunkSize).map((plugins, index) => ({

@@ -712,7 +665,7 @@ function runQaChunks(params) {

712665

process.stderr.write(

713666

`[plugin-gauntlet] qa chunk ${index + 1}/${chunks.length}: ${pluginIdLabel}\n`,

714667

);

715-

const row = runMeasuredCommand({

668+

const row = await runMeasuredCommand({

716669

cwd: params.repoRoot,

717670

env: params.env,

718671

logDir: path.join(params.outputDir, "logs", "qa-suite"),

@@ -849,7 +802,7 @@ async function main() {

849802

(row) => row.phase === "prebuild" && (row.status !== 0 || row.timedOut),

850803

);

851804

if (!prebuildFailed && !options.skipLifecycle) {

852-

runPluginLifecycle({

805+

await runPluginLifecycle({

853806

repoRoot,

854807

outputDir: options.outputDir,

855808

env: commandEnv,

@@ -859,7 +812,7 @@ async function main() {

859812

});

860813

}

861814

if (!prebuildFailed && !options.skipSlashHelp) {

862-

runSlashHelpProbes({

815+

await runSlashHelpProbes({

863816

repoRoot,

864817

outputDir: options.outputDir,

865818

env: commandEnv,

@@ -871,7 +824,7 @@ async function main() {

871824

const qaSummaries =

872825

options.skipQa || prebuildFailed

873826

? []

874-

: runQaChunks({

827+

: await runQaChunks({

875828

repoRoot,

876829

outputDir: options.outputDir,

877830

env: commandEnv,