Files
openclaw/extensions/discord/src/gateway-logging.test.ts
scoootscooob 5682ec37fa refactor: move Discord channel implementation to extensions/ (#45660)
* refactor: move Discord channel implementation to extensions/discord/src/

Move all Discord source files from src/discord/ to extensions/discord/src/,
following the extension migration pattern. Source files in src/discord/ are
replaced with re-export shims. Channel-plugin files from
src/channels/plugins/*/discord* are similarly moved and shimmed.

- Copy all .ts source files preserving subdirectory structure (monitor/, voice/)
- Move channel-plugin files (actions, normalize, onboarding, outbound, status-issues)
- Fix all relative imports to use correct paths from new location
- Create re-export shims at original locations for backward compatibility
- Delete test files from shim locations (tests live in extension now)
- Update tsconfig.plugin-sdk.dts.json rootDir from "src" to "." to accommodate
  extension files outside src/
- Update write-plugin-sdk-entry-dts.ts to match new declaration output paths

* fix: add importOriginal to thread-bindings session-meta mock for extensions test

* style: fix formatting in thread-bindings lifecycle test
2026-03-14 02:53:57 -07:00

90 lines
2.4 KiB
TypeScript

import { EventEmitter } from "node:events";
import { afterEach, describe, expect, it, vi } from "vitest";
vi.mock("../../../src/globals.js", () => ({
logVerbose: vi.fn(),
}));
import { logVerbose } from "../../../src/globals.js";
import { attachDiscordGatewayLogging } from "./gateway-logging.js";
const makeRuntime = () => ({
log: vi.fn(),
error: vi.fn(),
exit: vi.fn(),
});
describe("attachDiscordGatewayLogging", () => {
afterEach(() => {
vi.clearAllMocks();
});
it("logs debug events and promotes reconnect/close to info", () => {
const emitter = new EventEmitter();
const runtime = makeRuntime();
const cleanup = attachDiscordGatewayLogging({
emitter,
runtime,
});
emitter.emit("debug", "WebSocket connection opened");
emitter.emit("debug", "WebSocket connection closed with code 1001");
emitter.emit("debug", "Reconnecting with backoff: 1000ms after code 1001");
const logVerboseMock = vi.mocked(logVerbose);
expect(logVerboseMock).toHaveBeenCalledTimes(3);
expect(runtime.log).toHaveBeenCalledTimes(2);
expect(runtime.log).toHaveBeenNthCalledWith(
1,
"discord gateway: WebSocket connection closed with code 1001",
);
expect(runtime.log).toHaveBeenNthCalledWith(
2,
"discord gateway: Reconnecting with backoff: 1000ms after code 1001",
);
cleanup();
});
it("logs warnings and metrics only to verbose", () => {
const emitter = new EventEmitter();
const runtime = makeRuntime();
const cleanup = attachDiscordGatewayLogging({
emitter,
runtime,
});
emitter.emit("warning", "High latency detected: 1200ms");
emitter.emit("metrics", { latency: 42, errors: 1 });
const logVerboseMock = vi.mocked(logVerbose);
expect(logVerboseMock).toHaveBeenCalledTimes(2);
expect(runtime.log).not.toHaveBeenCalled();
cleanup();
});
it("removes listeners on cleanup", () => {
const emitter = new EventEmitter();
const runtime = makeRuntime();
const cleanup = attachDiscordGatewayLogging({
emitter,
runtime,
});
cleanup();
const logVerboseMock = vi.mocked(logVerbose);
logVerboseMock.mockClear();
emitter.emit("debug", "WebSocket connection closed with code 1001");
emitter.emit("warning", "High latency detected: 1200ms");
emitter.emit("metrics", { latency: 42 });
expect(logVerboseMock).not.toHaveBeenCalled();
expect(runtime.log).not.toHaveBeenCalled();
});
});