254 lines
7.7 KiB
TypeScript
254 lines
7.7 KiB
TypeScript
import "./test-helpers.js";
|
|
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { afterAll, afterEach, beforeAll, beforeEach, vi } from "vitest";
|
|
import { resetInboundDedupe } from "../auto-reply/reply/inbound-dedupe.js";
|
|
import * as ssrf from "../infra/net/ssrf.js";
|
|
import { resetLogger, setLoggerOverride } from "../logging.js";
|
|
import type { WebInboundMessage, WebListenerCloseReason } from "./inbound.js";
|
|
import {
|
|
resetBaileysMocks as _resetBaileysMocks,
|
|
resetLoadConfigMock as _resetLoadConfigMock,
|
|
} from "./test-helpers.js";
|
|
|
|
export { resetBaileysMocks, resetLoadConfigMock, setLoadConfigMock } from "./test-helpers.js";
|
|
|
|
// Avoid exporting inferred vitest mock types (TS2742 under pnpm + d.ts emit).
|
|
// oxlint-disable-next-line typescript/no-explicit-any
|
|
type AnyExport = any;
|
|
type MockWebListener = {
|
|
close: () => Promise<void>;
|
|
onClose: Promise<WebListenerCloseReason>;
|
|
signalClose: () => void;
|
|
sendMessage: () => Promise<{ messageId: string }>;
|
|
sendPoll: () => Promise<{ messageId: string }>;
|
|
sendReaction: () => Promise<void>;
|
|
sendComposingTo: () => Promise<void>;
|
|
};
|
|
|
|
export const TEST_NET_IP = "203.0.113.10";
|
|
|
|
vi.mock("../agents/pi-embedded.js", () => ({
|
|
abortEmbeddedPiRun: vi.fn().mockReturnValue(false),
|
|
isEmbeddedPiRunActive: vi.fn().mockReturnValue(false),
|
|
isEmbeddedPiRunStreaming: vi.fn().mockReturnValue(false),
|
|
runEmbeddedPiAgent: vi.fn(),
|
|
queueEmbeddedPiMessage: vi.fn().mockReturnValue(false),
|
|
resolveEmbeddedSessionLane: (key: string) => `session:${key.trim() || "main"}`,
|
|
}));
|
|
|
|
export async function rmDirWithRetries(
|
|
dir: string,
|
|
opts?: { attempts?: number; delayMs?: number },
|
|
): Promise<void> {
|
|
const attempts = opts?.attempts ?? 10;
|
|
const delayMs = opts?.delayMs ?? 5;
|
|
// Some tests can leave async session-store writes in-flight; recursive deletion can race and throw ENOTEMPTY.
|
|
// Let Node handle retries (faster than re-walking the tree in JS on each retry).
|
|
try {
|
|
await fs.rm(dir, {
|
|
recursive: true,
|
|
force: true,
|
|
maxRetries: attempts,
|
|
retryDelay: delayMs,
|
|
});
|
|
return;
|
|
} catch {
|
|
// Fall back for older Node implementations (or unexpected retry behavior).
|
|
for (let attempt = 0; attempt < attempts; attempt += 1) {
|
|
try {
|
|
await fs.rm(dir, { recursive: true, force: true });
|
|
return;
|
|
} catch (retryErr) {
|
|
const code =
|
|
retryErr && typeof retryErr === "object" && "code" in retryErr
|
|
? String((retryErr as { code?: unknown }).code)
|
|
: null;
|
|
if (code === "ENOTEMPTY" || code === "EBUSY" || code === "EPERM") {
|
|
await new Promise((resolve) => setTimeout(resolve, delayMs));
|
|
continue;
|
|
}
|
|
throw retryErr;
|
|
}
|
|
}
|
|
|
|
await fs.rm(dir, { recursive: true, force: true });
|
|
}
|
|
}
|
|
|
|
let previousHome: string | undefined;
|
|
let tempHome: string | undefined;
|
|
let tempHomeRoot: string | undefined;
|
|
let tempHomeId = 0;
|
|
|
|
export function installWebAutoReplyTestHomeHooks() {
|
|
beforeAll(async () => {
|
|
tempHomeRoot = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-web-home-suite-"));
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
resetInboundDedupe();
|
|
previousHome = process.env.HOME;
|
|
tempHome = path.join(tempHomeRoot ?? os.tmpdir(), `case-${++tempHomeId}`);
|
|
await fs.mkdir(tempHome, { recursive: true });
|
|
process.env.HOME = tempHome;
|
|
});
|
|
|
|
afterEach(async () => {
|
|
process.env.HOME = previousHome;
|
|
tempHome = undefined;
|
|
});
|
|
|
|
afterAll(async () => {
|
|
if (tempHomeRoot) {
|
|
await rmDirWithRetries(tempHomeRoot);
|
|
tempHomeRoot = undefined;
|
|
}
|
|
tempHomeId = 0;
|
|
});
|
|
}
|
|
|
|
export async function makeSessionStore(
|
|
entries: Record<string, unknown> = {},
|
|
): Promise<{ storePath: string; cleanup: () => Promise<void> }> {
|
|
const dir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-session-"));
|
|
const storePath = path.join(dir, "sessions.json");
|
|
await fs.writeFile(storePath, JSON.stringify(entries));
|
|
const cleanup = async () => {
|
|
await rmDirWithRetries(dir);
|
|
};
|
|
return {
|
|
storePath,
|
|
cleanup,
|
|
};
|
|
}
|
|
|
|
export function installWebAutoReplyUnitTestHooks(opts?: { pinDns?: boolean }) {
|
|
let resolvePinnedHostnameSpy: { mockRestore: () => unknown } | undefined;
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
_resetBaileysMocks();
|
|
_resetLoadConfigMock();
|
|
if (opts?.pinDns) {
|
|
resolvePinnedHostnameSpy = vi
|
|
.spyOn(ssrf, "resolvePinnedHostname")
|
|
.mockImplementation(async (hostname) => {
|
|
// SSRF guard pins DNS; stub resolution to avoid live lookups in unit tests.
|
|
const normalized = hostname.trim().toLowerCase().replace(/\.$/, "");
|
|
const addresses = [TEST_NET_IP];
|
|
return {
|
|
hostname: normalized,
|
|
addresses,
|
|
lookup: ssrf.createPinnedLookup({ hostname: normalized, addresses }),
|
|
};
|
|
});
|
|
}
|
|
});
|
|
|
|
afterEach(() => {
|
|
resolvePinnedHostnameSpy?.mockRestore();
|
|
resolvePinnedHostnameSpy = undefined;
|
|
resetLogger();
|
|
setLoggerOverride(null);
|
|
vi.useRealTimers();
|
|
});
|
|
}
|
|
|
|
export function createWebListenerFactoryCapture(): AnyExport {
|
|
let capturedOnMessage: ((msg: WebInboundMessage) => Promise<void>) | undefined;
|
|
const listenerFactory = async (opts: {
|
|
onMessage: (msg: WebInboundMessage) => Promise<void>;
|
|
}) => {
|
|
capturedOnMessage = opts.onMessage;
|
|
return { close: vi.fn() };
|
|
};
|
|
|
|
return {
|
|
listenerFactory,
|
|
getOnMessage: () => capturedOnMessage,
|
|
};
|
|
}
|
|
|
|
export function createMockWebListener(): MockWebListener {
|
|
return {
|
|
close: vi.fn(async () => undefined),
|
|
onClose: new Promise<WebListenerCloseReason>(() => {}),
|
|
signalClose: vi.fn(),
|
|
sendMessage: vi.fn(async () => ({ messageId: "msg-1" })),
|
|
sendPoll: vi.fn(async () => ({ messageId: "poll-1" })),
|
|
sendReaction: vi.fn(async () => undefined),
|
|
sendComposingTo: vi.fn(async () => undefined),
|
|
};
|
|
}
|
|
|
|
export function createWebInboundDeliverySpies(): AnyExport {
|
|
return {
|
|
sendMedia: vi.fn(),
|
|
reply: vi.fn().mockResolvedValue(undefined),
|
|
sendComposing: vi.fn(),
|
|
};
|
|
}
|
|
|
|
export async function sendWebGroupInboundMessage(params: {
|
|
onMessage: (msg: WebInboundMessage) => Promise<void>;
|
|
body: string;
|
|
id: string;
|
|
senderE164: string;
|
|
senderName: string;
|
|
mentionedJids?: string[];
|
|
selfE164?: string;
|
|
selfJid?: string;
|
|
spies: ReturnType<typeof createWebInboundDeliverySpies>;
|
|
conversationId?: string;
|
|
accountId?: string;
|
|
}) {
|
|
const conversationId = params.conversationId ?? "123@g.us";
|
|
const accountId = params.accountId ?? "default";
|
|
await params.onMessage({
|
|
body: params.body,
|
|
from: conversationId,
|
|
conversationId,
|
|
chatId: conversationId,
|
|
chatType: "group",
|
|
to: "+2",
|
|
accountId,
|
|
id: params.id,
|
|
senderE164: params.senderE164,
|
|
senderName: params.senderName,
|
|
mentionedJids: params.mentionedJids,
|
|
selfE164: params.selfE164,
|
|
selfJid: params.selfJid,
|
|
sendComposing: params.spies.sendComposing,
|
|
reply: params.spies.reply,
|
|
sendMedia: params.spies.sendMedia,
|
|
} as WebInboundMessage);
|
|
}
|
|
|
|
export async function sendWebDirectInboundMessage(params: {
|
|
onMessage: (msg: WebInboundMessage) => Promise<void>;
|
|
body: string;
|
|
id: string;
|
|
from: string;
|
|
to: string;
|
|
spies: ReturnType<typeof createWebInboundDeliverySpies>;
|
|
accountId?: string;
|
|
}) {
|
|
const accountId = params.accountId ?? "default";
|
|
await params.onMessage({
|
|
accountId,
|
|
id: params.id,
|
|
from: params.from,
|
|
conversationId: params.from,
|
|
to: params.to,
|
|
body: params.body,
|
|
timestamp: Date.now(),
|
|
chatType: "direct",
|
|
chatId: `direct:${params.from}`,
|
|
sendComposing: params.spies.sendComposing,
|
|
reply: params.spies.reply,
|
|
sendMedia: params.spies.sendMedia,
|
|
} as WebInboundMessage);
|
|
}
|