Spaces:
Paused
Paused
OpenClawBot / src /web /auto-reply.broadcast-groups.skips-unknown-broadcast-agent-ids-agents-list.test.ts
| import "./test-helpers.js"; | |
| import fs from "node:fs/promises"; | |
| import os from "node:os"; | |
| import path from "node:path"; | |
| import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; | |
| 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"}`, | |
| })); | |
| import type { OpenClawConfig } from "../config/config.js"; | |
| import { resetInboundDedupe } from "../auto-reply/reply/inbound-dedupe.js"; | |
| import { monitorWebChannel } from "./auto-reply.js"; | |
| import { resetLoadConfigMock, setLoadConfigMock } from "./test-helpers.js"; | |
| let previousHome: string | undefined; | |
| let tempHome: string | undefined; | |
| const rmDirWithRetries = async (dir: string): Promise<void> => { | |
| // Some tests can leave async session-store writes in-flight; recursive deletion can race and throw ENOTEMPTY. | |
| for (let attempt = 0; attempt < 10; attempt += 1) { | |
| try { | |
| await fs.rm(dir, { recursive: true, force: true }); | |
| return; | |
| } catch (err) { | |
| const code = | |
| err && typeof err === "object" && "code" in err | |
| ? String((err as { code?: unknown }).code) | |
| : null; | |
| if (code === "ENOTEMPTY" || code === "EBUSY" || code === "EPERM") { | |
| await new Promise((resolve) => setTimeout(resolve, 25)); | |
| continue; | |
| } | |
| throw err; | |
| } | |
| } | |
| await fs.rm(dir, { recursive: true, force: true }); | |
| }; | |
| beforeEach(async () => { | |
| resetInboundDedupe(); | |
| previousHome = process.env.HOME; | |
| tempHome = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-web-home-")); | |
| process.env.HOME = tempHome; | |
| }); | |
| afterEach(async () => { | |
| process.env.HOME = previousHome; | |
| if (tempHome) { | |
| await rmDirWithRetries(tempHome); | |
| tempHome = undefined; | |
| } | |
| }); | |
| const _makeSessionStore = async ( | |
| 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 () => { | |
| // Session store writes can be in-flight when the test finishes (e.g. updateLastRoute | |
| // after a message flush). `fs.rm({ recursive })` can race and throw ENOTEMPTY. | |
| for (let attempt = 0; attempt < 10; attempt += 1) { | |
| try { | |
| await fs.rm(dir, { recursive: true, force: true }); | |
| return; | |
| } catch (err) { | |
| const code = | |
| err && typeof err === "object" && "code" in err | |
| ? String((err as { code?: unknown }).code) | |
| : null; | |
| if (code === "ENOTEMPTY" || code === "EBUSY" || code === "EPERM") { | |
| await new Promise((resolve) => setTimeout(resolve, 25)); | |
| continue; | |
| } | |
| throw err; | |
| } | |
| } | |
| await fs.rm(dir, { recursive: true, force: true }); | |
| }; | |
| return { | |
| storePath, | |
| cleanup, | |
| }; | |
| }; | |
| describe("broadcast groups", () => { | |
| it("skips unknown broadcast agent ids when agents.list is present", async () => { | |
| setLoadConfigMock({ | |
| channels: { whatsapp: { allowFrom: ["*"] } }, | |
| agents: { | |
| defaults: { maxConcurrent: 10 }, | |
| list: [{ id: "alfred" }], | |
| }, | |
| broadcast: { | |
| "+1000": ["alfred", "missing"], | |
| }, | |
| } satisfies OpenClawConfig); | |
| const sendMedia = vi.fn(); | |
| const reply = vi.fn().mockResolvedValue(undefined); | |
| const sendComposing = vi.fn(); | |
| const seen: string[] = []; | |
| const resolver = vi.fn(async (ctx: { SessionKey?: unknown }) => { | |
| seen.push(String(ctx.SessionKey)); | |
| return { text: "ok" }; | |
| }); | |
| let capturedOnMessage: | |
| | ((msg: import("./inbound.js").WebInboundMessage) => Promise<void>) | |
| | undefined; | |
| const listenerFactory = async (opts: { | |
| onMessage: (msg: import("./inbound.js").WebInboundMessage) => Promise<void>; | |
| }) => { | |
| capturedOnMessage = opts.onMessage; | |
| return { close: vi.fn() }; | |
| }; | |
| await monitorWebChannel(false, listenerFactory, false, resolver); | |
| expect(capturedOnMessage).toBeDefined(); | |
| await capturedOnMessage?.({ | |
| id: "m1", | |
| from: "+1000", | |
| conversationId: "+1000", | |
| to: "+2000", | |
| body: "hello", | |
| timestamp: Date.now(), | |
| chatType: "direct", | |
| chatId: "direct:+1000", | |
| sendComposing, | |
| reply, | |
| sendMedia, | |
| }); | |
| expect(resolver).toHaveBeenCalledTimes(1); | |
| expect(seen[0]).toContain("agent:alfred:"); | |
| resetLoadConfigMock(); | |
| }); | |
| }); | |