mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 12:17:40 +00:00
fix(imessage): normalize messaging targets (#1708)
Co-authored-by: Aaron Ng <1653630+aaronn@users.noreply.github.com>
This commit is contained in:
@@ -28,6 +28,27 @@ describe("imessage targets", () => {
|
||||
expect(normalizeIMessageHandle(" +1 (555) 222-3333 ")).toBe("+15552223333");
|
||||
});
|
||||
|
||||
it("normalizes chat_id prefixes case-insensitively", () => {
|
||||
expect(normalizeIMessageHandle("CHAT_ID:123")).toBe("chat_id:123");
|
||||
expect(normalizeIMessageHandle("Chat_Id:456")).toBe("chat_id:456");
|
||||
expect(normalizeIMessageHandle("chatid:789")).toBe("chat_id:789");
|
||||
expect(normalizeIMessageHandle("CHAT:42")).toBe("chat_id:42");
|
||||
});
|
||||
|
||||
it("normalizes chat_guid prefixes case-insensitively", () => {
|
||||
expect(normalizeIMessageHandle("CHAT_GUID:abc-def")).toBe("chat_guid:abc-def");
|
||||
expect(normalizeIMessageHandle("ChatGuid:XYZ")).toBe("chat_guid:XYZ");
|
||||
expect(normalizeIMessageHandle("GUID:test-guid")).toBe("chat_guid:test-guid");
|
||||
});
|
||||
|
||||
it("normalizes chat_identifier prefixes case-insensitively", () => {
|
||||
expect(normalizeIMessageHandle("CHAT_IDENTIFIER:iMessage;-;chat123")).toBe(
|
||||
"chat_identifier:iMessage;-;chat123",
|
||||
);
|
||||
expect(normalizeIMessageHandle("ChatIdentifier:test")).toBe("chat_identifier:test");
|
||||
expect(normalizeIMessageHandle("CHATIDENT:foo")).toBe("chat_identifier:foo");
|
||||
});
|
||||
|
||||
it("checks allowFrom against chat_id", () => {
|
||||
const ok = isAllowedIMessageSender({
|
||||
allowFrom: ["chat_id:9"],
|
||||
|
||||
Reference in New Issue
Block a user