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

推荐订阅源

T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
The Cloudflare Blog
博客园 - 聂微东
博客园 - 司徒正美
量子位
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
A
About on SuperTechFans

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
fix(whatsapp): gate pairing access-control on extractable...
hclsys · 2026-04-29 · via Recent Commits to openclaw:main

@@ -1,6 +1,6 @@

11

import type { proto } from "@whiskeysockets/baileys";

22

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

3-

import { extractMentionedJids } from "./extract.js";

3+

import { extractMentionedJids, hasInboundUserContent } from "./extract.js";

4455

describe("extractMentionedJids", () => {

66

const botJid = "5511999999999@s.whatsapp.net";

@@ -101,3 +101,182 @@ describe("extractMentionedJids", () => {

101101

expect(extractMentionedJids(message)).toEqual([botJid]);

102102

});

103103

});

104+105+

describe("hasInboundUserContent", () => {

106+

it("returns true for plain text conversation", () => {

107+

expect(hasInboundUserContent({ conversation: "hello" })).toBe(true);

108+

});

109+110+

it("returns true for extendedTextMessage", () => {

111+

expect(

112+

hasInboundUserContent({ extendedTextMessage: { text: "hello" } } as proto.IMessage),

113+

).toBe(true);

114+

});

115+116+

it("returns true for image message", () => {

117+

expect(

118+

hasInboundUserContent({ imageMessage: { mimetype: "image/png" } } as proto.IMessage),

119+

).toBe(true);

120+

});

121+122+

it("returns true for video message", () => {

123+

expect(

124+

hasInboundUserContent({ videoMessage: { mimetype: "video/mp4" } } as proto.IMessage),

125+

).toBe(true);

126+

});

127+128+

it("returns true for audio message", () => {

129+

expect(

130+

hasInboundUserContent({ audioMessage: { mimetype: "audio/ogg" } } as proto.IMessage),

131+

).toBe(true);

132+

});

133+134+

it("returns true for document message", () => {

135+

expect(

136+

hasInboundUserContent({

137+

documentMessage: { fileName: "x.pdf" },

138+

} as proto.IMessage),

139+

).toBe(true);

140+

});

141+142+

it("returns true for sticker message", () => {

143+

expect(

144+

hasInboundUserContent({ stickerMessage: { mimetype: "image/webp" } } as proto.IMessage),

145+

).toBe(true);

146+

});

147+148+

it("returns true for location message with valid coords", () => {

149+

expect(

150+

hasInboundUserContent({

151+

locationMessage: { degreesLatitude: 1, degreesLongitude: 2 },

152+

} as proto.IMessage),

153+

).toBe(true);

154+

});

155+156+

it("returns true for live location message with valid coords", () => {

157+

expect(

158+

hasInboundUserContent({

159+

liveLocationMessage: { degreesLatitude: 1, degreesLongitude: 2 },

160+

} as proto.IMessage),

161+

).toBe(true);

162+

});

163+164+

it("returns true for contact message", () => {

165+

expect(

166+

hasInboundUserContent({

167+

contactMessage: { displayName: "Alice", vcard: "BEGIN:VCARD\nEND:VCARD" },

168+

} as proto.IMessage),

169+

).toBe(true);

170+

});

171+172+

it("returns true for contactsArrayMessage via contact placeholder extraction", () => {

173+

expect(

174+

hasInboundUserContent({

175+

contactsArrayMessage: {

176+

contacts: [{ displayName: "Alice", vcard: "BEGIN:VCARD\nEND:VCARD" }],

177+

},

178+

} as proto.IMessage),

179+

).toBe(true);

180+

});

181+182+

it("returns true for buttons response (user button click)", () => {

183+

expect(

184+

hasInboundUserContent({

185+

buttonsResponseMessage: {

186+

selectedButtonId: "yes",

187+

selectedDisplayText: "Yes",

188+

},

189+

} as proto.IMessage),

190+

).toBe(true);

191+

});

192+193+

it("returns true for list response (user list selection)", () => {

194+

expect(

195+

hasInboundUserContent({

196+

listResponseMessage: {

197+

title: "Option A",

198+

singleSelectReply: { selectedRowId: "a" },

199+

} as unknown as proto.Message.IListResponseMessage,

200+

} as proto.IMessage),

201+

).toBe(true);

202+

});

203+204+

it("returns true for template button reply", () => {

205+

expect(

206+

hasInboundUserContent({

207+

templateButtonReplyMessage: {

208+

selectedId: "btn-1",

209+

selectedDisplayText: "Click",

210+

} as unknown as proto.Message.ITemplateButtonReplyMessage,

211+

} as proto.IMessage),

212+

).toBe(true);

213+

});

214+215+

it("returns true for interactive response", () => {

216+

expect(

217+

hasInboundUserContent({

218+

interactiveResponseMessage: {

219+

body: { text: "x" },

220+

nativeFlowResponseMessage: { name: "n", paramsJson: "{}" },

221+

} as unknown as proto.Message.IInteractiveResponseMessage,

222+

} as proto.IMessage),

223+

).toBe(true);

224+

});

225+226+

it("returns true for buttons response wrapped in ephemeralMessage (regression for #73797 + greptile review)", () => {

227+

expect(

228+

hasInboundUserContent({

229+

ephemeralMessage: {

230+

message: {

231+

buttonsResponseMessage: {

232+

selectedButtonId: "ok",

233+

selectedDisplayText: "OK",

234+

},

235+

},

236+

},

237+

} as proto.IMessage),

238+

).toBe(true);

239+

});

240+241+

it("returns false for undefined message (regression for #73797)", () => {

242+

expect(hasInboundUserContent(undefined)).toBe(false);

243+

});

244+245+

it("returns false for empty message object (no content keys)", () => {

246+

expect(hasInboundUserContent({} as proto.IMessage)).toBe(false);

247+

});

248+249+

it("returns false for protocol message envelope without inner content (regression for #73797)", () => {

250+

expect(

251+

hasInboundUserContent({

252+

protocolMessage: {

253+

type: 0,

254+

} as unknown as proto.Message.IProtocolMessage,

255+

} as proto.IMessage),

256+

).toBe(false);

257+

});

258+259+

it("returns false for receipt-style senderKeyDistribution-only payload (regression for #73797)", () => {

260+

expect(

261+

hasInboundUserContent({

262+

senderKeyDistributionMessage: {

263+

groupId: "g@example",

264+

} as unknown as proto.Message.ISenderKeyDistributionMessage,

265+

} as proto.IMessage),

266+

).toBe(false);

267+

});

268+269+

it("returns false when location coords are missing (incomplete event, regression for #73797)", () => {

270+

expect(

271+

hasInboundUserContent({

272+

locationMessage: { name: "no coords" },

273+

} as proto.IMessage),

274+

).toBe(false);

275+

});

276+277+

it("returns false when extendedTextMessage has only empty text", () => {

278+

expect(hasInboundUserContent({ extendedTextMessage: { text: " " } } as proto.IMessage)).toBe(

279+

false,

280+

);

281+

});

282+

});