util.jid: Explicitly check for nil rather than falsy

A boolean false should blow up.
This commit is contained in:
Kim Alvefur 2022-01-15 16:25:25 +01:00
parent 91055b49bb
commit cced954ac3
2 changed files with 25 additions and 14 deletions

View file

@ -13,6 +13,11 @@ describe("util.jid", function()
assert.are.equal(jid.join(nil, nil, "c"), nil, "invalid JID is nil"); assert.are.equal(jid.join(nil, nil, "c"), nil, "invalid JID is nil");
assert.are.equal(jid.join("a", nil, "c"), nil, "invalid JID is nil"); assert.are.equal(jid.join("a", nil, "c"), nil, "invalid JID is nil");
end); end);
it("should reject invalid arguments", function ()
assert.has_error(function () jid.join(false, "bork", nil) end)
assert.has_error(function () jid.join(nil, "bork", false) end)
assert.has_error(function () jid.join(false, false, false) end)
end)
end); end);
describe("#split()", function() describe("#split()", function()
it("should work", function() it("should work", function()
@ -38,6 +43,9 @@ describe("util.jid", function()
test("@server/resource", nil, nil, nil); test("@server/resource", nil, nil, nil);
test("@/resource", nil, nil, nil); test("@/resource", nil, nil, nil);
end); end);
it("should reject invalid arguments", function ()
assert.has_error(function () jid.split(false) end)
end)
end); end);
@ -59,6 +67,9 @@ describe("util.jid", function()
assert.are.equal(jid.bare("user@@host/resource"), nil, "invalid JID is nil"); assert.are.equal(jid.bare("user@@host/resource"), nil, "invalid JID is nil");
assert.are.equal(jid.bare("user@host/"), nil, "invalid JID is nil"); assert.are.equal(jid.bare("user@host/"), nil, "invalid JID is nil");
end); end);
it("should reject invalid arguments", function ()
assert.has_error(function () jid.bare(false) end)
end)
end); end);
describe("#compare()", function() describe("#compare()", function()

View file

@ -32,18 +32,18 @@ local _ENV = nil;
-- luacheck: std none -- luacheck: std none
local function split(jid) local function split(jid)
if not jid then return; end if jid == nil then return; end
local node, nodepos = match(jid, "^([^@/]+)@()"); local node, nodepos = match(jid, "^([^@/]+)@()");
local host, hostpos = match(jid, "^([^@/]+)()", nodepos); local host, hostpos = match(jid, "^([^@/]+)()", nodepos);
if node and not host then return nil, nil, nil; end if node ~= nil and host == nil then return nil, nil, nil; end
local resource = match(jid, "^/(.+)$", hostpos); local resource = match(jid, "^/(.+)$", hostpos);
if (not host) or ((not resource) and #jid >= hostpos) then return nil, nil, nil; end if (host == nil) or ((resource == nil) and #jid >= hostpos) then return nil, nil, nil; end
return node, host, resource; return node, host, resource;
end end
local function bare(jid) local function bare(jid)
local node, host = split(jid); local node, host = split(jid);
if node and host then if node ~= nil and host ~= nil then
return node.."@"..host; return node.."@"..host;
end end
return host; return host;
@ -51,31 +51,31 @@ end
local function prepped_split(jid, strict) local function prepped_split(jid, strict)
local node, host, resource = split(jid); local node, host, resource = split(jid);
if host and host ~= "." then if host ~= nil and host ~= "." then
if sub(host, -1, -1) == "." then -- Strip empty root label if sub(host, -1, -1) == "." then -- Strip empty root label
host = sub(host, 1, -2); host = sub(host, 1, -2);
end end
host = nameprep(host, strict); host = nameprep(host, strict);
if not host then return; end if host == nil then return; end
if node then if node ~= nil then
node = nodeprep(node, strict); node = nodeprep(node, strict);
if not node then return; end if node == nil then return; end
end end
if resource then if resource ~= nil then
resource = resourceprep(resource, strict); resource = resourceprep(resource, strict);
if not resource then return; end if resource == nil then return; end
end end
return node, host, resource; return node, host, resource;
end end
end end
local function join(node, host, resource) local function join(node, host, resource)
if not host then return end if host == nil then return end
if node and resource then if node ~= nil and resource ~= nil then
return node.."@"..host.."/"..resource; return node.."@"..host.."/"..resource;
elseif node then elseif node ~= nil then
return node.."@"..host; return node.."@"..host;
elseif resource then elseif resource ~= nil then
return host.."/"..resource; return host.."/"..resource;
end end
return host; return host;