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

推荐订阅源

WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
U
Unit 42
博客园 - 司徒正美
博客园 - 聂微东

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
feat(slack): add unfurl controls · openclaw/openclaw@8e700ba
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -0,0 +1,175 @@

1+

import type { WebClient } from "@slack/web-api";

2+

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

3+

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

4+

import { sendMessageSlack } from "./send.js";

5+6+

type SlackUnfurlTestClient = WebClient & {

7+

chat: { postMessage: ReturnType<typeof vi.fn> };

8+

conversations: { open: ReturnType<typeof vi.fn> };

9+

};

10+11+

function createSlackSendTestClient(): SlackUnfurlTestClient {

12+

return {

13+

conversations: {

14+

open: vi.fn(async () => ({ channel: { id: "D123" } })),

15+

},

16+

chat: {

17+

postMessage: vi.fn(async () => ({ ts: "171234.567" })),

18+

},

19+

} as unknown as SlackUnfurlTestClient;

20+

}

21+22+

function slackConfig(slack: NonNullable<OpenClawConfig["channels"]>["slack"]): OpenClawConfig {

23+

return { channels: { slack } };

24+

}

25+26+

function missingCustomizeScopeError(): Error {

27+

return Object.assign(new Error("An API error occurred: missing_scope"), {

28+

data: {

29+

error: "missing_scope",

30+

needed: "chat:write.customize",

31+

},

32+

});

33+

}

34+35+

describe("sendMessageSlack unfurl controls", () => {

36+

it("omits Slack unfurl flags when config is unset", async () => {

37+

const client = createSlackSendTestClient();

38+39+

await sendMessageSlack("channel:C123", "https://example.com", {

40+

token: "xoxb-test",

41+

cfg: slackConfig({ botToken: "xoxb-test" }),

42+

client,

43+

});

44+45+

expect(client.chat.postMessage).toHaveBeenCalledWith(

46+

expect.not.objectContaining({

47+

unfurl_links: expect.any(Boolean),

48+

unfurl_media: expect.any(Boolean),

49+

}),

50+

);

51+

});

52+53+

it("passes top-level Slack unfurl flags to chat.postMessage", async () => {

54+

const client = createSlackSendTestClient();

55+56+

await sendMessageSlack("channel:C123", "https://example.com", {

57+

token: "xoxb-test",

58+

cfg: slackConfig({

59+

botToken: "xoxb-test",

60+

unfurlLinks: false,

61+

unfurlMedia: false,

62+

}),

63+

client,

64+

});

65+66+

expect(client.chat.postMessage).toHaveBeenCalledWith(

67+

expect.objectContaining({

68+

unfurl_links: false,

69+

unfurl_media: false,

70+

}),

71+

);

72+

});

73+74+

it("lets account-level Slack unfurl flags override top-level defaults", async () => {

75+

const client = createSlackSendTestClient();

76+77+

await sendMessageSlack("channel:C123", "https://example.com", {

78+

token: "xoxb-test",

79+

accountId: "work",

80+

cfg: slackConfig({

81+

botToken: "xoxb-root",

82+

unfurlLinks: false,

83+

unfurlMedia: true,

84+

accounts: {

85+

work: {

86+

unfurlLinks: true,

87+

unfurlMedia: false,

88+

},

89+

},

90+

}),

91+

client,

92+

});

93+94+

expect(client.chat.postMessage).toHaveBeenCalledWith(

95+

expect.objectContaining({

96+

unfurl_links: true,

97+

unfurl_media: false,

98+

}),

99+

);

100+

});

101+102+

it("applies Slack unfurl flags to block messages", async () => {

103+

const client = createSlackSendTestClient();

104+105+

await sendMessageSlack("channel:C123", "https://example.com", {

106+

token: "xoxb-test",

107+

cfg: slackConfig({

108+

botToken: "xoxb-test",

109+

unfurlLinks: false,

110+

unfurlMedia: false,

111+

}),

112+

client,

113+

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

114+

});

115+116+

expect(client.chat.postMessage).toHaveBeenCalledWith(

117+

expect.objectContaining({

118+

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

119+

unfurl_links: false,

120+

unfurl_media: false,

121+

}),

122+

);

123+

});

124+125+

it("preserves Slack unfurl flags when custom identity falls back", async () => {

126+

const client = createSlackSendTestClient();

127+

client.chat.postMessage

128+

.mockRejectedValueOnce(missingCustomizeScopeError())

129+

.mockResolvedValueOnce({ ts: "171234.567" });

130+131+

await sendMessageSlack("channel:C123", "https://example.com", {

132+

token: "xoxb-test",

133+

cfg: slackConfig({

134+

botToken: "xoxb-test",

135+

unfurlLinks: false,

136+

unfurlMedia: false,

137+

}),

138+

client,

139+

identity: {

140+

username: "OpenClaw",

141+

},

142+

});

143+144+

expect(client.chat.postMessage).toHaveBeenLastCalledWith(

145+

expect.objectContaining({

146+

unfurl_links: false,

147+

unfurl_media: false,

148+

}),

149+

);

150+

});

151+152+

it("applies Slack unfurl flags to every text chunk", async () => {

153+

const client = createSlackSendTestClient();

154+155+

await sendMessageSlack("channel:C123", "a".repeat(8500), {

156+

token: "xoxb-test",

157+

cfg: slackConfig({

158+

botToken: "xoxb-test",

159+

unfurlLinks: false,

160+

unfurlMedia: false,

161+

}),

162+

client,

163+

});

164+165+

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

166+

for (const [payload] of client.chat.postMessage.mock.calls) {

167+

expect(payload).toEqual(

168+

expect.objectContaining({

169+

unfurl_links: false,

170+

unfurl_media: false,

171+

}),

172+

);

173+

}

174+

});

175+

});