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

推荐订阅源

博客园 - Franky
U
Unit 42
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
量子位
IT之家
IT之家
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Recent Announcements
Recent Announcements
V
Visual Studio Blog
G
Google Developers Blog
Last Week in AI
Last Week in AI
雷峰网
雷峰网
博客园 - 聂微东
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
博客园 - 司徒正美
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏

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(feishu): display group names in session labels · ope...
jnuyao · 2026-04-27 · via Recent Commits to openclaw:main

@@ -2,7 +2,7 @@ import type { EnvelopeFormatOptions } from "openclaw/plugin-sdk/channel-inbound"

22

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

33

import type { ClawdbotConfig, PluginRuntime } from "../runtime-api.js";

44

import type { FeishuMessageEvent } from "./bot.js";

5-

import { handleFeishuMessage } from "./bot.js";

5+

import { clearGroupNameCache, handleFeishuMessage } from "./bot.js";

66

import { setFeishuRuntime } from "./runtime.js";

7788

const { mockCreateFeishuReplyDispatcher, mockCreateFeishuClient, mockResolveAgentRoute } =

@@ -46,6 +46,7 @@ function createRuntimeEnv() {

46464747

describe("broadcast dispatch", () => {

4848

const finalizeInboundContextCalls: Array<Record<string, unknown>> = [];

49+

const mockGetChatInfo = vi.fn();

4950

const mockFinalizeInboundContext: PluginRuntime["channel"]["reply"]["finalizeInboundContext"] = (

5051

ctx,

5152

) => {

@@ -125,6 +126,8 @@ describe("broadcast dispatch", () => {

125126

agents: { list: [{ id: "main" }, { id: "susan" }] },

126127

channels: {

127128

feishu: {

129+

appId: "cli_test",

130+

appSecret: "sec_test", // pragma: allowlist secret

128131

groups: {

129132

"oc-broadcast-group": {

130133

requireMention: true,

@@ -166,6 +169,7 @@ describe("broadcast dispatch", () => {

166169167170

beforeEach(() => {

168171

vi.clearAllMocks();

172+

clearGroupNameCache();

169173

finalizeInboundContextCalls.length = 0;

170174

mockResolveAgentRoute.mockReturnValue({

171175

agentId: "main",

@@ -182,6 +186,14 @@ describe("broadcast dispatch", () => {

182186

get: vi.fn().mockResolvedValue({ data: { user: { name: "Sender" } } }),

183187

},

184188

},

189+

im: {

190+

chat: {

191+

get: mockGetChatInfo.mockResolvedValue({

192+

code: 0,

193+

data: { name: "Broadcast Team" },

194+

}),

195+

},

196+

},

185197

});

186198

setFeishuRuntime(runtimeStub);

187199

});

@@ -205,6 +217,15 @@ describe("broadcast dispatch", () => {

205217

const sessionKeys = finalizeInboundContextCalls.map((call) => call.SessionKey);

206218

expect(sessionKeys).toContain("agent:susan:feishu:group:oc-broadcast-group");

207219

expect(sessionKeys).toContain("agent:main:feishu:group:oc-broadcast-group");

220+

expect(mockGetChatInfo).toHaveBeenCalledTimes(1);

221+

expect(finalizeInboundContextCalls).toEqual(

222+

expect.arrayContaining([

223+

expect.objectContaining({

224+

GroupSubject: "Broadcast Team",

225+

ConversationLabel: "Broadcast Team",

226+

}),

227+

]),

228+

);

208229

expect(mockCreateFeishuReplyDispatcher).toHaveBeenCalledTimes(1);

209230

expect(mockCreateFeishuReplyDispatcher).toHaveBeenCalledWith(

210231

expect.objectContaining({ agentId: "main" }),

@@ -227,6 +248,7 @@ describe("broadcast dispatch", () => {

227248228249

expect(mockDispatchReplyFromConfig).not.toHaveBeenCalled();

229250

expect(mockCreateFeishuReplyDispatcher).not.toHaveBeenCalled();

251+

expect(mockGetChatInfo).not.toHaveBeenCalled();

230252

});

231253232254

it("skips broadcast dispatch when bot identity is unknown (requireMention=true)", async () => {

@@ -244,12 +266,15 @@ describe("broadcast dispatch", () => {

244266245267

expect(mockDispatchReplyFromConfig).not.toHaveBeenCalled();

246268

expect(mockCreateFeishuReplyDispatcher).not.toHaveBeenCalled();

269+

expect(mockGetChatInfo).not.toHaveBeenCalled();

247270

});

248271249272

it("preserves single-agent dispatch when no broadcast config", async () => {

250273

const cfg: ClawdbotConfig = {

251274

channels: {

252275

feishu: {

276+

appId: "cli_test",

277+

appSecret: "sec_test", // pragma: allowlist secret

253278

groups: {

254279

"oc-broadcast-group": {

255280

requireMention: false,

@@ -281,8 +306,11 @@ describe("broadcast dispatch", () => {

281306

expect(finalizeInboundContextCalls).toContainEqual(

282307

expect.objectContaining({

283308

SessionKey: "agent:main:feishu:group:oc-broadcast-group",

309+

GroupSubject: "Broadcast Team",

310+

ConversationLabel: "Broadcast Team",

284311

}),

285312

);

313+

expect(mockGetChatInfo).toHaveBeenCalledTimes(1);

286314

});

287315288316

it("cross-account broadcast dedup: second account skips dispatch", async () => {

@@ -291,6 +319,8 @@ describe("broadcast dispatch", () => {

291319

agents: { list: [{ id: "main" }, { id: "susan" }] },

292320

channels: {

293321

feishu: {

322+

appId: "cli_test",

323+

appSecret: "sec_test", // pragma: allowlist secret

294324

groups: {

295325

"oc-broadcast-group": {

296326

requireMention: false,

@@ -320,6 +350,7 @@ describe("broadcast dispatch", () => {

320350

expect(mockDispatchReplyFromConfig).toHaveBeenCalledTimes(2);

321351322352

mockDispatchReplyFromConfig.mockClear();

353+

mockGetChatInfo.mockClear();

323354

finalizeInboundContextCalls.length = 0;

324355325356

await handleFeishuMessage({

@@ -329,6 +360,7 @@ describe("broadcast dispatch", () => {

329360

accountId: "account-B",

330361

});

331362

expect(mockDispatchReplyFromConfig).not.toHaveBeenCalled();

363+

expect(mockGetChatInfo).not.toHaveBeenCalled();

332364

});

333365334366

it("skips unknown agents not in agents.list", async () => {

@@ -337,6 +369,8 @@ describe("broadcast dispatch", () => {

337369

agents: { list: [{ id: "main" }, { id: "susan" }] },

338370

channels: {

339371

feishu: {

372+

appId: "cli_test",

373+

appSecret: "sec_test", // pragma: allowlist secret

340374

groups: {

341375

"oc-broadcast-group": {

342376

requireMention: false,