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

推荐订阅源

美团技术团队
IT之家
IT之家
博客园 - Franky
博客园_首页
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed

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(matrix): harden live QA waits · openclaw/openclaw@85...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

File tree

  • extensions/qa-matrix/src/runners/contract

Original file line numberDiff line numberDiff line change

@@ -87,6 +87,7 @@ export const MATRIX_QA_RESTART_ROOM_KEY = "restart";

8787

export const MATRIX_QA_SECONDARY_ROOM_KEY = "secondary";

8888
8989

const MATRIX_QA_LIVE_MODEL_TIMEOUT_MS = 120_000;

90+

const MATRIX_QA_IMAGE_GENERATION_TIMEOUT_MS = 180_000;

9091

const MATRIX_QA_E2EE_REPLY_TIMEOUT_MS = 150_000;

9192

const MATRIX_QA_E2EE_MEDIA_TIMEOUT_MS = 180_000;

9293

@@ -311,7 +312,7 @@ export const MATRIX_QA_SCENARIOS: MatrixQaScenarioDefinition[] = [

311312

},

312313

{

313314

id: "matrix-room-generated-image-delivery",

314-

timeoutMs: 60_000,

315+

timeoutMs: MATRIX_QA_IMAGE_GENERATION_TIMEOUT_MS,

315316

title: "Matrix generated images deliver as real image attachments while streaming",

316317

topology: MATRIX_QA_MEDIA_ROOM_TOPOLOGY,

317318

configOverrides: {

Original file line numberDiff line numberDiff line change

@@ -297,9 +297,10 @@ export async function runSubagentThreadSpawnScenario(context: MatrixQaScenarioCo

297297

const { client, startSince } = await primeMatrixQaDriverScenarioClient(context);

298298

const childToken = buildMatrixQaToken("MATRIX_QA_SUBAGENT_CHILD");

299299

const triggerBody = [

300-

`${context.sutUserId} Use sessions_spawn for this QA check.`,

301-

`task="Reply exactly \`${childToken}\`. This is the marker."`,

302-

"label=matrix-thread-subagent thread=true mode=session runTimeoutSeconds=30",

300+

`${context.sutUserId} Call sessions_spawn now for this QA check.`,

301+

`Use task="Reply exactly \`${childToken}\`. This is the marker."`,

302+

"Use label=matrix-thread-subagent thread=true mode=session runTimeoutSeconds=60.",

303+

"Do not answer with the marker yourself.",

303304

].join(" ");

304305

const driverEventId = await client.sendTextMessage({

305306

body: triggerBody,

Original file line numberDiff line numberDiff line change

@@ -169,6 +169,9 @@ describe("matrix live qa scenarios", () => {

169169

expect(scenarios.get("matrix-subagent-thread-spawn")?.timeoutMs).toBeGreaterThanOrEqual(

170170

120_000,

171171

);

172+

expect(scenarios.get("matrix-room-generated-image-delivery")?.timeoutMs).toBeGreaterThanOrEqual(

173+

180_000,

174+

);

172175

expect(scenarios.get("matrix-e2ee-restart-resume")?.timeoutMs).toBeGreaterThanOrEqual(150_000);

173176

expect(scenarios.get("matrix-e2ee-artifact-redaction")?.timeoutMs).toBeGreaterThanOrEqual(

174177

150_000,

@@ -1356,7 +1359,12 @@ describe("matrix live qa scenarios", () => {

13561359

});

13571360
13581361

expect(sendTextMessage).toHaveBeenCalledWith({

1359-

body: expect.stringContaining("Use sessions_spawn for this QA check"),

1362+

body: expect.stringContaining("Call sessions_spawn now for this QA check"),

1363+

mentionUserIds: ["@sut:matrix-qa.test"],

1364+

roomId: "!main:matrix-qa.test",

1365+

});

1366+

expect(sendTextMessage).toHaveBeenCalledWith({

1367+

body: expect.stringContaining("runTimeoutSeconds=60"),

13601368

mentionUserIds: ["@sut:matrix-qa.test"],

13611369

roomId: "!main:matrix-qa.test",

13621370

});