35 lines
965 B
TypeScript
35 lines
965 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { assertProvider, normalizeE164, toWhatsappJid } from "./index.js";
|
|
|
|
describe("normalizeE164", () => {
|
|
it("strips whatsapp prefix and whitespace", () => {
|
|
expect(normalizeE164("whatsapp:+1 555 555 0123")).toBe("+15555550123");
|
|
});
|
|
|
|
it("adds plus when missing", () => {
|
|
expect(normalizeE164("1555123")).toBe("+1555123");
|
|
});
|
|
});
|
|
|
|
describe("toWhatsappJid", () => {
|
|
it("converts E164 to jid", () => {
|
|
expect(toWhatsappJid("+1 555 555 0123")).toBe("15555550123@s.whatsapp.net");
|
|
});
|
|
|
|
it("keeps group JIDs intact", () => {
|
|
expect(toWhatsappJid("123456789-987654321@g.us")).toBe(
|
|
"123456789-987654321@g.us",
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("assertProvider", () => {
|
|
it("accepts valid providers", () => {
|
|
expect(() => assertProvider("web")).not.toThrow();
|
|
});
|
|
|
|
it("throws on invalid provider", () => {
|
|
expect(() => assertProvider("invalid" as string)).toThrow();
|
|
});
|
|
});
|