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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog

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: clear slack block send broad matchers · openclaw/op...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -10,6 +10,29 @@ const { sendMessageSlack } = await import("./send.js");

1010

const SLACK_TEST_CFG = { channels: { slack: { botToken: "xoxb-test" } } };

1111

const SLACK_TEXT_LIMIT = 8000;

121213+

type MockCallSource = { mock: { calls: Array<Array<unknown>> } };

14+15+

function mockObjectArg(

16+

source: MockCallSource,

17+

label: string,

18+

callIndex = 0,

19+

argIndex = 0,

20+

): Record<string, unknown> {

21+

const call = source.mock.calls[callIndex];

22+

if (!call) {

23+

throw new Error(`Expected ${label} call ${callIndex} to exist`);

24+

}

25+

const value = call[argIndex];

26+

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

27+

throw new Error(`Expected ${label} call ${callIndex} argument ${argIndex} to be an object`);

28+

}

29+

return value as Record<string, unknown>;

30+

}

31+32+

function postedMessage(client: ReturnType<typeof createSlackSendTestClient>, callIndex = 0) {

33+

return mockObjectArg(client.chat.postMessage, "chat.postMessage", callIndex);

34+

}

35+1336

function slackDnsRequestError(): Error {

1437

return Object.assign(new Error("A request error occurred: getaddrinfo EAI_AGAIN slack.com"), {

1538

code: "slack_webapi_request_error",

@@ -127,12 +150,8 @@ describe("sendMessageSlack chunking", () => {

127150

});

128151129152

expect(client.chat.postMessage).toHaveBeenCalledTimes(1);

130-

expect(client.chat.postMessage).toHaveBeenCalledWith(

131-

expect.objectContaining({

132-

channel: "C123",

133-

text: message,

134-

}),

135-

);

153+

expect(postedMessage(client).channel).toBe("C123");

154+

expect(postedMessage(client).text).toBe(message);

136155

});

137156138157

it("splits oversized fallback text through the normal Slack sender", async () => {

@@ -168,25 +187,19 @@ describe("sendMessageSlack blocks", () => {

168187

});

169188170189

expect(client.conversations.open).not.toHaveBeenCalled();

171-

expect(client.chat.postMessage).toHaveBeenCalledWith(

172-

expect.objectContaining({

173-

channel: "C123",

174-

text: "Shared a Block Kit message",

175-

blocks: [{ type: "divider" }],

176-

}),

177-

);

178-

expect(result).toMatchObject({ messageId: "171234.567", channelId: "C123" });

179-

expect(result.receipt).toMatchObject({

180-

primaryPlatformMessageId: "171234.567",

181-

platformMessageIds: ["171234.567"],

182-

parts: [

183-

expect.objectContaining({

184-

platformMessageId: "171234.567",

185-

kind: "card",

186-

raw: expect.objectContaining({ channel: "slack", channelId: "C123" }),

187-

}),

188-

],

189-

});

190+

const post = postedMessage(client);

191+

expect(post.channel).toBe("C123");

192+

expect(post.text).toBe("Shared a Block Kit message");

193+

expect(post.blocks).toEqual([{ type: "divider" }]);

194+

expect(result.messageId).toBe("171234.567");

195+

expect(result.channelId).toBe("C123");

196+

expect(result.receipt.primaryPlatformMessageId).toBe("171234.567");

197+

expect(result.receipt.platformMessageIds).toEqual(["171234.567"]);

198+

const receiptPart = result.receipt.parts[0];

199+

expect(receiptPart?.platformMessageId).toBe("171234.567");

200+

expect(receiptPart?.kind).toBe("card");

201+

expect((receiptPart?.raw as Record<string, unknown> | undefined)?.channel).toBe("slack");

202+

expect((receiptPart?.raw as Record<string, unknown> | undefined)?.channelId).toBe("C123");

190203

});

191204192205

it("posts user-target block messages directly without conversations.open", async () => {

@@ -201,13 +214,10 @@ describe("sendMessageSlack blocks", () => {

201214

});

202215203216

expect(client.conversations.open).not.toHaveBeenCalled();

204-

expect(client.chat.postMessage).toHaveBeenCalledWith(

205-

expect.objectContaining({

206-

channel: "U123",

207-

text: "Shared a Block Kit message",

208-

}),

209-

);

210-

expect(result).toMatchObject({ messageId: "171234.567", channelId: "U123" });

217+

expect(postedMessage(client).channel).toBe("U123");

218+

expect(postedMessage(client).text).toBe("Shared a Block Kit message");

219+

expect(result.messageId).toBe("171234.567");

220+

expect(result.channelId).toBe("U123");

211221

expect(result.receipt.platformMessageIds).toEqual(["171234.567"]);

212222

});

213223

@@ -224,13 +234,10 @@ describe("sendMessageSlack blocks", () => {

224234

});

225235226236

expect(client.chat.postMessage).toHaveBeenCalledTimes(2);

227-

expect(result).toMatchObject({ messageId: "171234.999", channelId: "C123" });

228-

expect(result.receipt.parts[0]).toEqual(

229-

expect.objectContaining({

230-

platformMessageId: "171234.999",

231-

kind: "text",

232-

}),

233-

);

237+

expect(result.messageId).toBe("171234.999");

238+

expect(result.channelId).toBe("C123");

239+

expect(result.receipt.parts[0]?.platformMessageId).toBe("171234.999");

240+

expect(result.receipt.parts[0]?.kind).toBe("text");

234241

});

