mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.error: Add a "compact mode" for registries
Inspired by the older registry in pubsub.lib.lua
This commit is contained in:
parent
9a5debbb9f
commit
5da983d8bd
2 changed files with 28 additions and 4 deletions
|
@ -94,6 +94,27 @@ describe("util.error", function ()
|
|||
assert.equal("not-authorized", nope.condition);
|
||||
assert.equal("Can't let you do that Dave", nope.text);
|
||||
end);
|
||||
|
||||
it("compact mode works", function()
|
||||
local reg = errors.init("test", {
|
||||
namespace = "spec";
|
||||
broke = {"cancel"; "internal-server-error"; "It broke :("};
|
||||
nope = {"auth"; "not-authorized"; "Can't let you do that Dave"; "sorry-dave"};
|
||||
});
|
||||
|
||||
local broke = reg.new("broke");
|
||||
assert.equal("cancel", broke.type);
|
||||
assert.equal("internal-server-error", broke.condition);
|
||||
assert.equal("It broke :(", broke.text);
|
||||
assert.is_nil(broke.extra);
|
||||
|
||||
local nope = reg.new("nope");
|
||||
assert.equal("auth", nope.type);
|
||||
assert.equal("not-authorized", nope.condition);
|
||||
assert.equal("Can't let you do that Dave", nope.text);
|
||||
assert.equal("spec", nope.extra.namespace);
|
||||
assert.equal("sorry-dave", nope.extra.condition);
|
||||
end);
|
||||
end);
|
||||
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue