Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
import { describe, expect, it } from "vitest";
import { resolveSessionKey } from "./session-key.js";
import { installDiscordSessionKeyNormalizerFixture, makeCtx } from "./session-key.test-helpers.js";
installDiscordSessionKeyNormalizerFixture();
describe("resolveSessionKey", () => {
describe("Discord DM session key normalization", () => {
it("passes through correct discord:direct keys unchanged", () => {
const ctx = makeCtx({
SessionKey: "agent:fina:discord:direct:123456",
ChatType: "direct",
From: "discord:123456",
SenderId: "123456",
});
expect(resolveSessionKey("per-sender", ctx)).toBe("agent:fina:discord:direct:123456");
});
it("migrates legacy discord:dm: keys to discord:direct:", () => {
const ctx = makeCtx({
SessionKey: "agent:fina:discord:dm:123456",
ChatType: "direct",
From: "discord:123456",
SenderId: "123456",
});
expect(resolveSessionKey("per-sender", ctx)).toBe("agent:fina:discord:direct:123456");
});
it("fixes phantom discord:channel:USERID keys when sender matches", () => {
const ctx = makeCtx({
SessionKey: "agent:fina:discord:channel:123456",
ChatType: "direct",
From: "discord:123456",
SenderId: "123456",
});
expect(resolveSessionKey("per-sender", ctx)).toBe("agent:fina:discord:direct:123456");
});
it("does not rewrite discord:channel: keys for non-direct chats", () => {
const ctx = makeCtx({
SessionKey: "agent:fina:discord:channel:123456",
ChatType: "channel",
From: "discord:channel:123456",
SenderId: "789",
});
expect(resolveSessionKey("per-sender", ctx)).toBe("agent:fina:discord:channel:123456");
});
it("does not rewrite discord:channel: keys when sender does not match", () => {
const ctx = makeCtx({
SessionKey: "agent:fina:discord:channel:123456",
ChatType: "direct",
From: "discord:789",
SenderId: "789",
});
expect(resolveSessionKey("per-sender", ctx)).toBe("agent:fina:discord:channel:123456");
});
it("handles keys without an agent prefix", () => {
const ctx = makeCtx({
SessionKey: "discord:channel:123456",
ChatType: "direct",
From: "discord:123456",
SenderId: "123456",
});
expect(resolveSessionKey("per-sender", ctx)).toBe("discord:direct:123456");
});
});
});
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-04-27)
¤
*© Formatika GbR, Deutschland