Files
openclaw/src/plugin-sdk/subpaths.test.ts
Josh Avant 0e4245063f CLI: make read-only SecretRef status flows degrade safely (#37023)
* CLI: add read-only SecretRef inspection

* CLI: fix read-only SecretRef status regressions

* CLI: preserve read-only SecretRef status fallbacks

* Docs: document read-only channel inspection hook

* CLI: preserve audit coverage for read-only SecretRefs

* CLI: fix read-only status account selection

* CLI: fix targeted gateway fallback analysis

* CLI: fix Slack HTTP read-only inspection

* CLI: align audit credential status checks

* CLI: restore Telegram read-only fallback semantics
2026-03-05 23:07:13 -06:00

109 lines
5.2 KiB
TypeScript

import * as compatSdk from "openclaw/plugin-sdk/compat";
import * as discordSdk from "openclaw/plugin-sdk/discord";
import * as imessageSdk from "openclaw/plugin-sdk/imessage";
import * as lineSdk from "openclaw/plugin-sdk/line";
import * as msteamsSdk from "openclaw/plugin-sdk/msteams";
import * as signalSdk from "openclaw/plugin-sdk/signal";
import * as slackSdk from "openclaw/plugin-sdk/slack";
import * as telegramSdk from "openclaw/plugin-sdk/telegram";
import * as whatsappSdk from "openclaw/plugin-sdk/whatsapp";
import { describe, expect, it } from "vitest";
const bundledExtensionSubpathLoaders = [
{ id: "acpx", load: () => import("openclaw/plugin-sdk/acpx") },
{ id: "bluebubbles", load: () => import("openclaw/plugin-sdk/bluebubbles") },
{ id: "copilot-proxy", load: () => import("openclaw/plugin-sdk/copilot-proxy") },
{ id: "device-pair", load: () => import("openclaw/plugin-sdk/device-pair") },
{ id: "diagnostics-otel", load: () => import("openclaw/plugin-sdk/diagnostics-otel") },
{ id: "diffs", load: () => import("openclaw/plugin-sdk/diffs") },
{ id: "feishu", load: () => import("openclaw/plugin-sdk/feishu") },
{
id: "google-gemini-cli-auth",
load: () => import("openclaw/plugin-sdk/google-gemini-cli-auth"),
},
{ id: "googlechat", load: () => import("openclaw/plugin-sdk/googlechat") },
{ id: "irc", load: () => import("openclaw/plugin-sdk/irc") },
{ id: "llm-task", load: () => import("openclaw/plugin-sdk/llm-task") },
{ id: "lobster", load: () => import("openclaw/plugin-sdk/lobster") },
{ id: "matrix", load: () => import("openclaw/plugin-sdk/matrix") },
{ id: "mattermost", load: () => import("openclaw/plugin-sdk/mattermost") },
{ id: "memory-core", load: () => import("openclaw/plugin-sdk/memory-core") },
{ id: "memory-lancedb", load: () => import("openclaw/plugin-sdk/memory-lancedb") },
{
id: "minimax-portal-auth",
load: () => import("openclaw/plugin-sdk/minimax-portal-auth"),
},
{ id: "nextcloud-talk", load: () => import("openclaw/plugin-sdk/nextcloud-talk") },
{ id: "nostr", load: () => import("openclaw/plugin-sdk/nostr") },
{ id: "open-prose", load: () => import("openclaw/plugin-sdk/open-prose") },
{ id: "phone-control", load: () => import("openclaw/plugin-sdk/phone-control") },
{ id: "qwen-portal-auth", load: () => import("openclaw/plugin-sdk/qwen-portal-auth") },
{ id: "synology-chat", load: () => import("openclaw/plugin-sdk/synology-chat") },
{ id: "talk-voice", load: () => import("openclaw/plugin-sdk/talk-voice") },
{ id: "test-utils", load: () => import("openclaw/plugin-sdk/test-utils") },
{ id: "thread-ownership", load: () => import("openclaw/plugin-sdk/thread-ownership") },
{ id: "tlon", load: () => import("openclaw/plugin-sdk/tlon") },
{ id: "twitch", load: () => import("openclaw/plugin-sdk/twitch") },
{ id: "voice-call", load: () => import("openclaw/plugin-sdk/voice-call") },
{ id: "zalo", load: () => import("openclaw/plugin-sdk/zalo") },
{ id: "zalouser", load: () => import("openclaw/plugin-sdk/zalouser") },
] as const;
describe("plugin-sdk subpath exports", () => {
it("exports compat helpers", () => {
expect(typeof compatSdk.emptyPluginConfigSchema).toBe("function");
expect(typeof compatSdk.resolveControlCommandGate).toBe("function");
});
it("exports Discord helpers", () => {
expect(typeof discordSdk.resolveDiscordAccount).toBe("function");
expect(typeof discordSdk.inspectDiscordAccount).toBe("function");
expect(typeof discordSdk.discordOnboardingAdapter).toBe("object");
});
it("exports Slack helpers", () => {
expect(typeof slackSdk.resolveSlackAccount).toBe("function");
expect(typeof slackSdk.inspectSlackAccount).toBe("function");
expect(typeof slackSdk.handleSlackMessageAction).toBe("function");
});
it("exports Telegram helpers", () => {
expect(typeof telegramSdk.resolveTelegramAccount).toBe("function");
expect(typeof telegramSdk.inspectTelegramAccount).toBe("function");
expect(typeof telegramSdk.telegramOnboardingAdapter).toBe("object");
});
it("exports Signal helpers", () => {
expect(typeof signalSdk.resolveSignalAccount).toBe("function");
expect(typeof signalSdk.signalOnboardingAdapter).toBe("object");
});
it("exports iMessage helpers", () => {
expect(typeof imessageSdk.resolveIMessageAccount).toBe("function");
expect(typeof imessageSdk.imessageOnboardingAdapter).toBe("object");
});
it("exports WhatsApp helpers", () => {
expect(typeof whatsappSdk.resolveWhatsAppAccount).toBe("function");
expect(typeof whatsappSdk.whatsappOnboardingAdapter).toBe("object");
});
it("exports LINE helpers", () => {
expect(typeof lineSdk.processLineMessage).toBe("function");
expect(typeof lineSdk.createInfoCard).toBe("function");
});
it("exports Microsoft Teams helpers", () => {
expect(typeof msteamsSdk.resolveControlCommandGate).toBe("function");
expect(typeof msteamsSdk.loadOutboundMediaFromUrl).toBe("function");
});
it("resolves bundled extension subpaths", async () => {
for (const { id, load } of bundledExtensionSubpathLoaders) {
const mod = await load();
expect(typeof mod).toBe("object");
expect(mod, `subpath ${id} should resolve`).toBeTruthy();
}
});
});