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

推荐订阅源

N
Netflix TechBlog - Medium
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
L
LangChain Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
WordPress大学
WordPress大学
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
Jina AI
Jina AI
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
D
Docker

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(channels): thread runtime config through sends · open...
monitor-inbox.blocks-messages-from-unauthorized-senders-not-allo · 2026-04-22 · via Recent Commits to openclaw:main

@@ -82,6 +82,20 @@ const {

8282

} = discordSendMocks;

83838484

const enableAllActions = () => true;

85+

const DISCORD_TEST_CFG = {} as OpenClawConfig;

86+87+

function handleMessagingAction(

88+

action: string,

89+

params: Record<string, unknown>,

90+

isActionEnabled: (key: keyof DiscordActionConfig) => boolean,

91+

options?: {

92+

mediaLocalRoots?: readonly string[];

93+

mediaReadFile?: (filePath: string) => Promise<Buffer>;

94+

},

95+

cfg: OpenClawConfig = DISCORD_TEST_CFG,

96+

) {

97+

return handleDiscordMessagingAction(action, params, isActionEnabled, options, cfg);

98+

}

859986100

const disabledActions = (key: keyof DiscordActionConfig) => key !== "reactions";

87101

const channelInfoEnabled = (key: keyof DiscordActionConfig) => key === "channelInfo";

@@ -112,7 +126,7 @@ describe("handleDiscordMessagingAction", () => {

112126

messageId: "M1",

113127

emoji: "✅",

114128

},

115-

expectedOptions: undefined,

129+

expectedOptions: { cfg: DISCORD_TEST_CFG, accountId: "default" },

116130

},

117131

{

118132

name: "with accountId",

@@ -122,19 +136,21 @@ describe("handleDiscordMessagingAction", () => {

122136

emoji: "✅",

123137

accountId: "ops",

124138

},

125-

expectedOptions: { accountId: "ops" },

139+

expectedOptions: { cfg: DISCORD_TEST_CFG, accountId: "ops" },

126140

},

127141

])("adds reactions $name", async ({ params, expectedOptions }) => {

128-

await handleDiscordMessagingAction("react", params, enableAllActions);

142+

await handleMessagingAction("react", params, enableAllActions);

129143

if (expectedOptions) {

130144

expect(reactMessageDiscord).toHaveBeenCalledWith("C1", "M1", "✅", expectedOptions);

131145

return;

132146

}

133-

expect(reactMessageDiscord).toHaveBeenCalledWith("C1", "M1", "✅", {});

147+

expect(reactMessageDiscord).toHaveBeenCalledWith("C1", "M1", "✅", {

148+

cfg: DISCORD_TEST_CFG,

149+

});

134150

});

135151136152

