refactor(config): add dmPolicy aliases for Slack/Discord

This commit is contained in:
Peter Steinberger
2026-02-14 20:32:12 +01:00
parent b9d14855d0
commit 47b6cde8ca
13 changed files with 170 additions and 54 deletions

View File

@@ -0,0 +1,38 @@
import { describe, expect, it } from "vitest";
import { validateConfigObject } from "./config.js";
describe("DM policy aliases (Slack/Discord)", () => {
it('rejects discord dmPolicy="open" without allowFrom "*"', () => {
const res = validateConfigObject({
channels: { discord: { dmPolicy: "open", allowFrom: ["123"] } },
});
expect(res.ok).toBe(false);
if (!res.ok) {
expect(res.issues[0]?.path).toBe("channels.discord.allowFrom");
}
});
it('accepts discord legacy dm.policy="open" with top-level allowFrom alias', () => {
const res = validateConfigObject({
channels: { discord: { dm: { policy: "open", allowFrom: ["123"] }, allowFrom: ["*"] } },
});
expect(res.ok).toBe(true);
});
it('rejects slack dmPolicy="open" without allowFrom "*"', () => {
const res = validateConfigObject({
channels: { slack: { dmPolicy: "open", allowFrom: ["U123"] } },
});
expect(res.ok).toBe(false);
if (!res.ok) {
expect(res.issues[0]?.path).toBe("channels.slack.allowFrom");
}
});
it('accepts slack legacy dm.policy="open" with top-level allowFrom alias', () => {
const res = validateConfigObject({
channels: { slack: { dm: { policy: "open", allowFrom: ["U123"] }, allowFrom: ["*"] } },
});
expect(res.ok).toBe(true);
});
});