Files
openclaw/src/plugins/channel-validation.test.ts
Peter Steinberger dde90a345a refactor(plugin-sdk): narrow wildcard barrels to explicit used exports (#108440)
* refactor(plugin-sdk): narrow wildcard barrels to explicit used exports

* refactor(tools): delete dead tool-planning module exposed by barrel narrowing

* fix(plugin-sdk): restore deprecation tag on OpenClawSchemaType alias

* test(agents): drop test for deleted runtime proxy module

* refactor(tools): trim descriptor types to cache consumers

* refactor(deadcode): harvest exports orphaned by barrel narrowing

* refactor(deadcode): harvest exports orphaned by barrel narrowing (rest)

* fix(agents): restore sdk imports and test markers via public predicate

* fix(plugin-sdk): named type re-exports in plugin-entry; trim types barrel precisely

* chore(plugin-sdk): account unmasked deprecated provider types in budgets

* fix(plugins): name star-only type rows for dts bundling

* fix(plugins): restore host-hook surface; unexport internal api compositions

* fix(plugins): named type imports for api composition; restore needed source exports

* fix(plugins): knip-visible type imports for registry surfaces

* test: adapt tests to privatized media and command internals

* fix(qa-lab): re-export snapshot conversation type

* style: format sessions sdk imports

* fix(plugins): restore smoke entry export; pin budgets to exact actuals

* fix(plugins): canonical smoke-entry import; drop orphaned root shims

* fix(plugins): allowlist manifest probe, repoint qa web import, drop dead browser barrels

* fix(plugin-sdk): pin codex auth marker and scaffold provider type

* fix(qa-lab): keep web-facing model-selection shim within boundary rules

* fix(plugin-sdk): preserve merged contracts through narrowed barrels

* chore(plugin-sdk): pin post-rebase surface budgets
2026-07-16 00:45:23 -07:00

165 lines
4.7 KiB
TypeScript

// Covers plugin channel validation from manifest metadata.
import { describe, expect, it } from "vitest";
import { getChatChannelMeta } from "../channels/chat-meta.js";
import type { ChannelPlugin } from "../channels/plugins/types.public.js";
import { normalizeRegisteredChannelPlugin } from "./channel-validation.js";
import type { PluginDiagnostic } from "./manifest-types.js";
function collectDiagnostics() {
const diagnostics: PluginDiagnostic[] = [];
return {
diagnostics,
pushDiagnostic: (diag: PluginDiagnostic) => {
diagnostics.push(diag);
},
};
}
function createChannelPlugin(overrides?: Partial<ChannelPlugin>): ChannelPlugin {
return {
id: "demo",
meta: {
id: "demo",
label: "Demo",
selectionLabel: "Demo",
docsPath: "/channels/demo",
blurb: "demo channel",
},
capabilities: { chatTypes: ["direct"] },
config: {
listAccountIds: () => [],
resolveAccount: () => ({ accountId: "default" }),
},
...overrides,
};
}
describe("normalizeRegisteredChannelPlugin", () => {
it("fills bundled channel metadata from the canonical core baseline", () => {
const { diagnostics, pushDiagnostic } = collectDiagnostics();
const normalized = normalizeRegisteredChannelPlugin({
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
plugin: createChannelPlugin({
id: "telegram",
meta: {
id: "telegram",
} as never,
}),
pushDiagnostic,
});
const telegram = getChatChannelMeta("telegram");
expect({
label: normalized?.meta.label,
selectionLabel: normalized?.meta.selectionLabel,
docsPath: normalized?.meta.docsPath,
blurb: normalized?.meta.blurb,
}).toEqual({
label: telegram.label,
selectionLabel: telegram.selectionLabel,
docsPath: telegram.docsPath,
blurb: telegram.blurb,
});
expect(diagnostics).toEqual([
{
level: "warn",
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
message:
'channel "telegram" registered incomplete metadata; filled missing label, selectionLabel, docsPath, blurb',
},
]);
});
it("falls back to the channel id for external channels with incomplete metadata", () => {
const { diagnostics, pushDiagnostic } = collectDiagnostics();
const normalized = normalizeRegisteredChannelPlugin({
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
plugin: createChannelPlugin({
id: "external-chat",
meta: {
id: "external-chat",
} as never,
}),
pushDiagnostic,
});
expect(normalized?.id).toBe("external-chat");
expect(normalized?.meta).toEqual({
id: "external-chat",
label: "external-chat",
selectionLabel: "external-chat",
docsPath: "/channels/external-chat",
blurb: "",
});
expect(diagnostics).toEqual([
{
level: "warn",
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
message:
'channel "external-chat" registered incomplete metadata; filled missing label, selectionLabel, docsPath, blurb',
},
]);
});
it("warns and repairs mismatched meta ids", () => {
const { diagnostics, pushDiagnostic } = collectDiagnostics();
const normalized = normalizeRegisteredChannelPlugin({
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
plugin: createChannelPlugin({
id: "demo",
meta: {
id: "other-demo",
label: "Demo",
selectionLabel: "Demo",
docsPath: "/channels/demo",
blurb: "demo channel",
},
}),
pushDiagnostic,
});
expect(normalized?.id).toBe("demo");
expect(normalized?.meta.id).toBe("demo");
expect(diagnostics).toEqual([
{
level: "warn",
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
message: 'channel "demo" meta.id mismatch ("other-demo"); using registered channel id',
},
]);
});
it("rejects runtime channel registrations without required config helpers", () => {
const { diagnostics, pushDiagnostic } = collectDiagnostics();
const normalized = normalizeRegisteredChannelPlugin({
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
plugin: createChannelPlugin({
id: "broken-channel",
config: undefined as never,
}),
pushDiagnostic,
});
expect(normalized).toBeNull();
expect(diagnostics).toEqual([
{
level: "error",
pluginId: "demo-plugin",
source: "/tmp/demo/index.ts",
message: 'channel "broken-channel" registration missing required config helpers',
},
]);
});
});