it("uses configured defaultAccount when cfg is provided and accountId is omitted", async () => {

137-

await handleDiscordMessagingAction(

153+

await handleMessagingAction(

138154

"react",

139155

{

140156

channelId: "C1",

@@ -164,7 +180,7 @@ describe("handleDiscordMessagingAction", () => {

164180

});

165181166182

it("removes reactions on empty emoji", async () => {

167-

await handleDiscordMessagingAction(

183+

await handleMessagingAction(

168184

"react",

169185

{

170186

channelId: "C1",

@@ -173,11 +189,14 @@ describe("handleDiscordMessagingAction", () => {

173189

},

174190

enableAllActions,

175191

);

176-

expect(removeOwnReactionsDiscord).toHaveBeenCalledWith("C1", "M1", {});

192+

expect(removeOwnReactionsDiscord).toHaveBeenCalledWith("C1", "M1", {

193+

cfg: DISCORD_TEST_CFG,

194+

accountId: "default",

195+

});

177196

});

178197179198

it("removes reactions when remove flag set", async () => {

180-

await handleDiscordMessagingAction(

199+

await handleMessagingAction(

181200

"react",

182201

{

183202

channelId: "C1",

@@ -187,12 +206,15 @@ describe("handleDiscordMessagingAction", () => {

187206

},

188207

enableAllActions,

189208

);

190-

expect(removeReactionDiscord).toHaveBeenCalledWith("C1", "M1", "✅", {});

209+

expect(removeReactionDiscord).toHaveBeenCalledWith("C1", "M1", "✅", {

210+

cfg: DISCORD_TEST_CFG,

211+

accountId: "default",

212+

});

191213

});

192214193215

it("rejects removes without emoji", async () => {

194216

await expect(

195-

handleDiscordMessagingAction(

217+

handleMessagingAction(

196218

"react",

197219

{

198220

channelId: "C1",

@@ -207,7 +229,7 @@ describe("handleDiscordMessagingAction", () => {

207229208230

it("respects reaction gating", async () => {

209231

await expect(

210-

handleDiscordMessagingAction(

232+

handleMessagingAction(

211233

"react",

212234

{

213235

channelId: "C1",

@@ -220,7 +242,7 @@ describe("handleDiscordMessagingAction", () => {

220242

});

221243222244

it("parses string booleans for poll options", async () => {

223-

await handleDiscordMessagingAction(

245+

await handleMessagingAction(

224246

"poll",

225247

{

226248

to: "channel:123",

@@ -249,7 +271,7 @@ describe("handleDiscordMessagingAction", () => {

249271

{ id: "1", timestamp: "2026-01-15T10:00:00.000Z" },

250272

] as never);

251273252-

const result = await handleDiscordMessagingAction(

274+

const result = await handleMessagingAction(

253275

"readMessages",

254276

{ channelId: "C1" },

255277

enableAllActions,

@@ -271,13 +293,7 @@ describe("handleDiscordMessagingAction", () => {

271293

},

272294

},

273295

} as OpenClawConfig;

274-

await handleDiscordMessagingAction(

275-

"readMessages",

276-

{ channelId: "C1" },

277-

enableAllActions,

278-

{},

279-

cfg,

280-

);

296+

await handleMessagingAction("readMessages", { channelId: "C1" }, enableAllActions, {}, cfg);

281297

expect(readMessagesDiscord).toHaveBeenCalledWith("C1", expect.any(Object), { cfg });

282298

});

283299

@@ -287,7 +303,7 @@ describe("handleDiscordMessagingAction", () => {

287303

timestamp: "2026-01-15T11:00:00.000Z",

288304

});

289305290-

const result = await handleDiscordMessagingAction(

306+

const result = await handleMessagingAction(

291307

"fetchMessage",

292308

{ guildId: "G1", channelId: "C1", messageId: "M1" },

293309

enableAllActions,

@@ -307,7 +323,7 @@ describe("handleDiscordMessagingAction", () => {

307323

},

308324

},

309325

} as OpenClawConfig;

310-

await handleDiscordMessagingAction(

326+

await handleMessagingAction(

311327

"fetchMessage",

312328

{ guildId: "G1", channelId: "C1", messageId: "M1" },

313329

enableAllActions,

@@ -320,11 +336,7 @@ describe("handleDiscordMessagingAction", () => {

320336

it("adds normalized timestamps to listPins payloads", async () => {

321337

listPinsDiscord.mockResolvedValueOnce([{ id: "1", timestamp: "2026-01-15T12:00:00.000Z" }]);

322338323-

const result = await handleDiscordMessagingAction(

324-

"listPins",

325-

{ channelId: "C1" },

326-

enableAllActions,

327-

);

339+

const result = await handleMessagingAction("listPins", { channelId: "C1" }, enableAllActions);

328340

const payload = result.details as {

329341

pins: Array<{ timestampMs?: number; timestampUtc?: string }>;

330342

};

@@ -340,7 +352,7 @@ describe("handleDiscordMessagingAction", () => {

340352

messages: [[{ id: "1", timestamp: "2026-01-15T13:00:00.000Z" }]],

341353

});

342354343-

const result = await handleDiscordMessagingAction(

355+

const result = await handleMessagingAction(

344356

"searchMessages",

345357

{ guildId: "G1", content: "hi" },

346358

enableAllActions,

@@ -360,7 +372,7 @@ describe("handleDiscordMessagingAction", () => {

360372

sendVoiceMessageDiscord.mockClear();

361373

sendMessageDiscord.mockClear();

362374363-

await handleDiscordMessagingAction(

375+

await handleMessagingAction(

364376

"sendMessage",

365377

{

366378

to: "channel:123",

@@ -372,6 +384,7 @@ describe("handleDiscordMessagingAction", () => {

372384

);

373385374386

expect(sendVoiceMessageDiscord).toHaveBeenCalledWith("channel:123", "/tmp/voice.mp3", {

387+

cfg: DISCORD_TEST_CFG,

375388

replyTo: undefined,

376389

silent: true,

377390

});

@@ -380,7 +393,7 @@ describe("handleDiscordMessagingAction", () => {

380393381394

it("forwards trusted mediaLocalRoots into sendMessageDiscord", async () => {

382395

sendMessageDiscord.mockClear();

383-

await handleDiscordMessagingAction(

396+

await handleMessagingAction(

384397

"sendMessage",

385398

{

386399

to: "channel:123",

@@ -404,7 +417,7 @@ describe("handleDiscordMessagingAction", () => {

404417

sendMessageDiscord.mockClear();

405418

sendDiscordComponentMessage.mockClear();

406419407-

await handleDiscordMessagingAction(

420+

await handleMessagingAction(

408421

"sendMessage",

409422

{

410423

to: "channel:123",

@@ -429,7 +442,7 @@ describe("handleDiscordMessagingAction", () => {

429442430443

it("forwards the optional filename into sendMessageDiscord", async () => {

431444

sendMessageDiscord.mockClear();

432-

await handleDiscordMessagingAction(

445+

await handleMessagingAction(

433446

"sendMessage",

434447

{

435448

to: "channel:123",

@@ -451,7 +464,7 @@ describe("handleDiscordMessagingAction", () => {

451464452465

it("rejects voice messages that include content", async () => {

453466

await expect(

454-

handleDiscordMessagingAction(

467+

handleMessagingAction(

455468

"sendMessage",

456469

{

457470

to: "channel:123",

@@ -466,7 +479,7 @@ describe("handleDiscordMessagingAction", () => {

466479467480

it("forwards optional thread content", async () => {

468481

createThreadDiscord.mockClear();

469-

await handleDiscordMessagingAction(

482+

await handleMessagingAction(

470483

"threadCreate",

471484

{

472485

channelId: "C1",

@@ -484,7 +497,7 @@ describe("handleDiscordMessagingAction", () => {

484497

content: "Initial forum post body",

485498

appliedTags: undefined,

486499

},

487-

{},

500+

{ cfg: DISCORD_TEST_CFG },

488501

);

489502

});

490503

});