Spaces:
Paused
Paused
| import { describe, expect, it, vi } from "vitest"; | |
| import { buildTelegramMessageContext } from "./bot-message-context.js"; | |
| describe("buildTelegramMessageContext dm thread sessions", () => { | |
| const baseConfig = { | |
| agents: { defaults: { model: "anthropic/claude-opus-4-5", workspace: "/tmp/clawd" } }, | |
| channels: { telegram: {} }, | |
| messages: { groupChat: { mentionPatterns: [] } }, | |
| } as never; | |
| const buildContext = async (message: Record<string, unknown>) => | |
| await buildTelegramMessageContext({ | |
| primaryCtx: { | |
| message, | |
| me: { id: 7, username: "bot" }, | |
| } as never, | |
| allMedia: [], | |
| storeAllowFrom: [], | |
| options: {}, | |
| bot: { | |
| api: { | |
| sendChatAction: vi.fn(), | |
| setMessageReaction: vi.fn(), | |
| }, | |
| } as never, | |
| cfg: baseConfig, | |
| account: { accountId: "default" } as never, | |
| historyLimit: 0, | |
| groupHistories: new Map(), | |
| dmPolicy: "open", | |
| allowFrom: [], | |
| groupAllowFrom: [], | |
| ackReactionScope: "off", | |
| logger: { info: vi.fn() }, | |
| resolveGroupActivation: () => undefined, | |
| resolveGroupRequireMention: () => false, | |
| resolveTelegramGroupConfig: () => ({ | |
| groupConfig: { requireMention: false }, | |
| topicConfig: undefined, | |
| }), | |
| }); | |
| it("uses thread session key for dm topics", async () => { | |
| const ctx = await buildContext({ | |
| message_id: 1, | |
| chat: { id: 1234, type: "private" }, | |
| date: 1700000000, | |
| text: "hello", | |
| message_thread_id: 42, | |
| from: { id: 42, first_name: "Alice" }, | |
| }); | |
| expect(ctx).not.toBeNull(); | |
| expect(ctx?.ctxPayload?.MessageThreadId).toBe(42); | |
| expect(ctx?.ctxPayload?.SessionKey).toBe("agent:main:main:thread:42"); | |
| }); | |
| it("keeps legacy dm session key when no thread id", async () => { | |
| const ctx = await buildContext({ | |
| message_id: 2, | |
| chat: { id: 1234, type: "private" }, | |
| date: 1700000001, | |
| text: "hello", | |
| from: { id: 42, first_name: "Alice" }, | |
| }); | |
| expect(ctx).not.toBeNull(); | |
| expect(ctx?.ctxPayload?.MessageThreadId).toBeUndefined(); | |
| expect(ctx?.ctxPayload?.SessionKey).toBe("agent:main:main"); | |
| }); | |
| }); | |