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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Recent Announcements
Recent Announcements
Vercel News
Vercel News
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
G
Google Developers Blog
罗磊的独立博客
爱范儿
爱范儿
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
月光博客
月光博客
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research

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
refactor(whatsapp): migrate admission object callers (#93...
monitor-inbox.blocks-messages-from-unauthorized-senders-not-allo · 2026-06-17 · via Recent Commits to openclaw:main

@@ -9,7 +9,7 @@ import { sleep } from "openclaw/plugin-sdk/text-utility-runtime";

99

import { beforeAll, describe, expect, it, vi } from "vitest";

1010

import { createAcceptedWhatsAppSendResult } from "../inbound/send-result.test-helper.js";

1111

import { createTestWebInboundMessage } from "../inbound/test-message.test-helper.js";

12-

import type { WebInboundMessage } from "../inbound/types.js";

12+

import type { AdmittedWebInboundMessage } from "../inbound/types.js";

1313

import { loadWebMedia } from "../media.js";

1414

import { cacheInboundMessageMeta } from "../quoted-message.js";

1515

import { WhatsAppSocketOperationTimeoutError } from "../socket-timing.js";

@@ -69,7 +69,7 @@ function unacceptedSendResult(kind: "media" | "text") {

6969

};

7070

}

717172-

function makeMsg(): WebInboundMessage {

72+

function makeMsg(): AdmittedWebInboundMessage {

7373

return createTestWebInboundMessage({

7474

event: { id: "msg-1" },

7575

payload: { body: "latest batch body" },

@@ -80,10 +80,19 @@ function makeMsg(): WebInboundMessage {

8080

reply: vi.fn(async () => createAcceptedWhatsAppSendResult("text", "reply-sent-1")),

8181

sendMedia: vi.fn(async () => createAcceptedWhatsAppSendResult("media", "media-sent-1")),

8282

},

83-

from: "+10000000000",

84-

accountId: "work",

85-

chatType: "group",

86-

conversationId: "+10000000000",

83+

admission: {

84+

accountId: "work",

85+

conversation: {

86+

kind: "group",

87+

id: "+10000000000",

88+

},

89+

sender: {

90+

id: "222@s.whatsapp.net",

91+

},

92+

senderAccess: {

93+

reasonCode: "group_policy_allowed",

94+

},

95+

},

8796

});

8897

}

8998

@@ -97,27 +106,27 @@ function mockLoadedImageMedia() {

97106

});

98107

}

99108100-

function mockFirstSendMediaFailure(msg: WebInboundMessage, message: string) {

109+

function mockFirstSendMediaFailure(msg: AdmittedWebInboundMessage, message: string) {

101110

(

102111

msg.platform.sendMedia as unknown as { mockRejectedValueOnce: (v: unknown) => void }

103112

).mockRejectedValueOnce(new Error(message));

104113

}

105114106-

function mockFirstReplyFailure(msg: WebInboundMessage, message: string) {

115+

function mockFirstReplyFailure(msg: AdmittedWebInboundMessage, message: string) {

107116

(

108117

msg.platform.reply as unknown as { mockRejectedValueOnce: (v: unknown) => void }

109118

).mockRejectedValueOnce(new Error(message));

110119

}

111120112-

function mockFirstReplyFailureWithWrappedError(msg: WebInboundMessage, message: string) {

121+

function mockFirstReplyFailureWithWrappedError(msg: AdmittedWebInboundMessage, message: string) {

113122

(

114123

msg.platform.reply as unknown as { mockRejectedValueOnce: (v: unknown) => void }

115124

).mockRejectedValueOnce({

116125

error: { message },

117126

});

118127

}

119128120-

function expectFirstSendMediaPayload(msg: WebInboundMessage) {

129+

function expectFirstSendMediaPayload(msg: AdmittedWebInboundMessage) {

121130

const payload = mockCallArg(msg.platform.sendMedia, 0, 0, "sendMedia");

122131

if (!payload) {

123132

throw new Error("expected first WhatsApp sendMedia payload");

@@ -144,7 +153,7 @@ function mockCallArg(mock: unknown, callIndex: number, argIndex: number, label:

144153

return call[argIndex];

145154

}

146155147-

function replyText(msg: WebInboundMessage, callIndex = 0): string {

156+

function replyText(msg: AdmittedWebInboundMessage, callIndex = 0): string {

148157

return String(mockCallArg(msg.platform.reply, callIndex, 0, "reply"));

149158

}

150159

@@ -176,7 +185,7 @@ function expectQuotedOptions(

176185

expect(quoted.message).toEqual({ conversation: expected.body });

177186

}

178187179-

function mockSecondReplySuccess(msg: WebInboundMessage) {

188+

function mockSecondReplySuccess(msg: AdmittedWebInboundMessage) {

180189

(

181190

msg.platform.reply as unknown as { mockResolvedValueOnce: (v: unknown) => void }

182191

).mockResolvedValueOnce(createAcceptedWhatsAppSendResult("text", "reply-retry-2"));

@@ -677,23 +686,27 @@ describe("deliverWebReply", () => {

677686

vi.clearAllMocks();

678687

const msg = makeMsg();

679688

// Two media items: first load succeeds and sends, second load succeeds but send fails.

680-

(loadWebMedia as unknown as { mockResolvedValueOnce: (v: unknown) => void }).mockResolvedValueOnce({

689+

(

690+

loadWebMedia as unknown as { mockResolvedValueOnce: (v: unknown) => void }

691+

).mockResolvedValueOnce({

681692

buffer: Buffer.from("img1"),

682693

contentType: "image/jpeg",

683694

kind: "image",

684695

});

685-

(loadWebMedia as unknown as { mockResolvedValueOnce: (v: unknown) => void }).mockResolvedValueOnce({

696+

(

697+

loadWebMedia as unknown as { mockResolvedValueOnce: (v: unknown) => void }

698+

).mockResolvedValueOnce({

686699

buffer: Buffer.from("img2"),

687700

contentType: "image/jpeg",

688701

kind: "image",

689702

});

690703

// First sendMedia resolves; second sendMedia rejects.

691-

(msg.platform.sendMedia as unknown as { mockResolvedValueOnce: (v: unknown) => void }).mockResolvedValueOnce(

692-

createAcceptedWhatsAppSendResult("media", "media-first-ok"),

693-

);

694-

(msg.platform.sendMedia as unknown as { mockRejectedValueOnce: (v: unknown) => void }).mockRejectedValueOnce(

695-

new Error("upload failed"),

696-

);

704+

(

705+

msg.platform.sendMedia as unknown as { mockResolvedValueOnce: (v: unknown) => void }

706+

).mockResolvedValueOnce(createAcceptedWhatsAppSendResult("media", "media-first-ok"));

707+

(

708+

msg.platform.sendMedia as unknown as { mockRejectedValueOnce: (v: unknown) => void }

709+

).mockRejectedValueOnce(new Error("upload failed"));

697710698711

await deliverWebReply({

699712

replyResult: {