File size: 2,294 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | import type { App } from "@slack/bolt";
import { describe, expect, it } from "vitest";
import type { OpenClawConfig } from "../../config/config.js";
import type { RuntimeEnv } from "../../runtime.js";
import { createSlackMonitorContext } from "./context.js";
function createTestContext() {
return createSlackMonitorContext({
cfg: {
channels: { slack: { enabled: true } },
session: { dmScope: "main" },
} as OpenClawConfig,
accountId: "default",
botToken: "xoxb-test",
app: { client: {} } as App,
runtime: {} as RuntimeEnv,
botUserId: "U_BOT",
teamId: "T_EXPECTED",
apiAppId: "A_EXPECTED",
historyLimit: 0,
sessionScope: "per-sender",
mainKey: "main",
dmEnabled: true,
dmPolicy: "open",
allowFrom: [],
allowNameMatching: false,
groupDmEnabled: false,
groupDmChannels: [],
defaultRequireMention: true,
groupPolicy: "allowlist",
useAccessGroups: true,
reactionMode: "off",
reactionAllowlist: [],
replyToMode: "off",
threadHistoryScope: "thread",
threadInheritParent: false,
slashCommand: {
enabled: true,
name: "openclaw",
ephemeral: true,
sessionPrefix: "slack:slash",
},
textLimit: 4000,
typingReaction: "",
ackReactionScope: "group-mentions",
mediaMaxBytes: 20 * 1024 * 1024,
removeAckAfterReply: false,
});
}
describe("createSlackMonitorContext shouldDropMismatchedSlackEvent", () => {
it("drops mismatched top-level app/team identifiers", () => {
const ctx = createTestContext();
expect(
ctx.shouldDropMismatchedSlackEvent({
api_app_id: "A_WRONG",
team_id: "T_EXPECTED",
}),
).toBe(true);
expect(
ctx.shouldDropMismatchedSlackEvent({
api_app_id: "A_EXPECTED",
team_id: "T_WRONG",
}),
).toBe(true);
});
it("drops mismatched nested team.id payloads used by interaction bodies", () => {
const ctx = createTestContext();
expect(
ctx.shouldDropMismatchedSlackEvent({
api_app_id: "A_EXPECTED",
team: { id: "T_WRONG" },
}),
).toBe(true);
expect(
ctx.shouldDropMismatchedSlackEvent({
api_app_id: "A_EXPECTED",
team: { id: "T_EXPECTED" },
}),
).toBe(false);
});
});
|