235242236243

it("retries Slack conversations.open DNS request errors for threaded DMs", async () => {

@@ -247,10 +254,10 @@ describe("sendMessageSlack blocks", () => {

247254

});

248255249256

expect(client.conversations.open).toHaveBeenCalledTimes(2);

250-

expect(client.chat.postMessage).toHaveBeenCalledWith(

251-

expect.objectContaining({ channel: "D123", thread_ts: "171234.100" }),

252-

);

253-

expect(result).toMatchObject({ messageId: "171234.567", channelId: "D123" });

257+

expect(postedMessage(client).channel).toBe("D123");

258+

expect(postedMessage(client).thread_ts).toBe("171234.100");

259+

expect(result.messageId).toBe("171234.567");

260+

expect(result.channelId).toBe("D123");

254261

expect(result.receipt.threadId).toBe("171234.100");

255262

});

256263

@@ -266,13 +273,9 @@ describe("sendMessageSlack blocks", () => {

266273

});

267274268275

expect(client.chat.postMessage).toHaveBeenCalledTimes(2);

269-

expect(client.chat.postMessage.mock.calls[0]?.[0]).toEqual(

270-

expect.objectContaining({

271-

thread_ts: "171234.100",

272-

reply_broadcast: true,

273-

}),

274-

);

275-

expect(client.chat.postMessage.mock.calls[1]?.[0]).not.toHaveProperty("reply_broadcast");

276+

expect(postedMessage(client).thread_ts).toBe("171234.100");

277+

expect(postedMessage(client).reply_broadcast).toBe(true);

278+

expect(postedMessage(client, 1)).not.toHaveProperty("reply_broadcast");

276279

});

277280278281

it("does not pass reply_broadcast when no thread is selected", async () => {

@@ -285,11 +288,7 @@ describe("sendMessageSlack blocks", () => {

285288

replyBroadcast: true,

286289

});

287290288-

expect(client.chat.postMessage).toHaveBeenCalledWith(

289-

expect.not.objectContaining({

290-

reply_broadcast: true,

291-

}),

292-

);

291+

expect(postedMessage(client)).not.toHaveProperty("reply_broadcast");

293292

});

294293295294

it("does not retry Slack platform errors", async () => {

@@ -322,11 +321,7 @@ describe("sendMessageSlack blocks", () => {

322321

blocks: [{ type: "image", image_url: "https://example.com/a.png", alt_text: "Build chart" }],

323322

});

324323325-

expect(client.chat.postMessage).toHaveBeenCalledWith(

326-

expect.objectContaining({

327-

text: "Build chart",

328-

}),

329-

);

324+

expect(postedMessage(client).text).toBe("Build chart");

330325

});

331326332327

it("derives fallback text from video blocks", async () => {

@@ -346,11 +341,7 @@ describe("sendMessageSlack blocks", () => {

346341

],

347342

});

348343349-

expect(client.chat.postMessage).toHaveBeenCalledWith(

350-

expect.objectContaining({

351-

text: "Release demo",

352-

}),

353-

);

344+

expect(postedMessage(client).text).toBe("Release demo");

354345

});

355346356347

it("derives fallback text from file blocks", async () => {

@@ -362,11 +353,7 @@ describe("sendMessageSlack blocks", () => {

362353

blocks: [{ type: "file", source: "remote", external_id: "F123" }],

363354

});

364355365-

expect(client.chat.postMessage).toHaveBeenCalledWith(

366-

expect.objectContaining({

367-

text: "Shared a file",

368-

}),

369-

);

356+

expect(postedMessage(client).text).toBe("Shared a file");

370357

});

371358372359

it("caps long fallback text while preserving blocks", async () => {

@@ -390,13 +377,10 @@ describe("sendMessageSlack blocks", () => {

390377

blocks,

391378

});

392379393-

expect(client.chat.postMessage).toHaveBeenCalledWith(

394-

expect.objectContaining({

395-

text: expect.stringMatching(/$/),

396-

blocks,

397-

}),

398-

);

399-

expect(client.chat.postMessage.mock.calls[0]?.[0].text).toHaveLength(SLACK_TEXT_LIMIT);

380+

const post = postedMessage(client);

381+

expect(String(post.text).endsWith("…")).toBe(true);

382+

expect(post.blocks).toBe(blocks);

383+

expect(post.text).toHaveLength(SLACK_TEXT_LIMIT);

400384

});

401385402386

it("rejects blocks combined with mediaUrl", async () => {