69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import type { ChannelAccountSnapshot } from "openclaw/plugin-sdk/googlechat";
|
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import { createStartAccountContext } from "../../test-utils/start-account-context.js";
|
|
import type { ResolvedGoogleChatAccount } from "./accounts.js";
|
|
|
|
const hoisted = vi.hoisted(() => ({
|
|
startGoogleChatMonitor: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("./monitor.js", async () => {
|
|
const actual = await vi.importActual<typeof import("./monitor.js")>("./monitor.js");
|
|
return {
|
|
...actual,
|
|
startGoogleChatMonitor: hoisted.startGoogleChatMonitor,
|
|
};
|
|
});
|
|
|
|
import { googlechatPlugin } from "./channel.js";
|
|
|
|
describe("googlechatPlugin gateway.startAccount", () => {
|
|
afterEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
it("keeps startAccount pending until abort, then unregisters", async () => {
|
|
const unregister = vi.fn();
|
|
hoisted.startGoogleChatMonitor.mockResolvedValue(unregister);
|
|
|
|
const account: ResolvedGoogleChatAccount = {
|
|
accountId: "default",
|
|
enabled: true,
|
|
credentialSource: "inline",
|
|
credentials: {},
|
|
config: {
|
|
webhookPath: "/googlechat",
|
|
webhookUrl: "https://example.com/googlechat",
|
|
audienceType: "app-url",
|
|
audience: "https://example.com/googlechat",
|
|
},
|
|
};
|
|
|
|
const patches: ChannelAccountSnapshot[] = [];
|
|
const abort = new AbortController();
|
|
const task = googlechatPlugin.gateway!.startAccount!(
|
|
createStartAccountContext({
|
|
account,
|
|
abortSignal: abort.signal,
|
|
statusPatchSink: (next) => patches.push({ ...next }),
|
|
}),
|
|
);
|
|
let settled = false;
|
|
void task.then(() => {
|
|
settled = true;
|
|
});
|
|
await vi.waitFor(() => {
|
|
expect(hoisted.startGoogleChatMonitor).toHaveBeenCalledOnce();
|
|
});
|
|
expect(settled).toBe(false);
|
|
expect(unregister).not.toHaveBeenCalled();
|
|
|
|
abort.abort();
|
|
await task;
|
|
|
|
expect(unregister).toHaveBeenCalledOnce();
|
|
expect(patches.some((entry) => entry.running === true)).toBe(true);
|
|
expect(patches.some((entry) => entry.running === false)).toBe(true);
|
|
});
|
|
});
|