mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Extract Application-Specific Condition from errors
API change
This commit is contained in:
parent
a7c3fc20a0
commit
815ce25d10
2 changed files with 21 additions and 6 deletions
|
@ -276,6 +276,19 @@ describe("util.stanza", function()
|
|||
end);
|
||||
end);
|
||||
|
||||
describe("#get_error()", function ()
|
||||
describe("basics", function ()
|
||||
local s = st.message();
|
||||
local e = st.error_reply(s, "cancel", "not-acceptable", "UNACCEPTABLE!!!! ONE MILLION YEARS DUNGEON!")
|
||||
:tag("dungeon", { xmlns = "urn:uuid:c9026187-5b05-4e70-b265-c3b6338a7d0f", period="1000000years"});
|
||||
local typ, cond, text, extra = e:get_error();
|
||||
assert.equal("cancel", typ);
|
||||
assert.equal("not-acceptable", cond);
|
||||
assert.equal("UNACCEPTABLE!!!! ONE MILLION YEARS DUNGEON!", text);
|
||||
assert.not_nil(extra)
|
||||
end)
|
||||
end)
|
||||
|
||||
describe("should reject #invalid", function ()
|
||||
local invalid_names = {
|
||||
["empty string"] = "", ["characters"] = "<>";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue