mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Check that argument to reply is a stanza
This commit is contained in:
parent
10aa40227b
commit
b340e5e462
2 changed files with 9 additions and 0 deletions
|
@ -170,6 +170,12 @@ describe("util.stanza", function()
|
|||
assert.are.equal(r.attr.type, "result");
|
||||
assert.are.equal(#r.tags, 0, "A reply should not include children of the original stanza");
|
||||
end);
|
||||
|
||||
it("should reject not-stanzas", function ()
|
||||
assert.has.error_match(function ()
|
||||
st.reply(not "a stanza");
|
||||
end, "expected stanza");
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("#error_reply()", function()
|
||||
|
|
|
@ -434,6 +434,9 @@ local function iq(attr)
|
|||
end
|
||||
|
||||
local function reply(orig)
|
||||
if not is_stanza(orig) then
|
||||
error("bad argument to reply: expected stanza, got "..type(orig));
|
||||
end
|
||||
return new_stanza(orig.name,
|
||||
orig.attr and {
|
||||
to = orig.attr.from,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue