mirror of https://github.com/openclaw/openclaw.git
136 lines
3.7 KiB
TypeScript
136 lines
3.7 KiB
TypeScript
import type { PluginRuntime, RuntimeEnv } from "openclaw/plugin-sdk/matrix";
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { createRuntimeEnv } from "../../test-utils/runtime-env.js";
|
|
import { matrixPlugin } from "./channel.js";
|
|
import { setMatrixRuntime } from "./runtime.js";
|
|
import { createMatrixBotSdkMock } from "./test-mocks.js";
|
|
import type { CoreConfig } from "./types.js";
|
|
|
|
vi.mock("@vector-im/matrix-bot-sdk", () =>
|
|
createMatrixBotSdkMock({ includeVerboseLogService: true }),
|
|
);
|
|
|
|
describe("matrix directory", () => {
|
|
const runtimeEnv: RuntimeEnv = createRuntimeEnv();
|
|
|
|
beforeEach(() => {
|
|
setMatrixRuntime({
|
|
state: {
|
|
resolveStateDir: (_env, homeDir) => (homeDir ?? (() => "/tmp"))(),
|
|
},
|
|
} as PluginRuntime);
|
|
});
|
|
|
|
it("lists peers and groups from config", async () => {
|
|
const cfg = {
|
|
channels: {
|
|
matrix: {
|
|
dm: { allowFrom: ["matrix:@alice:example.org", "bob"] },
|
|
groupAllowFrom: ["@dana:example.org"],
|
|
groups: {
|
|
"!room1:example.org": { users: ["@carol:example.org"] },
|
|
"#alias:example.org": { users: [] },
|
|
},
|
|
},
|
|
},
|
|
} as unknown as CoreConfig;
|
|
|
|
expect(matrixPlugin.directory).toBeTruthy();
|
|
expect(matrixPlugin.directory?.listPeers).toBeTruthy();
|
|
expect(matrixPlugin.directory?.listGroups).toBeTruthy();
|
|
|
|
await expect(
|
|
matrixPlugin.directory!.listPeers!({
|
|
cfg,
|
|
accountId: undefined,
|
|
query: undefined,
|
|
limit: undefined,
|
|
runtime: runtimeEnv,
|
|
}),
|
|
).resolves.toEqual(
|
|
expect.arrayContaining([
|
|
{ kind: "user", id: "user:@alice:example.org" },
|
|
{ kind: "user", id: "bob", name: "incomplete id; expected @user:server" },
|
|
{ kind: "user", id: "user:@carol:example.org" },
|
|
{ kind: "user", id: "user:@dana:example.org" },
|
|
]),
|
|
);
|
|
|
|
await expect(
|
|
matrixPlugin.directory!.listGroups!({
|
|
cfg,
|
|
accountId: undefined,
|
|
query: undefined,
|
|
limit: undefined,
|
|
runtime: runtimeEnv,
|
|
}),
|
|
).resolves.toEqual(
|
|
expect.arrayContaining([
|
|
{ kind: "group", id: "room:!room1:example.org" },
|
|
{ kind: "group", id: "#alias:example.org" },
|
|
]),
|
|
);
|
|
});
|
|
|
|
it("resolves replyToMode from account config", () => {
|
|
const cfg = {
|
|
channels: {
|
|
matrix: {
|
|
replyToMode: "off",
|
|
accounts: {
|
|
Assistant: {
|
|
replyToMode: "all",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} as unknown as CoreConfig;
|
|
|
|
expect(matrixPlugin.threading?.resolveReplyToMode).toBeTruthy();
|
|
expect(
|
|
matrixPlugin.threading?.resolveReplyToMode?.({
|
|
cfg,
|
|
accountId: "assistant",
|
|
chatType: "direct",
|
|
}),
|
|
).toBe("all");
|
|
expect(
|
|
matrixPlugin.threading?.resolveReplyToMode?.({
|
|
cfg,
|
|
accountId: "default",
|
|
chatType: "direct",
|
|
}),
|
|
).toBe("off");
|
|
});
|
|
|
|
it("resolves group mention policy from account config", () => {
|
|
const cfg = {
|
|
channels: {
|
|
matrix: {
|
|
groups: {
|
|
"!room:example.org": { requireMention: true },
|
|
},
|
|
accounts: {
|
|
Assistant: {
|
|
groups: {
|
|
"!room:example.org": { requireMention: false },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} as unknown as CoreConfig;
|
|
|
|
expect(matrixPlugin.groups!.resolveRequireMention!({ cfg, groupId: "!room:example.org" })).toBe(
|
|
true,
|
|
);
|
|
expect(
|
|
matrixPlugin.groups!.resolveRequireMention!({
|
|
cfg,
|
|
accountId: "assistant",
|
|
groupId: "!room:example.org",
|
|
}),
|
|
).toBe(false);
|
|
});
|
|
});
|