mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 00:53:28 +00:00
444 lines
12 KiB
TypeScript
444 lines
12 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
||
import type { OpenClawConfig } from "../config/config.js";
|
||
import { peekSystemEvents } from "../infra/system-events.js";
|
||
import { resolveAgentRoute } from "../routing/resolve-route.js";
|
||
import { normalizeE164 } from "../utils.js";
|
||
import {
|
||
config,
|
||
flush,
|
||
getSignalToolResultTestMocks,
|
||
installSignalToolResultTestHooks,
|
||
setSignalToolResultTestConfig,
|
||
} from "./monitor.tool-result.test-harness.js";
|
||
|
||
installSignalToolResultTestHooks();
|
||
|
||
// Import after the harness registers `vi.mock(...)` for Signal internals.
|
||
await import("./monitor.js");
|
||
|
||
const {
|
||
replyMock,
|
||
sendMock,
|
||
streamMock,
|
||
updateLastRouteMock,
|
||
upsertPairingRequestMock,
|
||
waitForTransportReadyMock,
|
||
} = getSignalToolResultTestMocks();
|
||
|
||
const SIGNAL_BASE_URL = "http://127.0.0.1:8080";
|
||
|
||
async function runMonitorWithMocks(
|
||
opts: Parameters<(typeof import("./monitor.js"))["monitorSignalProvider"]>[0],
|
||
) {
|
||
const { monitorSignalProvider } = await import("./monitor.js");
|
||
return monitorSignalProvider(opts);
|
||
}
|
||
|
||
async function receiveSignalPayloads(params: {
|
||
payloads: unknown[];
|
||
opts?: Partial<Parameters<(typeof import("./monitor.js"))["monitorSignalProvider"]>[0]>;
|
||
}) {
|
||
const abortController = new AbortController();
|
||
streamMock.mockImplementation(async ({ onEvent }) => {
|
||
for (const payload of params.payloads) {
|
||
await onEvent({
|
||
event: "receive",
|
||
data: JSON.stringify(payload),
|
||
});
|
||
}
|
||
abortController.abort();
|
||
});
|
||
|
||
await runMonitorWithMocks({
|
||
autoStart: false,
|
||
baseUrl: SIGNAL_BASE_URL,
|
||
abortSignal: abortController.signal,
|
||
...params.opts,
|
||
});
|
||
|
||
await flush();
|
||
}
|
||
|
||
describe("monitorSignalProvider tool results", () => {
|
||
it("uses bounded readiness checks when auto-starting the daemon", async () => {
|
||
const runtime = {
|
||
log: vi.fn(),
|
||
error: vi.fn(),
|
||
exit: ((code: number): never => {
|
||
throw new Error(`exit ${code}`);
|
||
}) as (code: number) => never,
|
||
};
|
||
setSignalToolResultTestConfig({
|
||
...config,
|
||
channels: {
|
||
...config.channels,
|
||
signal: { autoStart: true, dmPolicy: "open", allowFrom: ["*"] },
|
||
},
|
||
});
|
||
const abortController = new AbortController();
|
||
streamMock.mockImplementation(async () => {
|
||
abortController.abort();
|
||
return;
|
||
});
|
||
await runMonitorWithMocks({
|
||
autoStart: true,
|
||
baseUrl: SIGNAL_BASE_URL,
|
||
abortSignal: abortController.signal,
|
||
runtime,
|
||
});
|
||
|
||
expect(waitForTransportReadyMock).toHaveBeenCalledTimes(1);
|
||
expect(waitForTransportReadyMock).toHaveBeenCalledWith(
|
||
expect.objectContaining({
|
||
label: "signal daemon",
|
||
timeoutMs: 30_000,
|
||
logAfterMs: 10_000,
|
||
logIntervalMs: 10_000,
|
||
pollIntervalMs: 150,
|
||
runtime,
|
||
abortSignal: abortController.signal,
|
||
}),
|
||
);
|
||
});
|
||
|
||
it("uses startupTimeoutMs override when provided", async () => {
|
||
const runtime = {
|
||
log: vi.fn(),
|
||
error: vi.fn(),
|
||
exit: ((code: number): never => {
|
||
throw new Error(`exit ${code}`);
|
||
}) as (code: number) => never,
|
||
};
|
||
setSignalToolResultTestConfig({
|
||
...config,
|
||
channels: {
|
||
...config.channels,
|
||
signal: {
|
||
autoStart: true,
|
||
dmPolicy: "open",
|
||
allowFrom: ["*"],
|
||
startupTimeoutMs: 60_000,
|
||
},
|
||
},
|
||
});
|
||
const abortController = new AbortController();
|
||
streamMock.mockImplementation(async () => {
|
||
abortController.abort();
|
||
return;
|
||
});
|
||
|
||
await runMonitorWithMocks({
|
||
autoStart: true,
|
||
baseUrl: SIGNAL_BASE_URL,
|
||
abortSignal: abortController.signal,
|
||
runtime,
|
||
startupTimeoutMs: 90_000,
|
||
});
|
||
|
||
expect(waitForTransportReadyMock).toHaveBeenCalledTimes(1);
|
||
expect(waitForTransportReadyMock).toHaveBeenCalledWith(
|
||
expect.objectContaining({
|
||
timeoutMs: 90_000,
|
||
}),
|
||
);
|
||
});
|
||
|
||
it("caps startupTimeoutMs at 2 minutes", async () => {
|
||
const runtime = {
|
||
log: vi.fn(),
|
||
error: vi.fn(),
|
||
exit: ((code: number): never => {
|
||
throw new Error(`exit ${code}`);
|
||
}) as (code: number) => never,
|
||
};
|
||
setSignalToolResultTestConfig({
|
||
...config,
|
||
channels: {
|
||
...config.channels,
|
||
signal: {
|
||
autoStart: true,
|
||
dmPolicy: "open",
|
||
allowFrom: ["*"],
|
||
startupTimeoutMs: 180_000,
|
||
},
|
||
},
|
||
});
|
||
const abortController = new AbortController();
|
||
streamMock.mockImplementation(async () => {
|
||
abortController.abort();
|
||
return;
|
||
});
|
||
|
||
await runMonitorWithMocks({
|
||
autoStart: true,
|
||
baseUrl: SIGNAL_BASE_URL,
|
||
abortSignal: abortController.signal,
|
||
runtime,
|
||
});
|
||
|
||
expect(waitForTransportReadyMock).toHaveBeenCalledTimes(1);
|
||
expect(waitForTransportReadyMock).toHaveBeenCalledWith(
|
||
expect.objectContaining({
|
||
timeoutMs: 120_000,
|
||
}),
|
||
);
|
||
});
|
||
|
||
it("skips tool summaries with responsePrefix", async () => {
|
||
replyMock.mockResolvedValue({ text: "final reply" });
|
||
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
{
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
dataMessage: {
|
||
message: "hello",
|
||
},
|
||
},
|
||
},
|
||
],
|
||
});
|
||
|
||
expect(sendMock).toHaveBeenCalledTimes(1);
|
||
expect(sendMock.mock.calls[0][1]).toBe("PFX final reply");
|
||
});
|
||
|
||
it("replies with pairing code when dmPolicy is pairing and no allowFrom is set", async () => {
|
||
setSignalToolResultTestConfig({
|
||
...config,
|
||
channels: {
|
||
...config.channels,
|
||
signal: {
|
||
...config.channels?.signal,
|
||
autoStart: false,
|
||
dmPolicy: "pairing",
|
||
allowFrom: [],
|
||
},
|
||
},
|
||
});
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
{
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
dataMessage: {
|
||
message: "hello",
|
||
},
|
||
},
|
||
},
|
||
],
|
||
});
|
||
|
||
expect(replyMock).not.toHaveBeenCalled();
|
||
expect(upsertPairingRequestMock).toHaveBeenCalled();
|
||
expect(sendMock).toHaveBeenCalledTimes(1);
|
||
expect(String(sendMock.mock.calls[0]?.[1] ?? "")).toContain("Your Signal number: +15550001111");
|
||
expect(String(sendMock.mock.calls[0]?.[1] ?? "")).toContain("Pairing code: PAIRCODE");
|
||
});
|
||
|
||
it("ignores reaction-only messages", async () => {
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
{
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
reactionMessage: {
|
||
emoji: "👍",
|
||
targetAuthor: "+15550002222",
|
||
targetSentTimestamp: 2,
|
||
},
|
||
},
|
||
},
|
||
],
|
||
});
|
||
|
||
expect(replyMock).not.toHaveBeenCalled();
|
||
expect(sendMock).not.toHaveBeenCalled();
|
||
expect(updateLastRouteMock).not.toHaveBeenCalled();
|
||
});
|
||
|
||
it("ignores reaction-only dataMessage.reaction events (don’t treat as broken attachments)", async () => {
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
{
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
dataMessage: {
|
||
reaction: {
|
||
emoji: "👍",
|
||
targetAuthor: "+15550002222",
|
||
targetSentTimestamp: 2,
|
||
},
|
||
attachments: [{}],
|
||
},
|
||
},
|
||
},
|
||
],
|
||
});
|
||
|
||
expect(replyMock).not.toHaveBeenCalled();
|
||
expect(sendMock).not.toHaveBeenCalled();
|
||
expect(updateLastRouteMock).not.toHaveBeenCalled();
|
||
});
|
||
|
||
it("enqueues system events for reaction notifications", async () => {
|
||
setSignalToolResultTestConfig({
|
||
...config,
|
||
channels: {
|
||
...config.channels,
|
||
signal: {
|
||
...config.channels?.signal,
|
||
autoStart: false,
|
||
dmPolicy: "open",
|
||
allowFrom: ["*"],
|
||
reactionNotifications: "all",
|
||
},
|
||
},
|
||
});
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
{
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
reactionMessage: {
|
||
emoji: "✅",
|
||
targetAuthor: "+15550002222",
|
||
targetSentTimestamp: 2,
|
||
},
|
||
},
|
||
},
|
||
],
|
||
});
|
||
|
||
const route = resolveAgentRoute({
|
||
cfg: config as OpenClawConfig,
|
||
channel: "signal",
|
||
accountId: "default",
|
||
peer: { kind: "direct", id: normalizeE164("+15550001111") },
|
||
});
|
||
const events = peekSystemEvents(route.sessionKey);
|
||
expect(events.some((text) => text.includes("Signal reaction added"))).toBe(true);
|
||
});
|
||
|
||
it("notifies on own reactions when target includes uuid + phone", async () => {
|
||
setSignalToolResultTestConfig({
|
||
...config,
|
||
channels: {
|
||
...config.channels,
|
||
signal: {
|
||
...config.channels?.signal,
|
||
autoStart: false,
|
||
dmPolicy: "open",
|
||
allowFrom: ["*"],
|
||
account: "+15550002222",
|
||
reactionNotifications: "own",
|
||
},
|
||
},
|
||
});
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
{
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
reactionMessage: {
|
||
emoji: "✅",
|
||
targetAuthor: "+15550002222",
|
||
targetAuthorUuid: "123e4567-e89b-12d3-a456-426614174000",
|
||
targetSentTimestamp: 2,
|
||
},
|
||
},
|
||
},
|
||
],
|
||
});
|
||
|
||
const route = resolveAgentRoute({
|
||
cfg: config as OpenClawConfig,
|
||
channel: "signal",
|
||
accountId: "default",
|
||
peer: { kind: "direct", id: normalizeE164("+15550001111") },
|
||
});
|
||
const events = peekSystemEvents(route.sessionKey);
|
||
expect(events.some((text) => text.includes("Signal reaction added"))).toBe(true);
|
||
});
|
||
|
||
it("processes messages when reaction metadata is present", async () => {
|
||
replyMock.mockResolvedValue({ text: "pong" });
|
||
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
{
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
reactionMessage: {
|
||
emoji: "👍",
|
||
targetAuthor: "+15550002222",
|
||
targetSentTimestamp: 2,
|
||
},
|
||
dataMessage: {
|
||
message: "ping",
|
||
},
|
||
},
|
||
},
|
||
],
|
||
});
|
||
|
||
expect(sendMock).toHaveBeenCalledTimes(1);
|
||
expect(updateLastRouteMock).toHaveBeenCalled();
|
||
});
|
||
|
||
it("does not resend pairing code when a request is already pending", async () => {
|
||
setSignalToolResultTestConfig({
|
||
...config,
|
||
channels: {
|
||
...config.channels,
|
||
signal: {
|
||
...config.channels?.signal,
|
||
autoStart: false,
|
||
dmPolicy: "pairing",
|
||
allowFrom: [],
|
||
},
|
||
},
|
||
});
|
||
upsertPairingRequestMock
|
||
.mockResolvedValueOnce({ code: "PAIRCODE", created: true })
|
||
.mockResolvedValueOnce({ code: "PAIRCODE", created: false });
|
||
|
||
const payload = {
|
||
envelope: {
|
||
sourceNumber: "+15550001111",
|
||
sourceName: "Ada",
|
||
timestamp: 1,
|
||
dataMessage: {
|
||
message: "hello",
|
||
},
|
||
},
|
||
};
|
||
await receiveSignalPayloads({
|
||
payloads: [
|
||
payload,
|
||
{
|
||
...payload,
|
||
envelope: { ...payload.envelope, timestamp: 2 },
|
||
},
|
||
],
|
||
});
|
||
|
||
expect(sendMock).toHaveBeenCalledTimes(1);
|
||
});
|
||
});
|