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

推荐订阅源

J
Java Code Geeks
腾讯CDC
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
L
LangChain Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
IT之家
IT之家
A
About on SuperTechFans
H
Help Net Security

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(qa-matrix): surface gateway stderr in failures · open...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import path from "node:path";

55

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

66

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

77

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

8+

import { redactSensitiveText } from "openclaw/plugin-sdk/logging-core";

89

import {

910

parseStrictPositiveInteger,

1011

resolveTimerTimeoutMs,

@@ -58,6 +59,9 @@ type MatrixQaGatewayChild = {

5859

const DEFAULT_MATRIX_QA_RUN_TIMEOUT_MS = 30 * 60_000;

5960

const DEFAULT_MATRIX_QA_CLEANUP_TIMEOUT_MS = 90_000;

6061

const DEFAULT_MATRIX_QA_CANARY_TIMEOUT_MS = 45_000;

62+

const MATRIX_QA_GATEWAY_STDERR_LOG = "gateway.stderr.log";

63+

const MATRIX_QA_GATEWAY_DEBUG_MAX_LINES = 6;

64+

const MATRIX_QA_GATEWAY_DEBUG_MAX_LINE_CHARS = 700;

61656266

type MatrixQaLiveLaneGatewayHarness = {

6367

gateway: MatrixQaGatewayChild;

@@ -195,6 +199,44 @@ function writeMatrixQaProgress(message: string) {

195199

process.stderr.write(`[matrix-qa] ${message}\n`);

196200

}

197201202+

function isMatrixQaGatewayDebugRelevantLine(line: string) {

203+

return /\b(?:auth|authorization|unauthorized|forbidden|missing|error|fail(?:ed|ure)?|exception|provider|api[-_ ]?key|token|denied|rejected|timeout)\b/iu.test(

204+

line,

205+

);

206+

}

207+208+

function trimMatrixQaGatewayDebugLine(line: string) {

209+

const redacted = redactSensitiveText(line.trim());

210+

return redacted.length > MATRIX_QA_GATEWAY_DEBUG_MAX_LINE_CHARS

211+

? `${redacted.slice(0, MATRIX_QA_GATEWAY_DEBUG_MAX_LINE_CHARS)}...`

212+

: redacted;

213+

}

214+215+

function summarizeMatrixQaGatewayStderrLog(stderrText: string) {

216+

const lines = stderrText.split(/\r?\n/u).map(trimMatrixQaGatewayDebugLine).filter(Boolean);

217+

if (lines.length === 0) {

218+

return undefined;

219+

}

220+221+

const relevantLines = lines.filter(isMatrixQaGatewayDebugRelevantLine);

222+

const selectedLines = (relevantLines.length > 0 ? relevantLines : lines).slice(

223+

-MATRIX_QA_GATEWAY_DEBUG_MAX_LINES,

224+

);

225+

return ["gateway stderr tail:", ...selectedLines.map((line) => `- ${line}`)].join("\n");

226+

}

227+228+

async function readMatrixQaGatewayDebugSummary(debugDirPath: string) {

229+

const stderrText = await fs

230+

.readFile(path.join(debugDirPath, MATRIX_QA_GATEWAY_STDERR_LOG), "utf8")

231+

.catch((error: unknown) => {

232+

if ((error as NodeJS.ErrnoException).code === "ENOENT") {

233+

return "";

234+

}

235+

throw error;

236+

});

237+

return summarizeMatrixQaGatewayStderrLog(stderrText);

238+

}

239+198240

function parsePositiveMatrixQaEnvMs(name: string, fallback: number) {

199241

const raw = process.env[name];

200242

if (raw === undefined) {

@@ -1071,11 +1113,16 @@ export async function runMatrixQaLive(params: {

10711113

details: cleanupErrors.join("\n"),

10721114

});

10731115

}

1116+

const gatewayDebugSummary = preservedGatewayDebugDirPath

1117+

? await readMatrixQaGatewayDebugSummary(preservedGatewayDebugDirPath)

1118+

: undefined;

10741119

if (preservedGatewayDebugDirPath) {

10751120

checks.push({

10761121

name: "Matrix gateway debug logs",

10771122

status: "pass",

1078-

details: `preserved at: ${preservedGatewayDebugDirPath}`,

1123+

details: [`preserved at: ${preservedGatewayDebugDirPath}`, gatewayDebugSummary]

1124+

.filter(Boolean)

1125+

.join("\n"),

10791126

});

10801127

}

10811128

@@ -1189,6 +1236,7 @@ export async function runMatrixQaLive(params: {

11891236

details: [

11901237

...failedChecks.map((check) => `check ${check.name}: ${check.details ?? "failed"}`),

11911238

...failedScenarios.map((scenario) => `scenario ${scenario.id}: ${scenario.details}`),

1239+

...(gatewayDebugSummary ? [`gateway debug: ${gatewayDebugSummary}`] : []),

11921240

...cleanupErrors.map((error) => `cleanup: ${error}`),

11931241

],

11941242

artifacts: artifactPaths,

@@ -1231,6 +1279,7 @@ export const testing = {

12311279

resolveMatrixQaCanaryTimeoutMs,

12321280

resolveMatrixQaModels,

12331281

shouldWriteMatrixQaProgress,

1282+

summarizeMatrixQaGatewayStderrLog,

12341283

summarizeMatrixQaConfigSnapshot,

12351284

waitForMatrixChannelReady,

12361285

withMatrixQaRunDeadline,