159 lines
4.0 KiB
TypeScript
159 lines
4.0 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, it } from "vitest";
|
|
import type { ChannelPlugin } from "../channels/plugins/types.js";
|
|
import type { PluginRegistry } from "../plugins/registry.js";
|
|
import { setActivePluginRegistry } from "../plugins/runtime.js";
|
|
import { resolveChannelCapabilities } from "./channel-capabilities.js";
|
|
import type { ClawdbotConfig } from "./config.js";
|
|
|
|
describe("resolveChannelCapabilities", () => {
|
|
beforeEach(() => {
|
|
setActivePluginRegistry(emptyRegistry);
|
|
});
|
|
|
|
afterEach(() => {
|
|
setActivePluginRegistry(emptyRegistry);
|
|
});
|
|
|
|
it("returns undefined for missing inputs", () => {
|
|
expect(resolveChannelCapabilities({})).toBeUndefined();
|
|
expect(resolveChannelCapabilities({ cfg: {} })).toBeUndefined();
|
|
expect(resolveChannelCapabilities({ cfg: {}, channel: "" })).toBeUndefined();
|
|
});
|
|
|
|
it("normalizes and prefers per-account capabilities", () => {
|
|
const cfg = {
|
|
channels: {
|
|
telegram: {
|
|
capabilities: [" inlineButtons ", ""],
|
|
accounts: {
|
|
default: {
|
|
capabilities: [" perAccount ", " "],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} satisfies Partial<ClawdbotConfig>;
|
|
|
|
expect(
|
|
resolveChannelCapabilities({
|
|
cfg,
|
|
channel: "telegram",
|
|
accountId: "default",
|
|
}),
|
|
).toEqual(["perAccount"]);
|
|
});
|
|
|
|
it("falls back to provider capabilities when account capabilities are missing", () => {
|
|
const cfg = {
|
|
channels: {
|
|
telegram: {
|
|
capabilities: ["inlineButtons"],
|
|
accounts: {
|
|
default: {},
|
|
},
|
|
},
|
|
},
|
|
} satisfies Partial<ClawdbotConfig>;
|
|
|
|
expect(
|
|
resolveChannelCapabilities({
|
|
cfg,
|
|
channel: "telegram",
|
|
accountId: "default",
|
|
}),
|
|
).toEqual(["inlineButtons"]);
|
|
});
|
|
|
|
it("matches account keys case-insensitively", () => {
|
|
const cfg = {
|
|
channels: {
|
|
slack: {
|
|
accounts: {
|
|
Family: { capabilities: ["threads"] },
|
|
},
|
|
},
|
|
},
|
|
} satisfies Partial<ClawdbotConfig>;
|
|
|
|
expect(
|
|
resolveChannelCapabilities({
|
|
cfg,
|
|
channel: "slack",
|
|
accountId: "family",
|
|
}),
|
|
).toEqual(["threads"]);
|
|
});
|
|
|
|
it("supports msteams capabilities", () => {
|
|
setActivePluginRegistry(
|
|
createRegistry([
|
|
{
|
|
pluginId: "msteams",
|
|
source: "test",
|
|
plugin: createMSTeamsPlugin(),
|
|
},
|
|
]),
|
|
);
|
|
const cfg = {
|
|
channels: { msteams: { capabilities: [" polls ", ""] } },
|
|
} satisfies Partial<ClawdbotConfig>;
|
|
|
|
expect(
|
|
resolveChannelCapabilities({
|
|
cfg,
|
|
channel: "msteams",
|
|
}),
|
|
).toEqual(["polls"]);
|
|
});
|
|
|
|
it("handles object-format capabilities gracefully (e.g., { inlineButtons: 'dm' })", () => {
|
|
const cfg = {
|
|
channels: {
|
|
telegram: {
|
|
// Object format - used for granular control like inlineButtons scope.
|
|
// Channel-specific handlers (resolveTelegramInlineButtonsScope) process these.
|
|
capabilities: { inlineButtons: "dm" },
|
|
},
|
|
},
|
|
};
|
|
|
|
// Should return undefined (not crash), allowing channel-specific handlers to process it.
|
|
expect(
|
|
resolveChannelCapabilities({
|
|
cfg,
|
|
channel: "telegram",
|
|
}),
|
|
).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
const createRegistry = (channels: PluginRegistry["channels"]): PluginRegistry => ({
|
|
plugins: [],
|
|
tools: [],
|
|
channels,
|
|
providers: [],
|
|
gatewayHandlers: {},
|
|
httpHandlers: [],
|
|
cliRegistrars: [],
|
|
services: [],
|
|
diagnostics: [],
|
|
});
|
|
|
|
const emptyRegistry = createRegistry([]);
|
|
|
|
const createMSTeamsPlugin = (): ChannelPlugin => ({
|
|
id: "msteams",
|
|
meta: {
|
|
id: "msteams",
|
|
label: "Microsoft Teams",
|
|
selectionLabel: "Microsoft Teams (Bot Framework)",
|
|
docsPath: "/channels/msteams",
|
|
blurb: "Bot Framework; enterprise support.",
|
|
},
|
|
capabilities: { chatTypes: ["direct"] },
|
|
config: {
|
|
listAccountIds: () => [],
|
|
resolveAccount: () => ({}),
|
|
},
|
|
});
|