mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Check that argument to error_reply is a stanza
This commit is contained in:
parent
11095184a5
commit
52b7181979
2 changed files with 9 additions and 0 deletions
|
@ -214,6 +214,12 @@ describe("util.stanza", function()
|
|||
assert.are.equal(#r.tags, 1);
|
||||
assert.are.equal(r.tags[1].tags[1].name, "service-unavailable");
|
||||
end);
|
||||
|
||||
it("should reject not-stanzas", function ()
|
||||
assert.has.error_match(function ()
|
||||
st.error_reply(not "a stanza", "modify", "bad-request");
|
||||
end, "expected stanza");
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("should reject #invalid", function ()
|
||||
|
|
|
@ -448,6 +448,9 @@ end
|
|||
|
||||
local xmpp_stanzas_attr = { xmlns = xmlns_stanzas };
|
||||
local function error_reply(orig, error_type, condition, error_message)
|
||||
if not is_stanza(orig) then
|
||||
error("bad argument to error_reply: expected stanza, got "..type(orig));
|
||||
end
|
||||
local t = reply(orig);
|
||||
t.attr.type = "error";
|
||||
t:tag("error", {type = error_type}) --COMPAT: Some day xmlns:stanzas goes here
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue