File size: 1,752 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | import { describe, expect, it } from "vitest";
import type { MsgContext } from "../../auto-reply/templating.js";
import { normalizeExplicitSessionKey } from "./explicit-session-key-normalization.js";
function makeCtx(overrides: Partial<MsgContext>): MsgContext {
return {
Body: "",
From: "",
To: "",
...overrides,
} as MsgContext;
}
describe("normalizeExplicitSessionKey", () => {
it("dispatches discord keys through the provider normalizer", () => {
expect(
normalizeExplicitSessionKey(
"agent:fina:discord:channel:123456",
makeCtx({
Surface: "discord",
ChatType: "direct",
From: "discord:123456",
SenderId: "123456",
}),
),
).toBe("agent:fina:discord:direct:123456");
});
it("infers the provider from From when explicit provider fields are absent", () => {
expect(
normalizeExplicitSessionKey(
"discord:dm:123456",
makeCtx({
ChatType: "direct",
From: "discord:123456",
SenderId: "123456",
}),
),
).toBe("discord:direct:123456");
});
it("uses Provider when Surface is absent", () => {
expect(
normalizeExplicitSessionKey(
"agent:fina:discord:dm:123456",
makeCtx({
Provider: "Discord",
ChatType: "direct",
SenderId: "123456",
}),
),
).toBe("agent:fina:discord:direct:123456");
});
it("lowercases and passes through unknown providers unchanged", () => {
expect(
normalizeExplicitSessionKey(
"Agent:Fina:Slack:DM:ABC",
makeCtx({
Surface: "slack",
From: "slack:U123",
}),
),
).toBe("agent:fina:slack:dm:abc");
});
});
|