55 lines
2.0 KiB
TypeScript
55 lines
2.0 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { enablePluginInConfig } from "./enable.js";
|
|
|
|
describe("enablePluginInConfig", () => {
|
|
it("enables a plugin entry", () => {
|
|
const cfg: OpenClawConfig = {};
|
|
const result = enablePluginInConfig(cfg, "google-antigravity-auth");
|
|
expect(result.enabled).toBe(true);
|
|
expect(result.config.plugins?.entries?.["google-antigravity-auth"]?.enabled).toBe(true);
|
|
});
|
|
|
|
it("adds plugin to allowlist when allowlist is configured", () => {
|
|
const cfg: OpenClawConfig = {
|
|
plugins: {
|
|
allow: ["memory-core"],
|
|
},
|
|
};
|
|
const result = enablePluginInConfig(cfg, "google-antigravity-auth");
|
|
expect(result.enabled).toBe(true);
|
|
expect(result.config.plugins?.allow).toEqual(["memory-core", "google-antigravity-auth"]);
|
|
});
|
|
|
|
it("refuses enable when plugin is denylisted", () => {
|
|
const cfg: OpenClawConfig = {
|
|
plugins: {
|
|
deny: ["google-antigravity-auth"],
|
|
},
|
|
};
|
|
const result = enablePluginInConfig(cfg, "google-antigravity-auth");
|
|
expect(result.enabled).toBe(false);
|
|
expect(result.reason).toBe("blocked by denylist");
|
|
});
|
|
|
|
it("writes built-in channels to channels.<id>.enabled instead of plugins.entries", () => {
|
|
const cfg: OpenClawConfig = {};
|
|
const result = enablePluginInConfig(cfg, "telegram");
|
|
expect(result.enabled).toBe(true);
|
|
expect(result.config.channels?.telegram?.enabled).toBe(true);
|
|
expect(result.config.plugins?.entries?.telegram).toBeUndefined();
|
|
});
|
|
|
|
it("adds built-in channel id to allowlist when allowlist is configured", () => {
|
|
const cfg: OpenClawConfig = {
|
|
plugins: {
|
|
allow: ["memory-core"],
|
|
},
|
|
};
|
|
const result = enablePluginInConfig(cfg, "telegram");
|
|
expect(result.enabled).toBe(true);
|
|
expect(result.config.channels?.telegram?.enabled).toBe(true);
|
|
expect(result.config.plugins?.allow).toEqual(["memory-core", "telegram"]);
|
|
});
|
|
});
|