46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import type { OpenClawConfig } from "openclaw/plugin-sdk";
|
|
|
|
import { zaloPlugin } from "./channel.js";
|
|
|
|
describe("zalo directory", () => {
|
|
it("lists peers from allowFrom", async () => {
|
|
const cfg = {
|
|
channels: {
|
|
zalo: {
|
|
allowFrom: ["zalo:123", "zl:234", "345"],
|
|
},
|
|
},
|
|
} as unknown as OpenClawConfig;
|
|
|
|
expect(zaloPlugin.directory).toBeTruthy();
|
|
expect(zaloPlugin.directory?.listPeers).toBeTruthy();
|
|
expect(zaloPlugin.directory?.listGroups).toBeTruthy();
|
|
|
|
await expect(
|
|
zaloPlugin.directory!.listPeers({
|
|
cfg,
|
|
accountId: undefined,
|
|
query: undefined,
|
|
limit: undefined,
|
|
}),
|
|
).resolves.toEqual(
|
|
expect.arrayContaining([
|
|
{ kind: "user", id: "123" },
|
|
{ kind: "user", id: "234" },
|
|
{ kind: "user", id: "345" },
|
|
]),
|
|
);
|
|
|
|
await expect(
|
|
zaloPlugin.directory!.listGroups({
|
|
cfg,
|
|
accountId: undefined,
|
|
query: undefined,
|
|
limit: undefined,
|
|
}),
|
|
).resolves.toEqual([]);
|
|
});
|
|
});
|