mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 12:30:43 +00:00
82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import type { ResolvedSlackAccount } from "./accounts.js";
|
|
import type { OpenClawConfig } from "./runtime-api.js";
|
|
import { collectSlackSecurityAuditFindings } from "./security-audit.js";
|
|
|
|
const { readChannelAllowFromStoreMock } = vi.hoisted(() => ({
|
|
readChannelAllowFromStoreMock: vi.fn(async () => [] as string[]),
|
|
}));
|
|
|
|
vi.mock("openclaw/plugin-sdk/conversation-runtime", () => ({
|
|
readChannelAllowFromStore: readChannelAllowFromStoreMock,
|
|
}));
|
|
|
|
function createSlackAccount(config: NonNullable<OpenClawConfig["channels"]>["slack"]) {
|
|
return {
|
|
accountId: "default",
|
|
enabled: true,
|
|
botToken: "xoxb-test",
|
|
botTokenSource: "config",
|
|
appTokenSource: "config",
|
|
config,
|
|
} as ResolvedSlackAccount;
|
|
}
|
|
|
|
function createSlashCommandSlackConfig(
|
|
options: { useAccessGroups?: boolean } = {},
|
|
): OpenClawConfig {
|
|
return {
|
|
...(options.useAccessGroups === undefined
|
|
? {}
|
|
: { commands: { useAccessGroups: options.useAccessGroups } }),
|
|
channels: {
|
|
slack: {
|
|
enabled: true,
|
|
botToken: "xoxb-test",
|
|
appToken: "xapp-test",
|
|
groupPolicy: "open",
|
|
slashCommand: { enabled: true },
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
async function collectSlackFindingsForConfig(cfg: OpenClawConfig) {
|
|
readChannelAllowFromStoreMock.mockResolvedValue([]);
|
|
return await collectSlackSecurityAuditFindings({
|
|
cfg,
|
|
account: createSlackAccount(cfg.channels!.slack),
|
|
accountId: "default",
|
|
});
|
|
}
|
|
|
|
describe("Slack security audit findings", () => {
|
|
it("flags slash commands without a channel users allowlist", async () => {
|
|
const findings = await collectSlackFindingsForConfig(createSlashCommandSlackConfig());
|
|
|
|
expect(findings).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
checkId: "channels.slack.commands.slash.no_allowlists",
|
|
severity: "warn",
|
|
}),
|
|
]),
|
|
);
|
|
});
|
|
|
|
it("flags slash commands when access-group enforcement is disabled", async () => {
|
|
const findings = await collectSlackFindingsForConfig(
|
|
createSlashCommandSlackConfig({ useAccessGroups: false }),
|
|
);
|
|
|
|
expect(findings).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
checkId: "channels.slack.commands.slash.useAccessGroups_off",
|
|
severity: "critical",
|
|
}),
|
|
]),
|
|
);
|
|
});
|
|
});
|