mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-16 20:40:45 +00:00
* refactor: move Telegram channel implementation to extensions/telegram/src/ Move all Telegram channel code (123 files + 10 bot/ files + 8 channel plugin files) from src/telegram/ and src/channels/plugins/*/telegram.ts to extensions/telegram/src/. Leave thin re-export shims at original locations so cross-cutting src/ imports continue to resolve. - Fix all relative import paths in moved files (../X/ -> ../../../src/X/) - Fix vi.mock paths in 60 test files - Fix inline typeof import() expressions - Update tsconfig.plugin-sdk.dts.json rootDir to "." for cross-directory DTS - Update write-plugin-sdk-entry-dts.ts for new rootDir structure - Move channel plugin files with correct path remapping * fix: support keyed telegram send deps * fix: sync telegram extension copies with latest main * fix: correct import paths and remove misplaced files in telegram extension * fix: sync outbound-adapter with main (add sendTelegramPayloadMessages) and fix delivery.test import path
145 lines
4.0 KiB
TypeScript
145 lines
4.0 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const { botApi, botCtorSpy } = vi.hoisted(() => ({
|
|
botApi: {
|
|
sendMessage: vi.fn(),
|
|
setMessageReaction: vi.fn(),
|
|
deleteMessage: vi.fn(),
|
|
},
|
|
botCtorSpy: vi.fn(),
|
|
}));
|
|
|
|
const { loadConfig } = vi.hoisted(() => ({
|
|
loadConfig: vi.fn(() => ({})),
|
|
}));
|
|
|
|
const { makeProxyFetch } = vi.hoisted(() => ({
|
|
makeProxyFetch: vi.fn(),
|
|
}));
|
|
|
|
const { resolveTelegramFetch } = vi.hoisted(() => ({
|
|
resolveTelegramFetch: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("../../../src/config/config.js", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("../../../src/config/config.js")>();
|
|
return {
|
|
...actual,
|
|
loadConfig,
|
|
};
|
|
});
|
|
|
|
vi.mock("./proxy.js", () => ({
|
|
makeProxyFetch,
|
|
}));
|
|
|
|
vi.mock("./fetch.js", () => ({
|
|
resolveTelegramFetch,
|
|
}));
|
|
|
|
vi.mock("grammy", () => ({
|
|
Bot: class {
|
|
api = botApi;
|
|
catch = vi.fn();
|
|
constructor(
|
|
public token: string,
|
|
public options?: { client?: { fetch?: typeof fetch; timeoutSeconds?: number } },
|
|
) {
|
|
botCtorSpy(token, options);
|
|
}
|
|
},
|
|
InputFile: class {},
|
|
}));
|
|
|
|
import {
|
|
deleteMessageTelegram,
|
|
reactMessageTelegram,
|
|
resetTelegramClientOptionsCacheForTests,
|
|
sendMessageTelegram,
|
|
} from "./send.js";
|
|
|
|
describe("telegram proxy client", () => {
|
|
const proxyUrl = "http://proxy.test:8080";
|
|
|
|
const prepareProxyFetch = () => {
|
|
const proxyFetch = vi.fn();
|
|
const fetchImpl = vi.fn();
|
|
makeProxyFetch.mockReturnValue(proxyFetch as unknown as typeof fetch);
|
|
resolveTelegramFetch.mockReturnValue(fetchImpl as unknown as typeof fetch);
|
|
return { proxyFetch, fetchImpl };
|
|
};
|
|
|
|
const expectProxyClient = (fetchImpl: ReturnType<typeof vi.fn>) => {
|
|
expect(makeProxyFetch).toHaveBeenCalledWith(proxyUrl);
|
|
expect(resolveTelegramFetch).toHaveBeenCalledWith(expect.any(Function), { network: undefined });
|
|
expect(botCtorSpy).toHaveBeenCalledWith(
|
|
"tok",
|
|
expect.objectContaining({
|
|
client: expect.objectContaining({ fetch: fetchImpl }),
|
|
}),
|
|
);
|
|
};
|
|
|
|
beforeEach(() => {
|
|
resetTelegramClientOptionsCacheForTests();
|
|
vi.unstubAllEnvs();
|
|
botApi.sendMessage.mockResolvedValue({ message_id: 1, chat: { id: "123" } });
|
|
botApi.setMessageReaction.mockResolvedValue(undefined);
|
|
botApi.deleteMessage.mockResolvedValue(true);
|
|
botCtorSpy.mockClear();
|
|
loadConfig.mockReturnValue({
|
|
channels: { telegram: { accounts: { foo: { proxy: proxyUrl } } } },
|
|
});
|
|
makeProxyFetch.mockClear();
|
|
resolveTelegramFetch.mockClear();
|
|
});
|
|
|
|
it("reuses cached Telegram client options for repeated sends with same account transport settings", async () => {
|
|
const { fetchImpl } = prepareProxyFetch();
|
|
vi.stubEnv("VITEST", "");
|
|
vi.stubEnv("NODE_ENV", "production");
|
|
|
|
await sendMessageTelegram("123", "first", { token: "tok", accountId: "foo" });
|
|
await sendMessageTelegram("123", "second", { token: "tok", accountId: "foo" });
|
|
|
|
expect(makeProxyFetch).toHaveBeenCalledTimes(1);
|
|
expect(resolveTelegramFetch).toHaveBeenCalledTimes(1);
|
|
expect(botCtorSpy).toHaveBeenCalledTimes(2);
|
|
expect(botCtorSpy).toHaveBeenNthCalledWith(
|
|
1,
|
|
"tok",
|
|
expect.objectContaining({
|
|
client: expect.objectContaining({ fetch: fetchImpl }),
|
|
}),
|
|
);
|
|
expect(botCtorSpy).toHaveBeenNthCalledWith(
|
|
2,
|
|
"tok",
|
|
expect.objectContaining({
|
|
client: expect.objectContaining({ fetch: fetchImpl }),
|
|
}),
|
|
);
|
|
});
|
|
|
|
it.each([
|
|
{
|
|
name: "sendMessage",
|
|
run: () => sendMessageTelegram("123", "hi", { token: "tok", accountId: "foo" }),
|
|
},
|
|
{
|
|
name: "reactions",
|
|
run: () => reactMessageTelegram("123", "456", "✅", { token: "tok", accountId: "foo" }),
|
|
},
|
|
{
|
|
name: "deleteMessage",
|
|
run: () => deleteMessageTelegram("123", "456", { token: "tok", accountId: "foo" }),
|
|
},
|
|
])("uses proxy fetch for $name", async (testCase) => {
|
|
const { fetchImpl } = prepareProxyFetch();
|
|
|
|
await testCase.run();
|
|
|
|
expectProxyClient(fetchImpl);
|
|
});
|
|
});
|