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 ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue