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

推荐订阅源

GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
博客园 - 【当耐特】
D
Docker
Y
Y Combinator Blog
L
LangChain Blog
博客园 - 三生石上(FineUI控件)
I
InfoQ
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
B
Blog
The GitHub Blog
The GitHub Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
爱范儿
爱范儿
A
About on SuperTechFans
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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: harden live QA transport validation · openclaw/open...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -3507,11 +3507,12 @@ describe("matrix live qa scenarios", () => {

35073507

it("preserves separate finalized block events when Matrix block streaming is enabled", async () => {

35083508

const primeRoom = vi.fn().mockResolvedValue("driver-sync-start");

35093509

const sendTextMessage = vi.fn().mockResolvedValue("$block-stream-trigger");

3510-

const readBlockText = (label: "ONE" | "TWO") =>

3511-

mockMessageBody(sendTextMessage, "sendTextMessage")

3512-

.split("\n")

3513-

.find((line) => line.startsWith(`MATRIX_QA_BLOCK_${label}_`)) ??

3514-

`MATRIX_QA_BLOCK_${label}_FIXED`;

3510+

const readBlockText = (label: "ONE" | "TWO") => {

3511+

const match = mockMessageBody(sendTextMessage, "sendTextMessage").match(

3512+

new RegExp(`MATRIX_QA_BLOCK_${label}_[A-F0-9]{8}`),

3513+

);

3514+

return match?.[0] ?? `MATRIX_QA_BLOCK_${label}_FIXED`;

3515+

};

35153516

const waitForRoomEvent = vi

35163517

.fn()

35173518

.mockImplementationOnce(async () => ({

@@ -3593,8 +3594,13 @@ describe("matrix live qa scenarios", () => {

35933594

});

35943595

const body = mockMessageBody(sendTextMessage, "sendTextMessage");

35953596

expect(body).toMatch(

3596-

/reply with exactly this two-line body and no extra text:\nMATRIX_QA_BLOCK_ONE_[A-F0-9]{8}\nMATRIX_QA_BLOCK_TWO_[A-F0-9]{8}$/,

3597+

/first reply with only this exact marker: `MATRIX_QA_BLOCK_ONE_[A-F0-9]{8}`/,

3598+

);

3599+

expect(body).toContain("Then use the read tool exactly once on `QA_KICKOFF_TASK.md`.");

3600+

expect(body).toMatch(

3601+

/After that read completes, reply with only this exact marker: `MATRIX_QA_BLOCK_TWO_[A-F0-9]{8}`/,

35973602

);

3603+

expect(scenario.configOverrides?.toolProfile).toBe("coding");

35983604

expect(mockObjectArg(waitForRoomEvent, "waitForRoomEvent", 1).since).toBe(

35993605

"driver-sync-block-one",

36003606

);

@@ -5217,7 +5223,10 @@ describe("matrix live qa scenarios", () => {

52175223

}),

52185224

};

52195225

}

5220-

if (joined === "matrix verify status --account cli-add-e2ee --json") {

5226+

if (

5227+

joined ===

5228+

"matrix verify status --account cli-add-e2ee --allow-degraded-local-state --json"

5229+

) {

52215230

return {

52225231

args,

52235232

exitCode: 0,

@@ -5289,7 +5298,15 @@ describe("matrix live qa scenarios", () => {

52895298

"--enable-e2ee",

52905299

"--json",

52915300

],

5292-

["matrix", "verify", "status", "--account", "cli-add-e2ee", "--json"],

5301+

[

5302+

"matrix",

5303+

"verify",

5304+

"status",

5305+

"--account",

5306+

"cli-add-e2ee",

5307+

"--allow-degraded-local-state",

5308+

"--json",

5309+

],

52935310

]);

52945311

expect(mockObjectArg(registerWithToken, "registerWithToken").deviceName).toBe(

52955312

"OpenClaw Matrix QA CLI Account Add Owner",