* Extensions: fix oxfmt drift on main * Plugins: restore runtime barrel exports on main * Config: restore web search compatibility types * Telegram: align test harness with reply runtime * Plugin SDK: fix channel config accessor generics * CLI: remove redundant search provider casts * Tests: restore main typecheck coverage * Lobster: fix test import formatting * Extensions: route bundled seams through plugin-sdk * Tests: use extension env helper for xai * Image generation: fix main oxfmt drift * Config: restore latest main compatibility checks * Plugin SDK: align guardrail tests with lint * Telegram: type native command skill mock
117 lines
3.6 KiB
TypeScript
117 lines
3.6 KiB
TypeScript
import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime-env";
|
|
import { expect, vi } from "vitest";
|
|
import type { SkillCommandSpec } from "../../../src/agents/skills.js";
|
|
import type { OpenClawConfig } from "../runtime-api.js";
|
|
import type { TelegramBotDeps } from "./bot-deps.js";
|
|
import {
|
|
createNativeCommandTestParams as createBaseNativeCommandTestParams,
|
|
createTelegramPrivateCommandContext,
|
|
type NativeCommandTestParams as RegisterTelegramNativeCommandsParams,
|
|
} from "./bot-native-commands.fixture-test-support.js";
|
|
|
|
const EMPTY_REPLY_COUNTS = {
|
|
block: 0,
|
|
final: 0,
|
|
tool: 0,
|
|
} as const;
|
|
|
|
type RegisteredCommand = {
|
|
command: string;
|
|
description: string;
|
|
};
|
|
|
|
type CreateCommandBotResult = {
|
|
bot: RegisterTelegramNativeCommandsParams["bot"];
|
|
commandHandlers: Map<string, (ctx: unknown) => Promise<void>>;
|
|
sendMessage: ReturnType<typeof vi.fn>;
|
|
setMyCommands: ReturnType<typeof vi.fn>;
|
|
};
|
|
|
|
const skillCommandMocks = vi.hoisted(() => ({
|
|
listSkillCommandsForAgents: vi.fn<
|
|
(params: { cfg: OpenClawConfig; agentIds?: string[] }) => SkillCommandSpec[]
|
|
>(() => []),
|
|
}));
|
|
|
|
const deliveryMocks = vi.hoisted(() => ({
|
|
deliverReplies: vi.fn(async () => ({ delivered: true })),
|
|
}));
|
|
|
|
export const listSkillCommandsForAgents = skillCommandMocks.listSkillCommandsForAgents;
|
|
export const deliverReplies = deliveryMocks.deliverReplies;
|
|
|
|
vi.mock("openclaw/plugin-sdk/reply-runtime", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("openclaw/plugin-sdk/reply-runtime")>();
|
|
return {
|
|
...actual,
|
|
listSkillCommandsForAgents,
|
|
};
|
|
});
|
|
|
|
vi.mock("./bot/delivery.js", () => ({
|
|
deliverReplies,
|
|
}));
|
|
|
|
export async function waitForRegisteredCommands(
|
|
setMyCommands: ReturnType<typeof vi.fn>,
|
|
): Promise<RegisteredCommand[]> {
|
|
await vi.waitFor(() => {
|
|
expect(setMyCommands).toHaveBeenCalled();
|
|
});
|
|
return setMyCommands.mock.calls[0]?.[0] as RegisteredCommand[];
|
|
}
|
|
|
|
export function resetNativeCommandMenuMocks() {
|
|
listSkillCommandsForAgents.mockClear();
|
|
listSkillCommandsForAgents.mockReturnValue([]);
|
|
deliverReplies.mockClear();
|
|
deliverReplies.mockResolvedValue({ delivered: true });
|
|
}
|
|
|
|
export function createCommandBot(): CreateCommandBotResult {
|
|
const commandHandlers = new Map<string, (ctx: unknown) => Promise<void>>();
|
|
const sendMessage = vi.fn().mockResolvedValue(undefined);
|
|
const setMyCommands = vi.fn().mockResolvedValue(undefined);
|
|
const bot = {
|
|
api: {
|
|
setMyCommands,
|
|
sendMessage,
|
|
},
|
|
command: vi.fn((name: string, cb: (ctx: unknown) => Promise<void>) => {
|
|
commandHandlers.set(name, cb);
|
|
}),
|
|
} as unknown as RegisterTelegramNativeCommandsParams["bot"];
|
|
return { bot, commandHandlers, sendMessage, setMyCommands };
|
|
}
|
|
|
|
export function createNativeCommandTestParams(
|
|
cfg: OpenClawConfig,
|
|
params: Partial<RegisterTelegramNativeCommandsParams> = {},
|
|
): RegisterTelegramNativeCommandsParams {
|
|
const telegramDeps: TelegramBotDeps = {
|
|
loadConfig: vi.fn(() => ({})),
|
|
resolveStorePath: vi.fn((storePath?: string) => storePath ?? "/tmp/sessions.json"),
|
|
readChannelAllowFromStore: vi.fn(async () => []),
|
|
enqueueSystemEvent: vi.fn(),
|
|
dispatchReplyWithBufferedBlockDispatcher: vi.fn(async () => ({
|
|
queuedFinal: false,
|
|
counts: EMPTY_REPLY_COUNTS,
|
|
})),
|
|
listSkillCommandsForAgents,
|
|
wasSentByBot: vi.fn(() => false),
|
|
};
|
|
return createBaseNativeCommandTestParams({
|
|
cfg,
|
|
runtime: params.runtime ?? ({} as RuntimeEnv),
|
|
nativeSkillsEnabled: true,
|
|
telegramDeps,
|
|
...params,
|
|
});
|
|
}
|
|
|
|
export function createPrivateCommandContext(
|
|
params?: Parameters<typeof createTelegramPrivateCommandContext>[0],
|
|
) {
|
|
return createTelegramPrivateCommandContext(params);
|
|
}
|