mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 04:15:48 -06:00
10e60fa0ce
* refactor(plugins): share legacy JSON doctor migration * refactor(discord): share account token inspection cascade * refactor(plugins): share simple channel secret contracts * refactor(discord): keep token inspector private
117 lines
3.3 KiB
TypeScript
117 lines
3.3 KiB
TypeScript
// Discord tests cover setup account state plugin behavior.
|
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import {
|
|
inspectDiscordSetupAccount,
|
|
resolveDefaultDiscordSetupAccountId,
|
|
resolveDiscordSetupAccountConfig,
|
|
} from "./setup-account-state.js";
|
|
|
|
describe("discord setup account state", () => {
|
|
afterEach(() => vi.unstubAllEnvs());
|
|
|
|
it("resolves setup account config when account key casing differs from normalized id", () => {
|
|
const resolved = resolveDiscordSetupAccountConfig({
|
|
cfg: {
|
|
channels: {
|
|
discord: {
|
|
allowFrom: ["top"],
|
|
accounts: {
|
|
Work: { name: "Work", allowFrom: ["acct"] },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
accountId: "work",
|
|
});
|
|
|
|
expect(resolved.accountId).toBe("work");
|
|
expect(resolved.config.name).toBe("Work");
|
|
expect(resolved.config.allowFrom).toEqual(["acct"]);
|
|
});
|
|
|
|
it("uses configured defaultAccount for omitted setup account resolution", () => {
|
|
const cfg = {
|
|
channels: {
|
|
discord: {
|
|
defaultAccount: "work",
|
|
allowFrom: ["top"],
|
|
accounts: {
|
|
alerts: { allowFrom: ["alerts-only"] },
|
|
work: { name: "Work", allowFrom: ["work-only"] },
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
expect(resolveDefaultDiscordSetupAccountId(cfg)).toBe("work");
|
|
|
|
const resolved = resolveDiscordSetupAccountConfig({
|
|
cfg,
|
|
});
|
|
|
|
expect(resolved.accountId).toBe("work");
|
|
expect(resolved.config.name).toBe("Work");
|
|
expect(resolved.config.allowFrom).toEqual(["work-only"]);
|
|
});
|
|
|
|
it("treats explicit blank account tokens as missing without falling back", () => {
|
|
const inspected = inspectDiscordSetupAccount({
|
|
cfg: {
|
|
channels: {
|
|
discord: {
|
|
token: "top-level-token",
|
|
accounts: {
|
|
work: { token: "" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
accountId: "work",
|
|
});
|
|
|
|
expect(inspected.accountId).toBe("work");
|
|
expect(inspected.token).toBe("");
|
|
expect(inspected.tokenSource).toBe("none");
|
|
expect(inspected.tokenStatus).toBe("missing");
|
|
expect(inspected.configured).toBe(false);
|
|
});
|
|
|
|
it("reports unresolved SecretRef account tokens as configured but unavailable", () => {
|
|
const inspected = inspectDiscordSetupAccount({
|
|
cfg: {
|
|
channels: {
|
|
discord: {
|
|
accounts: {
|
|
work: {
|
|
token: { source: "exec", provider: "vault", id: "discord/work" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
accountId: "work",
|
|
});
|
|
|
|
expect(inspected.token).toBe("");
|
|
expect(inspected.tokenSource).toBe("config");
|
|
expect(inspected.tokenStatus).toBe("configured_unavailable");
|
|
expect(inspected.configured).toBe(true);
|
|
});
|
|
|
|
it("keeps the runtime resolver's default-account-only environment fallback", () => {
|
|
vi.stubEnv("DISCORD_BOT_TOKEN", "Bot setup-token");
|
|
|
|
expect(inspectDiscordSetupAccount({ cfg: {}, accountId: "default" })).toMatchObject({
|
|
token: "setup-token",
|
|
tokenSource: "env",
|
|
configured: true,
|
|
});
|
|
expect(
|
|
inspectDiscordSetupAccount({
|
|
cfg: { channels: { discord: { accounts: { work: {} } } } },
|
|
accountId: "work",
|
|
}),
|
|
).toMatchObject({ token: "", tokenSource: "none", configured: false });
|
|
});
|
|
});
|