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

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News

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: tighten whatsapp monitor inbox assertions · opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -38,6 +38,12 @@ function createSocketRef(): NonNullable<InboxMonitorOptions["socketRef"]> {

3838

return { current: null };

3939

}

404041+

function inboundMessage(onMessage: ReturnType<typeof vi.fn>, index = 0): Record<string, unknown> {

42+

const msg = onMessage.mock.calls[index]?.[0];

43+

expect(msg).toBeDefined();

44+

return msg as Record<string, unknown>;

45+

}

46+4147

async function primeInboundReplyHandle(params: {

4248

onMessage: ReturnType<typeof vi.fn>;

4349

socketRef: NonNullable<InboxMonitorOptions["socketRef"]>;

@@ -115,30 +121,26 @@ describe("web monitor inbox", () => {

115121

sock.ev.emit("messages.upsert", upsert);

116122

await waitForMessageCalls(onMessage, 1);

117123118-

expect(onMessage).toHaveBeenCalledWith(

119-

expect.objectContaining({

120-

replyToId: "q1",

121-

replyToBody: "original",

122-

replyToSender: "+111",

123-

sender: expect.objectContaining({

124-

e164: "+999",

125-

name: "Tester",

126-

}),

127-

replyTo: expect.objectContaining({

128-

id: "q1",

129-

body: "original",

130-

sender: expect.objectContaining({

131-

jid: "111@s.whatsapp.net",

132-

e164: "+111",

133-

label: "+111",

134-

}),

135-

}),

136-

self: expect.objectContaining({

137-

jid: "123@s.whatsapp.net",

138-

e164: "+123",

139-

}),

140-

}),

141-

);

124+

const inbound = inboundMessage(onMessage);

125+

expect(inbound.replyToId).toBe("q1");

126+

expect(inbound.replyToBody).toBe("original");

127+

expect(inbound.replyToSender).toBe("+111");

128+

const sender = inbound.sender as { e164?: string; name?: string };

129+

expect(sender.e164).toBe("+999");

130+

expect(sender.name).toBe("Tester");

131+

const replyTo = inbound.replyTo as {

132+

body?: string;

133+

id?: string;

134+

sender?: { e164?: string; jid?: string; label?: string };

135+

};

136+

expect(replyTo.id).toBe("q1");

137+

expect(replyTo.body).toBe("original");

138+

expect(replyTo.sender?.jid).toBe("111@s.whatsapp.net");

139+

expect(replyTo.sender?.e164).toBe("+111");

140+

expect(replyTo.sender?.label).toBe("+111");

141+

const self = inbound.self as { e164?: string; jid?: string };

142+

expect(self.jid).toBe("123@s.whatsapp.net");

143+

expect(self.e164).toBe("+123");

142144

expect(sock.sendMessage).toHaveBeenCalledWith("999@s.whatsapp.net", {

143145

text: "pong",

144146

});

@@ -166,9 +168,10 @@ describe("web monitor inbox", () => {

166168

sock.ev.emit("messages.upsert", upsert);

167169

await waitForMessageCalls(onMessage, 1);

168170169-

expect(onMessage).toHaveBeenCalledWith(

170-

expect.objectContaining({ body: "ping", from: "+999", to: "+123" }),

171-

);

171+

const inbound = inboundMessage(onMessage);

172+

expect(inbound.body).toBe("ping");

173+

expect(inbound.from).toBe("+999");

174+

expect(inbound.to).toBe("+123");

172175

expect(sock.readMessages).toHaveBeenCalledWith([

173176

{

174177

remoteJid: "999@s.whatsapp.net",

@@ -258,15 +261,12 @@ describe("web monitor inbox", () => {

258261

);

259262260263

await waitForMessageCalls(onMessage, 1);

261-

expect(onMessage).toHaveBeenCalledWith(

262-

expect.objectContaining({

263-

body: "ping",

264-

from: "123@g.us",

265-

groupSubject: "Recovered Group",

266-

senderE164: "+444",

267-

chatType: "group",

268-

}),

269-

);

264+

const inbound = inboundMessage(onMessage);

265+

expect(inbound.body).toBe("ping");

266+

expect(inbound.from).toBe("123@g.us");

267+

expect(inbound.groupSubject).toBe("Recovered Group");

268+

expect(inbound.senderE164).toBe("+444");

269+

expect(inbound.chatType).toBe("group");

270270

expect(onMessage.mock.calls[0]?.[0].groupParticipants).toBeUndefined();

271271272272

await second.listener.close();

@@ -453,11 +453,7 @@ describe("web monitor inbox", () => {

453453

await listener.close();

454454

await vi.advanceTimersByTimeAsync(50);

455455

await waitForMessageCalls(onMessage, 1);

456-

expect(onMessage).toHaveBeenCalledWith(

457-

expect.objectContaining({

458-

body: "first\nsecond",

459-

}),

460-

);

456+

expect(inboundMessage(onMessage).body).toBe("first\nsecond");

461457

} finally {

462458

vi.useRealTimers();

463459

}

@@ -594,9 +590,10 @@ describe("web monitor inbox", () => {

594590

await waitForMessageCalls(onMessage, 1);

595591596592

expect(getPNForLID).toHaveBeenCalledWith("999@lid");

597-

expect(onMessage).toHaveBeenCalledWith(

598-

expect.objectContaining({ body: "ping", from: "+999", to: "+123" }),

599-

);

593+

const inbound = inboundMessage(onMessage);

594+

expect(inbound.body).toBe("ping");

595+

expect(inbound.from).toBe("+999");

596+

expect(inbound.to).toBe("+123");

600597601598

await listener.close();

602599

});

@@ -623,9 +620,10 @@ describe("web monitor inbox", () => {

623620

sock.ev.emit("messages.upsert", upsert);

624621

await waitForMessageCalls(onMessage, 1);

625622626-

expect(onMessage).toHaveBeenCalledWith(

627-

expect.objectContaining({ body: "ping", from: "+1555", to: "+123" }),

628-

);

623+

const inbound = inboundMessage(onMessage);

624+

expect(inbound.body).toBe("ping");

625+

expect(inbound.from).toBe("+1555");

626+

expect(inbound.to).toBe("+123");

629627

expect(getPNForLID).not.toHaveBeenCalled();

630628631629

await listener.close();

@@ -651,14 +649,11 @@ describe("web monitor inbox", () => {

651649

await waitForMessageCalls(onMessage, 1);

652650653651

expect(getPNForLID).toHaveBeenCalledWith("444@lid");

654-

expect(onMessage).toHaveBeenCalledWith(

655-

expect.objectContaining({

656-

body: "ping",

657-

from: "123@g.us",

658-

senderE164: "+444",

659-

chatType: "group",

660-

}),

661-

);

652+

const inbound = inboundMessage(onMessage);

653+

expect(inbound.body).toBe("ping");

654+

expect(inbound.from).toBe("123@g.us");

655+

expect(inbound.senderE164).toBe("+444");

656+

expect(inbound.chatType).toBe("group");

662657663658

await listener.close();

664659

});