util.jid: Add test for invalid domain but valid UTF-8 (thanks jonas)

This commit is contained in:
Matthew Wild 2022-10-11 15:41:05 +01:00
parent 120e01f162
commit 3483944568

View file

@ -83,6 +83,7 @@ describe("util.jid", function()
end);
it("should fail for JIDs that fail stringprep", function ()
test("node@invalid-\128-server", nil, nil, nil);
test("node@invalid-\194\128-server", nil, nil, nil);
test("<invalid node>@server", nil, nil, nil);
test("node@server/invalid-\000-resource", nil, nil, nil);
end);