mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-15 19:21:08 +00:00
167 lines
4.4 KiB
TypeScript
167 lines
4.4 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import {
|
|
getAccountConfig,
|
|
listAccountIds,
|
|
resolveDefaultTwitchAccountId,
|
|
resolveTwitchAccountContext,
|
|
} from "./config.js";
|
|
|
|
describe("getAccountConfig", () => {
|
|
const mockMultiAccountConfig = {
|
|
channels: {
|
|
twitch: {
|
|
accounts: {
|
|
default: {
|
|
username: "testbot",
|
|
accessToken: "oauth:test123",
|
|
},
|
|
secondary: {
|
|
username: "secondbot",
|
|
accessToken: "oauth:secondary",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
const mockSimplifiedConfig = {
|
|
channels: {
|
|
twitch: {
|
|
username: "testbot",
|
|
accessToken: "oauth:test123",
|
|
},
|
|
},
|
|
};
|
|
|
|
it("returns account config for valid account ID (multi-account)", () => {
|
|
const result = getAccountConfig(mockMultiAccountConfig, "default");
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result?.username).toBe("testbot");
|
|
});
|
|
|
|
it("returns account config for default account (simplified config)", () => {
|
|
const result = getAccountConfig(mockSimplifiedConfig, "default");
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result?.username).toBe("testbot");
|
|
});
|
|
|
|
it("returns non-default account from multi-account config", () => {
|
|
const result = getAccountConfig(mockMultiAccountConfig, "secondary");
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result?.username).toBe("secondbot");
|
|
});
|
|
|
|
it("returns null for non-existent account ID", () => {
|
|
const result = getAccountConfig(mockMultiAccountConfig, "nonexistent");
|
|
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
it("returns null when core config is null", () => {
|
|
const result = getAccountConfig(null, "default");
|
|
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
it("returns null when core config is undefined", () => {
|
|
const result = getAccountConfig(undefined, "default");
|
|
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
it("returns null when channels are not defined", () => {
|
|
const result = getAccountConfig({}, "default");
|
|
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
it("returns null when twitch is not defined", () => {
|
|
const result = getAccountConfig({ channels: {} }, "default");
|
|
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
it("returns null when accounts are not defined", () => {
|
|
const result = getAccountConfig({ channels: { twitch: {} } }, "default");
|
|
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|
|
|
|
describe("listAccountIds", () => {
|
|
it("includes the implicit default account from simplified config", () => {
|
|
expect(
|
|
listAccountIds({
|
|
channels: {
|
|
twitch: {
|
|
username: "testbot",
|
|
accessToken: "oauth:test123",
|
|
},
|
|
},
|
|
} as Parameters<typeof listAccountIds>[0]),
|
|
).toEqual(["default"]);
|
|
});
|
|
|
|
it("combines explicit accounts with the implicit default account once", () => {
|
|
expect(
|
|
listAccountIds({
|
|
channels: {
|
|
twitch: {
|
|
username: "testbot",
|
|
accounts: {
|
|
default: { username: "testbot" },
|
|
secondary: { username: "secondbot" },
|
|
},
|
|
},
|
|
},
|
|
} as Parameters<typeof listAccountIds>[0]),
|
|
).toEqual(["default", "secondary"]);
|
|
});
|
|
});
|
|
|
|
describe("resolveDefaultTwitchAccountId", () => {
|
|
it("prefers channels.twitch.defaultAccount when configured", () => {
|
|
expect(
|
|
resolveDefaultTwitchAccountId({
|
|
channels: {
|
|
twitch: {
|
|
defaultAccount: "secondary",
|
|
accounts: {
|
|
default: { username: "default" },
|
|
secondary: { username: "secondary" },
|
|
},
|
|
},
|
|
},
|
|
} as Parameters<typeof resolveDefaultTwitchAccountId>[0]),
|
|
).toBe("secondary");
|
|
});
|
|
});
|
|
|
|
describe("resolveTwitchAccountContext", () => {
|
|
it("uses configured defaultAccount when accountId is omitted", () => {
|
|
const context = resolveTwitchAccountContext({
|
|
channels: {
|
|
twitch: {
|
|
defaultAccount: "secondary",
|
|
accounts: {
|
|
default: {
|
|
username: "default-bot",
|
|
accessToken: "oauth:default-token",
|
|
},
|
|
secondary: {
|
|
username: "second-bot",
|
|
accessToken: "oauth:second-token",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} as Parameters<typeof resolveTwitchAccountContext>[0]);
|
|
|
|
expect(context.accountId).toBe("secondary");
|
|
expect(context.account?.username).toBe("second-bot");
|
|
});
|
|
});
|