mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Add add_error() to simplify adding error tags to existing stanzas
Some fiddling is required now in error_reply() to ensure the cursor is in the same place as before this change (a lot of code apparently uses that feature).
This commit is contained in:
parent
a2cabe6418
commit
b02ab508d5
2 changed files with 45 additions and 25 deletions
|
@ -314,6 +314,20 @@ describe("util.stanza", function()
|
|||
end)
|
||||
end)
|
||||
|
||||
describe("#add_error()", function ()
|
||||
describe("basics", function ()
|
||||
local s = st.stanza("custom", { xmlns = "urn:example:foo" });
|
||||
local e = s:add_error("cancel", "not-acceptable", "UNACCEPTABLE!!!! ONE MILLION YEARS DUNGEON!")
|
||||
:tag("dungeon", { xmlns = "urn:uuid:c9026187-5b05-4e70-b265-c3b6338a7d0f", period="1000000years"});
|
||||
assert.equal(s, e);
|
||||
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.is_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