426e9eeabd
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
ci / test (push) Has been cancelled
ci / lint-and-format (push) Has been cancelled
ci / build (push) Has been cancelled
ci / dev-startup (push) Has been cancelled
gitleaks / gitleaks (push) Has been cancelled
Markdown Links / Relative Markdown Links (push) Has been cancelled
Quality (Extended) / Homepage Build (PR smoke) (push) Has been cancelled
Quality (Extended) / Comment-only diff guard (push) Has been cancelled
Quality (Extended) / Format + Type Safety Ratchet (push) Has been cancelled
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Has been cancelled
Quality (Extended) / Develop Gate (lint) (push) Has been cancelled
Chat shell gestures / Chat shell gesture + parity e2e (push) Has been cancelled
Cloud Gateway Discord / Test (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Has been cancelled
Build Agent Image / build-and-push (push) Has been cancelled
Dev Smoke / bun run dev onboarding chat (push) Has been cancelled
Dev Smoke / Vite HMR dependency-level smoke (push) Has been cancelled
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Has been cancelled
Publish @elizaos/example-code / check_npm (push) Has been cancelled
Publish @elizaos/example-code / publish_npm (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / verify_version (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / publish_npm (push) Has been cancelled
Sandbox Live Smoke / Sandbox live smoke (push) Has been cancelled
Snap Build & Test / Build Snap (amd64) (push) Has been cancelled
Snap Build & Test / Build Snap (arm64) (push) Has been cancelled
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Has been cancelled
Cloud Gateway Webhook / Test (push) Has been cancelled
Cloud Tests / lint-and-types (push) Has been cancelled
Cloud Tests / unit-tests (push) Has been cancelled
Cloud Tests / integration-tests (push) Has been cancelled
Cloud Tests / e2e-tests (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Apps Worker (Product 2) / Determine environment (push) Has been cancelled
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Has been cancelled
Deploy Eliza Provisioning Worker / Determine environment (push) Has been cancelled
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Has been cancelled
Dev Smoke / Classify changed paths (push) Has been cancelled
supply-chain / sbom (push) Has been cancelled
supply-chain / vulnerability-scan (push) Has been cancelled
Build, Push & Deploy to Phala Cloud / build-and-push (push) Has been cancelled
Test Packaging / Validate Packaging Configs (push) Has been cancelled
Test Packaging / Build & Test PyPI Package (push) Has been cancelled
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Has been cancelled
Test Packaging / Pack & Test JS Tarballs (push) Has been cancelled
UI Fixture E2E / ui-fixture-e2e (push) Has been cancelled
UI Fixture E2E / fixture-e2e (push) Has been cancelled
UI Story Gate / story-gate (push) Has been cancelled
vault-ci / test (macos-latest) (push) Has been cancelled
vault-ci / test (ubuntu-latest) (push) Has been cancelled
vault-ci / test (windows-latest) (push) Has been cancelled
vault-ci / app-core wiring tests (push) Has been cancelled
verify-patches / verify patches/CHECKSUMS.sha256 (push) Has been cancelled
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Has been cancelled
Voice Benchmark Smoke / voice bench smoke summary (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Has been cancelled
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Has been cancelled
436 lines
14 KiB
TypeScript
436 lines
14 KiB
TypeScript
/**
|
|
* Integration coverage for the Discord generation-timeout DISPATCH path:
|
|
* drives the REAL `MessageManager.handleMessage` and asserts the connector
|
|
* now (a) threads an `abortSignal` into `messageService.handleMessage`,
|
|
* (b) ABORTS that signal when the generation timeout fires, and (c) sends
|
|
* exactly ONE "I timed out" reply without a second dispatch when the
|
|
* orphaned run resolves late.
|
|
*
|
|
* This is the connector-level reproduction of the screenshot bug: real
|
|
* questions hit the ~2min timeout while the underlying model call kept
|
|
* running as an orphan (no abort), able to race a late response into the
|
|
* same room and poison the next slot.
|
|
*
|
|
* Uses fake timers to fast-forward the (30s-floored) generation timeout.
|
|
* Only the discord.js SDK surface is stubbed — no token, no network.
|
|
*/
|
|
import type { Content, Memory, UUID } from "@elizaos/core";
|
|
import { ChannelType } from "@elizaos/core";
|
|
import type { Message as DiscordMessage } from "discord.js";
|
|
import { ChannelType as DiscordChannelType } from "discord.js";
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { MessageManager } from "../messages.ts";
|
|
import type { ICompatRuntime, IDiscordService } from "../types.ts";
|
|
|
|
const AGENT_ID = "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" as UUID;
|
|
const noop = () => {};
|
|
|
|
const INBOUND_MEMORY: Memory = {
|
|
id: "12345678-1234-1234-1234-123456789abc" as UUID,
|
|
entityId: "87654321-4321-4321-4321-cba987654321" as UUID,
|
|
agentId: AGENT_ID,
|
|
roomId: "11111111-2222-3333-4444-555555555555" as UUID,
|
|
content: { text: "a real question that takes a while", source: "discord" },
|
|
};
|
|
|
|
interface Sent {
|
|
content?: string;
|
|
}
|
|
|
|
interface HandleMessageOptions {
|
|
abortSignal?: AbortSignal;
|
|
}
|
|
|
|
/**
|
|
* Runtime whose messageService HANGS (never resolves) and records the
|
|
* abortSignal it was handed. Lets the test assert the timeout aborts it.
|
|
*/
|
|
function makeHangingRuntime(settings: Record<string, string> = {}): {
|
|
runtime: ICompatRuntime;
|
|
errors: string[];
|
|
captured: { signal?: AbortSignal };
|
|
handleCalls: number;
|
|
} {
|
|
const errors: string[] = [];
|
|
const captured: { signal?: AbortSignal } = {};
|
|
let handleCalls = 0;
|
|
const runtime = {
|
|
agentId: AGENT_ID,
|
|
character: { name: "Eliza" },
|
|
logger: {
|
|
debug: noop,
|
|
info: noop,
|
|
warn: noop,
|
|
error: (...args: unknown[]) => {
|
|
errors.push(JSON.stringify(args));
|
|
},
|
|
},
|
|
getSetting: (key: string) =>
|
|
key === "ELIZA_LIFEOPS_PASSIVE_CONNECTORS"
|
|
? "false"
|
|
: (settings[key] ?? undefined),
|
|
getService: () => null,
|
|
ensureConnection: async () => {},
|
|
getMemoryById: async () => null,
|
|
createMemory: async (memory: Memory) => memory.id,
|
|
messageService: {
|
|
handleMessage: (
|
|
_runtime: unknown,
|
|
_message: Memory,
|
|
_callback: (content: Content) => Promise<unknown>,
|
|
options?: HandleMessageOptions,
|
|
) => {
|
|
handleCalls += 1;
|
|
captured.signal = options?.abortSignal;
|
|
// Hang forever — simulates a slow/stuck model call.
|
|
return new Promise<never>(() => {});
|
|
},
|
|
},
|
|
} as unknown as ICompatRuntime;
|
|
return {
|
|
runtime,
|
|
errors,
|
|
captured,
|
|
get handleCalls() {
|
|
return handleCalls;
|
|
},
|
|
};
|
|
}
|
|
|
|
function makeDmChannel(sends: Sent[]) {
|
|
return {
|
|
id: "777000000000000000",
|
|
type: DiscordChannelType.DM,
|
|
isThread: () => false,
|
|
send: async (options: Sent) => {
|
|
sends.push(options);
|
|
return { id: "990000000000000001", ...options };
|
|
},
|
|
sendTyping: async () => {},
|
|
};
|
|
}
|
|
|
|
function makeDiscordService(client: unknown): IDiscordService {
|
|
return {
|
|
client,
|
|
accountId: "default",
|
|
getChannelType: async () => ChannelType.DM,
|
|
discordSettings: {
|
|
autoReply: true,
|
|
dmPolicy: "open",
|
|
shouldIgnoreBotMessages: true,
|
|
shouldIgnoreDirectMessages: false,
|
|
replyToMode: "off",
|
|
},
|
|
buildMemoryFromMessage: async () => INBOUND_MEMORY,
|
|
} as unknown as IDiscordService;
|
|
}
|
|
|
|
function makeInbound(channel: unknown): DiscordMessage {
|
|
return {
|
|
id: "666000000000000000",
|
|
content: "a real question that takes a while",
|
|
createdTimestamp: Date.now(),
|
|
author: {
|
|
id: "555000111222333444",
|
|
bot: false,
|
|
username: "tester",
|
|
globalName: "Tester",
|
|
displayName: "Tester",
|
|
discriminator: "0",
|
|
},
|
|
member: null,
|
|
channel,
|
|
guild: undefined,
|
|
interaction: null,
|
|
reference: undefined,
|
|
embeds: [],
|
|
stickers: { size: 0 },
|
|
attachments: { size: 0 },
|
|
mentions: {
|
|
users: new Map(),
|
|
repliedUser: undefined,
|
|
has: () => true,
|
|
},
|
|
} as unknown as DiscordMessage;
|
|
}
|
|
|
|
describe("Discord generation timeout aborts the underlying run (dispatch path)", () => {
|
|
beforeEach(() => {
|
|
vi.useFakeTimers();
|
|
});
|
|
afterEach(() => {
|
|
vi.runOnlyPendingTimers();
|
|
vi.useRealTimers();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("aborts the abortSignal handed to messageService when the timeout fires", async () => {
|
|
const sends: Sent[] = [];
|
|
const channel = makeDmChannel(sends);
|
|
const client = { user: { id: "888000000000000000" } };
|
|
// 30s floor is the smallest the resolver allows.
|
|
const { runtime, captured } = makeHangingRuntime({
|
|
DISCORD_GENERATION_TIMEOUT_MS: "30000",
|
|
});
|
|
const manager = new MessageManager(makeDiscordService(client), runtime);
|
|
|
|
const handled = manager.handleMessage(makeInbound(channel));
|
|
// Let inbound guards + memory build + dispatch reach the hanging call.
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
expect(captured.signal).toBeDefined();
|
|
expect(captured.signal?.aborted).toBe(false);
|
|
|
|
// Fire the generation timeout.
|
|
await vi.advanceTimersByTimeAsync(30_000);
|
|
await handled;
|
|
|
|
// The abort MUST have propagated to the model-facing signal.
|
|
expect(captured.signal?.aborted).toBe(true);
|
|
// Exactly one timeout reply.
|
|
const timeoutReplies = sends.filter((s) =>
|
|
String(s.content).includes("timed out"),
|
|
);
|
|
expect(timeoutReplies).toHaveLength(1);
|
|
});
|
|
|
|
it("sends no timeout reply and never aborts when the run finishes in time", async () => {
|
|
const sends: Sent[] = [];
|
|
const channel = makeDmChannel(sends);
|
|
const client = { user: { id: "888000000000000000" } };
|
|
const captured: { signal?: AbortSignal } = {};
|
|
// Same runtime shape as makeHangingRuntime, but the dispatch resolves
|
|
// promptly after replying — the healthy path the timeout must not touch.
|
|
const runtime = {
|
|
agentId: AGENT_ID,
|
|
character: { name: "Eliza" },
|
|
logger: { debug: noop, info: noop, warn: noop, error: noop },
|
|
getSetting: (key: string) =>
|
|
key === "ELIZA_LIFEOPS_PASSIVE_CONNECTORS"
|
|
? "false"
|
|
: key === "DISCORD_GENERATION_TIMEOUT_MS"
|
|
? "30000"
|
|
: undefined,
|
|
getService: () => null,
|
|
ensureConnection: async () => {},
|
|
getMemoryById: async () => null,
|
|
createMemory: async (memory: Memory) => memory.id,
|
|
messageService: {
|
|
handleMessage: async (
|
|
_runtime: unknown,
|
|
_message: Memory,
|
|
callback: (content: Content) => Promise<unknown>,
|
|
options?: HandleMessageOptions,
|
|
) => {
|
|
captured.signal = options?.abortSignal;
|
|
await callback({ text: "prompt answer", source: "discord" });
|
|
return {};
|
|
},
|
|
},
|
|
} as unknown as ICompatRuntime;
|
|
const manager = new MessageManager(makeDiscordService(client), runtime);
|
|
|
|
await manager.handleMessage(makeInbound(channel));
|
|
// Fast-forward past where the timeout WOULD fire; nothing must happen.
|
|
await vi.advanceTimersByTimeAsync(31_000);
|
|
|
|
expect(captured.signal?.aborted).toBe(false);
|
|
expect(sends.some((s) => String(s.content).includes("timed out"))).toBe(
|
|
false,
|
|
);
|
|
expect(sends.some((s) => String(s.content).includes("prompt answer"))).toBe(
|
|
true,
|
|
);
|
|
});
|
|
|
|
it("does not double-dispatch when the orphaned run resolves late", async () => {
|
|
const sends: Sent[] = [];
|
|
const channel = makeDmChannel(sends);
|
|
const client = { user: { id: "888000000000000000" } };
|
|
|
|
// Runtime whose handleMessage resolves LATE (after the timeout) via a
|
|
// gate we control, and never emits a response through the callback.
|
|
let release: (() => void) | undefined;
|
|
let handleCalls = 0;
|
|
let capturedSignal: AbortSignal | undefined;
|
|
const runtime = {
|
|
agentId: AGENT_ID,
|
|
character: { name: "Eliza" },
|
|
logger: { debug: noop, info: noop, warn: noop, error: noop },
|
|
getSetting: (key: string) =>
|
|
key === "ELIZA_LIFEOPS_PASSIVE_CONNECTORS"
|
|
? "false"
|
|
: key === "DISCORD_GENERATION_TIMEOUT_MS"
|
|
? "30000"
|
|
: undefined,
|
|
getService: () => null,
|
|
ensureConnection: async () => {},
|
|
getMemoryById: async () => null,
|
|
createMemory: async (memory: Memory) => memory.id,
|
|
messageService: {
|
|
handleMessage: (
|
|
_r: unknown,
|
|
_m: Memory,
|
|
_cb: (content: Content) => Promise<unknown>,
|
|
options?: HandleMessageOptions,
|
|
) => {
|
|
handleCalls += 1;
|
|
capturedSignal = options?.abortSignal;
|
|
return new Promise<void>((resolve) => {
|
|
release = resolve;
|
|
});
|
|
},
|
|
},
|
|
} as unknown as ICompatRuntime;
|
|
|
|
const manager = new MessageManager(makeDiscordService(client), runtime);
|
|
const handled = manager.handleMessage(makeInbound(channel));
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
await vi.advanceTimersByTimeAsync(30_000);
|
|
await handled;
|
|
|
|
expect(capturedSignal?.aborted).toBe(true);
|
|
const timeoutRepliesBefore = sends.filter((s) =>
|
|
String(s.content).includes("timed out"),
|
|
).length;
|
|
expect(timeoutRepliesBefore).toBe(1);
|
|
|
|
// Orphan resolves LATE — must not trigger a second dispatch or a
|
|
// second outbound message.
|
|
release?.();
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
await Promise.resolve();
|
|
|
|
expect(handleCalls).toBe(1);
|
|
const timeoutRepliesAfter = sends.filter((s) =>
|
|
String(s.content).includes("timed out"),
|
|
).length;
|
|
expect(timeoutRepliesAfter).toBe(1);
|
|
});
|
|
|
|
it("drops a late text-only callback after timeout — late drift never reaches the wire (#15888)", async () => {
|
|
// After the timeout reply is sent, an orphaned run may still push text
|
|
// through the response callback. Text-only late deliveries are dropped
|
|
// (only long-running MEDIA may deliver late), so even a reply that
|
|
// drifted into native tool syntax cannot leak onto the wire through the
|
|
// late path — defense in depth behind the shared core sanitizer.
|
|
const sends: Sent[] = [];
|
|
const channel = makeDmChannel(sends);
|
|
const client = { user: { id: "888000000000000000" } };
|
|
|
|
let capturedCallback: ((content: Content) => Promise<unknown>) | undefined;
|
|
const runtime = {
|
|
agentId: AGENT_ID,
|
|
character: { name: "Eliza" },
|
|
logger: { debug: noop, info: noop, warn: noop, error: noop },
|
|
getSetting: (key: string) =>
|
|
key === "ELIZA_LIFEOPS_PASSIVE_CONNECTORS"
|
|
? "false"
|
|
: key === "DISCORD_GENERATION_TIMEOUT_MS"
|
|
? "30000"
|
|
: undefined,
|
|
getService: () => null,
|
|
ensureConnection: async () => {},
|
|
getMemoryById: async () => null,
|
|
createMemory: async (memory: Memory) => memory.id,
|
|
messageService: {
|
|
handleMessage: (
|
|
_r: unknown,
|
|
_m: Memory,
|
|
cb: (content: Content) => Promise<unknown>,
|
|
) => {
|
|
capturedCallback = cb;
|
|
// Hang past the timeout — simulates the orphaned run.
|
|
return new Promise<never>(() => {});
|
|
},
|
|
},
|
|
} as unknown as ICompatRuntime;
|
|
|
|
const manager = new MessageManager(makeDiscordService(client), runtime);
|
|
const handled = manager.handleMessage(makeInbound(channel));
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
await vi.advanceTimersByTimeAsync(30_000);
|
|
await handled;
|
|
|
|
const sendsAfterTimeout = sends.length;
|
|
expect(sendsAfterTimeout).toBeGreaterThan(0);
|
|
expect(capturedCallback).toBeDefined();
|
|
|
|
const lateResult = await capturedCallback?.({
|
|
text: "Here is that late answer.<tool_call>get_weather",
|
|
});
|
|
|
|
expect(lateResult).toEqual([]);
|
|
expect(sends).toHaveLength(sendsAfterTimeout);
|
|
});
|
|
|
|
/**
|
|
* The abort must NOT break the `activeTaskAgentWork` suppression path.
|
|
* Background task-agents (SWARM_COORDINATOR) run in a SEPARATE service,
|
|
* decoupled from the inbound handleMessage streaming context, so aborting
|
|
* the inline generation does not kill them. When a task-agent is still
|
|
* working on this message, the timeout reply is SUPPRESSED (the agent will
|
|
* deliver its result later) even though the inline signal was aborted.
|
|
*/
|
|
it("suppresses the timeout reply while task-agent work is active (abort still safe)", async () => {
|
|
const sends: Sent[] = [];
|
|
const channel = makeDmChannel(sends);
|
|
const client = { user: { id: "888000000000000000" } };
|
|
|
|
// A live task-agent whose originating messageId matches the inbound
|
|
// memory id — this is what hasActiveTaskAgentWorkForMessage keys on.
|
|
const tasks = new Map<string, unknown>([
|
|
[
|
|
"session-1",
|
|
{
|
|
status: "tool_running",
|
|
originMetadata: { messageId: INBOUND_MEMORY.id },
|
|
},
|
|
],
|
|
]);
|
|
|
|
let capturedSignal: AbortSignal | undefined;
|
|
const runtime = {
|
|
agentId: AGENT_ID,
|
|
character: { name: "Eliza" },
|
|
logger: { debug: noop, info: noop, warn: noop, error: noop },
|
|
getSetting: (key: string) =>
|
|
key === "ELIZA_LIFEOPS_PASSIVE_CONNECTORS"
|
|
? "false"
|
|
: key === "DISCORD_GENERATION_TIMEOUT_MS"
|
|
? "30000"
|
|
: undefined,
|
|
getService: (serviceType: string) =>
|
|
serviceType === "SWARM_COORDINATOR" ? { tasks } : null,
|
|
ensureConnection: async () => {},
|
|
getMemoryById: async () => null,
|
|
createMemory: async (memory: Memory) => memory.id,
|
|
messageService: {
|
|
handleMessage: (
|
|
_r: unknown,
|
|
_m: Memory,
|
|
_cb: (content: Content) => Promise<unknown>,
|
|
options?: HandleMessageOptions,
|
|
) => {
|
|
capturedSignal = options?.abortSignal;
|
|
return new Promise<never>(() => {});
|
|
},
|
|
},
|
|
} as unknown as ICompatRuntime;
|
|
|
|
const manager = new MessageManager(makeDiscordService(client), runtime);
|
|
const handled = manager.handleMessage(makeInbound(channel));
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
await vi.advanceTimersByTimeAsync(30_000);
|
|
await handled;
|
|
|
|
// Abort fired (harmless — the task-agent lives in a separate service).
|
|
expect(capturedSignal?.aborted).toBe(true);
|
|
// But NO timeout reply: the task-agent will deliver its result later.
|
|
const timeoutReplies = sends.filter((s) =>
|
|
String(s.content).includes("timed out"),
|
|
);
|
|
expect(timeoutReplies).toHaveLength(0);
|
|
});
|
|
});
|