mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.jid: Add missing test cases
(98% mutant score, single remaining mutant is a string.sub equivalent)
This commit is contained in:
parent
02352c6dcf
commit
e8d1a6720e
1 changed files with 40 additions and 0 deletions
|
@ -48,6 +48,46 @@ describe("util.jid", function()
|
|||
end)
|
||||
end);
|
||||
|
||||
describe("#prepped_split()", function()
|
||||
local function test(input_jid, expected_node, expected_server, expected_resource)
|
||||
local rnode, rserver, rresource = jid.prepped_split(input_jid);
|
||||
assert.are.equal(expected_node, rnode, "split("..tostring(input_jid)..") failed");
|
||||
assert.are.equal(expected_server, rserver, "split("..tostring(input_jid)..") failed");
|
||||
assert.are.equal(expected_resource, rresource, "split("..tostring(input_jid)..") failed");
|
||||
end
|
||||
|
||||
it("should work", function()
|
||||
-- Valid JIDs
|
||||
test("node@server", "node", "server", nil );
|
||||
test("node@server/resource", "node", "server", "resource" );
|
||||
test("server", nil, "server", nil );
|
||||
test("server/resource", nil, "server", "resource" );
|
||||
test("server/resource@foo", nil, "server", "resource@foo" );
|
||||
test("server/resource@foo/bar", nil, "server", "resource@foo/bar");
|
||||
|
||||
-- Always invalid JIDs
|
||||
test(nil, nil, nil, nil);
|
||||
test("node@/server", nil, nil, nil);
|
||||
test("@server", nil, nil, nil);
|
||||
test("@server/resource", nil, nil, nil);
|
||||
test("@/resource", nil, nil, nil);
|
||||
test("@server/", nil, nil, nil);
|
||||
test("server/", nil, nil, nil);
|
||||
test("/resource", nil, nil, nil);
|
||||
end);
|
||||
it("should reject invalid arguments", function ()
|
||||
assert.has_error(function () jid.prepped_split(false) end)
|
||||
end)
|
||||
it("should strip empty root label", function ()
|
||||
test("node@server.", "node", "server", nil);
|
||||
end);
|
||||
it("should fail for JIDs that fail stringprep", function ()
|
||||
test("node@invalid-\128-server", nil, nil, nil);
|
||||
test("<invalid node>@server", nil, nil, nil);
|
||||
test("node@server/invalid-\000-resource", nil, nil, nil);
|
||||
end);
|
||||
end);
|
||||
|
||||
|
||||
describe("#bare()", function()
|
||||
it("should work", function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue