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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

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: dedupe matrix handler send mock calls · openclaw/op...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -164,6 +164,10 @@ function lastCallArg(mock: unknown, argIndex: number, label: string) {

164164

return callArg(mock, calls.length - 1, argIndex, label);

165165

}

166166167+

function singleTextMessageBody(callIndex = 0) {

168+

return callArg(sendSingleTextMessageMatrixMock, callIndex, 1, "single text message body");

169+

}

170+167171

function expectMockCallWithFields(mock: unknown, fields: Record<string, unknown>) {

168172

const matched = mockCalls(mock, "mock calls").some(([value]) => {

169173

if (!value || typeof value !== "object") {

@@ -413,7 +417,7 @@ describe("matrix monitor handler pairing account scope", () => {

413417

await handler("!room:example.org", makeEvent("$event1"));

414418

await handler("!room:example.org", makeEvent("$event2"));

415419

expect(sendMessageMatrixMock).toHaveBeenCalledTimes(1);

416-

const pairingReminder = sendMessageMatrixMock.mock.calls[0]?.[1];

420+

const pairingReminder = callArg(sendMessageMatrixMock, 0, 1, "pairing reminder");

417421

expect(typeof pairingReminder).toBe("string");

418422

expect(pairingReminder).toContain("Pairing request is still pending approval.");

419423

@@ -2916,7 +2920,7 @@ describe("matrix monitor handler draft streaming", () => {

29162920

await vi.waitFor(() => {

29172921

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

29182922

});

2919-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toMatch(/\n`🧩 Read File`$/);

2923+

expect(singleTextMessageBody()).toMatch(/\n`🧩 Read File`$/);

2920292429212925

await deliver({ text: "Done" }, { kind: "final" });

29222926

@@ -2949,7 +2953,7 @@ describe("matrix monitor handler draft streaming", () => {

29492953

await vi.waitFor(() => {

29502954

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

29512955

});

2952-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toBe("- `second`");

2956+

expect(singleTextMessageBody()).toBe("- `second`");

29532957

await finish();

29542958

});

29552959

@@ -2967,7 +2971,7 @@ describe("matrix monitor handler draft streaming", () => {

29672971

await vi.waitFor(() => {

29682972

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

29692973

});

2970-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toMatch(

2974+

expect(singleTextMessageBody()).toMatch(

29712975

/\n- `@room ping @alice:example\.org \[label\]\(https:\/\/example\.org\)`$/,

29722976

);

29732977

await finish();

@@ -3128,7 +3132,7 @@ describe("matrix monitor handler draft streaming", () => {

31283132

await vi.waitFor(() => {

31293133

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(2);

31303134

});

3131-

expect(sendSingleTextMessageMatrixMock.mock.calls[1]?.[1]).toBe("Beta");

3135+

expect(singleTextMessageBody(1)).toBe("Beta");

31323136

expect(deliverMatrixRepliesMock).not.toHaveBeenCalled();

31333137

expect(redactEventMock).not.toHaveBeenCalled();

31343138

await finish();

@@ -3170,7 +3174,7 @@ describe("matrix monitor handler draft streaming", () => {

31703174

},

31713175

{ interval: 1 },

31723176

);

3173-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toBe("Beta");

3177+

expect(singleTextMessageBody()).toBe("Beta");

31743178

expectMatrixEdit("!room:example.org", "$draft1", "Alpha");

31753179

expect(deliverMatrixRepliesMock).not.toHaveBeenCalled();

31763180

expect(redactEventMock).not.toHaveBeenCalled();

@@ -3247,7 +3251,7 @@ describe("matrix monitor handler draft streaming", () => {

32473251

});

3248325232493253

// The draft stream should have received "Block two", not empty string.

3250-

const sentBody = sendSingleTextMessageMatrixMock.mock.calls[0]?.[1];

3254+

const sentBody = singleTextMessageBody();

32513255

expect(sentBody).toBe("Block two");

32523256

await finish();

32533257

});

@@ -3283,7 +3287,7 @@ describe("matrix monitor handler draft streaming", () => {

32833287

await vi.waitFor(() => {

32843288

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

32853289

});

3286-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toBe("Beta");

3290+

expect(singleTextMessageBody()).toBe("Beta");

3287329132883292

await deliver({ text: "Beta" }, { kind: "final" });

32893293

@@ -3324,7 +3328,7 @@ describe("matrix monitor handler draft streaming", () => {

33243328

await vi.waitFor(() => {

33253329

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

33263330

});

3327-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toBe("Beta");

3331+

expect(singleTextMessageBody()).toBe("Beta");

3328333233293333

await deliver({ text: "Beta" }, { kind: "final" });

33303334

@@ -3341,7 +3345,7 @@ describe("matrix monitor handler draft streaming", () => {

33413345

await vi.waitFor(() => {

33423346

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

33433347

});

3344-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toBe("Alpha");

3348+

expect(singleTextMessageBody()).toBe("Alpha");

3345334933463350

await opts.onBlockReplyQueued?.({ text: "Alpha" });

33473351

opts.onPartialReply?.({ text: "AlphaBeta" });

@@ -3362,7 +3366,7 @@ describe("matrix monitor handler draft streaming", () => {

33623366

await vi.waitFor(() => {

33633367

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

33643368

});

3365-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toBe("Beta");

3369+

expect(singleTextMessageBody()).toBe("Beta");

33663370

expectFinalizedPreviewEdit("$draft1", "Alpha");

3367337133683372

sendSingleTextMessageMatrixMock.mockClear();

@@ -3376,7 +3380,7 @@ describe("matrix monitor handler draft streaming", () => {

33763380

await vi.waitFor(() => {

33773381

expect(sendSingleTextMessageMatrixMock).toHaveBeenCalledTimes(1);

33783382

});

3379-

expect(sendSingleTextMessageMatrixMock.mock.calls[0]?.[1]).toBe("Gamma");

3383+

expect(singleTextMessageBody()).toBe("Gamma");

33803384

expectFinalizedPreviewEdit("$draft2", "Beta");

3381338533823386

await finish();