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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
L
LangChain Blog
Y
Y Combinator Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
V
Visual Studio Blog
小众软件
小众软件
月光博客
月光博客
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
美团技术团队
量子位

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): log INFO receipt for inbound app_mention eve...
clawsweeper · 2026-06-19 · via Recent Commits to openclaw:main

@@ -5,11 +5,32 @@ import {

55

type SlackSystemEventTestOverrides,

66

} from "./system-event-test-harness.js";

778-

const { messageQueueMock, messageAllowMock } = vi.hoisted(() => ({

8+

const { messageQueueMock, messageAllowMock, inboundInfoSpy } = vi.hoisted(() => ({

99

messageQueueMock: vi.fn(),

1010

messageAllowMock: vi.fn(),

11+

inboundInfoSpy: vi.fn(),

1112

}));

121314+

vi.mock("openclaw/plugin-sdk/runtime-env", async (importOriginal) => {

15+

const actual = await importOriginal<typeof import("openclaw/plugin-sdk/runtime-env")>();

16+

const makeLogger = () => {

17+

const logger = {

18+

subsystem: "test",

19+

isEnabled: () => true,

20+

trace: () => {},

21+

debug: () => {},

22+

info: inboundInfoSpy,

23+

warn: () => {},

24+

error: () => {},

25+

fatal: () => {},

26+

raw: () => {},

27+

child: () => logger,

28+

};

29+

return logger;

30+

};

31+

return { ...actual, createSubsystemLogger: () => makeLogger() };

32+

});

33+1334

vi.mock("openclaw/plugin-sdk/system-event-runtime", () => ({

1435

enqueueSystemEvent: (...args: unknown[]) => messageQueueMock(...args),

1536

}));

@@ -21,6 +42,13 @@ vi.mock("openclaw/plugin-sdk/conversation-runtime", () => ({

2142

}));

22432344

let registerSlackMessageEvents: typeof import("./messages.js").registerSlackMessageEvents;

45+

let formatSlackInboundLogLine: typeof import("./messages.js").formatSlackInboundLogLine;

46+47+

function inboundLogLines(): string[] {

48+

return inboundInfoSpy.mock.calls

49+

.map((call) => call[0])

50+

.filter((line): line is string => typeof line === "string" && line.startsWith("Inbound "));

51+

}

24522553

type MessageHandler = (args: { event: Record<string, unknown>; body: unknown }) => Promise<void>;

2654

type RegisteredEventName = "message" | "app_mention";

@@ -57,11 +85,12 @@ function resetMessageMocks(): void {

5785

}

58865987

beforeAll(async () => {

60-

({ registerSlackMessageEvents } = await import("./messages.js"));

88+

({ registerSlackMessageEvents, formatSlackInboundLogLine } = await import("./messages.js"));

6189

});

62906391

beforeEach(() => {

6492

resetMessageMocks();

93+

inboundInfoSpy.mockClear();

6594

});

66956796

function makeChangedEvent(overrides?: { channel?: string; user?: string }) {

@@ -387,6 +416,8 @@ describe("registerSlackMessageEvents", () => {

387416

});

388417389418

expect(handleSlackMessage).not.toHaveBeenCalled();

419+

// Dropped DM app_mention (already handled via message.im) must not log a receipt.

420+

expect(inboundLogLines()).toEqual([]);

390421

});

391422392423

it("routes app_mention events from channels to the message handler", async () => {

@@ -397,5 +428,55 @@ describe("registerSlackMessageEvents", () => {

397428

});

398429399430

expect(handleSlackMessage).toHaveBeenCalledTimes(1);

431+

expect(inboundLogLines()).toEqual([

432+

"Inbound app_mention slack:T_TEST:channel:C123:user:U1 -> bot:U_BOT (channel, 14 chars)",

433+

]);

434+

});

435+436+

it("logs channel app_mention receipts with zero chars when text is absent", async () => {

437+

const { handleSlackMessage } = await invokeRegisteredHandler({

438+

eventName: "app_mention",

439+

overrides: { dmPolicy: "open" },

440+

event: {

441+

...makeAppMentionEvent({ channel: "C123", channelType: "channel" }),

442+

text: undefined,

443+

},

444+

});

445+446+

expect(handleSlackMessage).toHaveBeenCalledTimes(1);

447+

expect(inboundLogLines()).toEqual([

448+

"Inbound app_mention slack:T_TEST:channel:C123:user:U1 -> bot:U_BOT (channel, 0 chars)",

449+

]);

450+

});

451+452+

it("logs channel app_mention receipts with unknown sender when user is absent", async () => {

453+

const { handleSlackMessage } = await invokeRegisteredHandler({

454+

eventName: "app_mention",

455+

overrides: { dmPolicy: "open" },

456+

event: {

457+

...makeAppMentionEvent({ channel: "C123", channelType: "channel" }),

458+

user: undefined,

459+

},

460+

});

461+462+

expect(handleSlackMessage).toHaveBeenCalledTimes(1);

463+

expect(inboundLogLines()).toEqual([

464+

"Inbound app_mention slack:T_TEST:channel:C123:user:unknown -> bot:U_BOT (channel, 14 chars)",

465+

]);

466+

});

467+468+

it("formats the inbound receipt line with channel, sender, body length, and bot identity", () => {

469+

expect(

470+

formatSlackInboundLogLine({

471+

workspaceId: "T123",

472+

channelId: "C456",

473+

channelType: "channel",

474+

userId: "U789",

475+

botUserId: "U_BOT",

476+

bodyChars: 42,

477+

}),

478+

).toBe(

479+

"Inbound app_mention slack:T123:channel:C456:user:U789 -> bot:U_BOT (channel, 42 chars)",

480+

);

400481

});

401482

});