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 NOT a stanza of type error
Replying to an error is Very Bad
This commit is contained in:
parent
52b7181979
commit
54da2ab6f7
2 changed files with 12 additions and 0 deletions
|
@ -220,6 +220,16 @@ describe("util.stanza", function()
|
|||
st.error_reply(not "a stanza", "modify", "bad-request");
|
||||
end, "expected stanza");
|
||||
end);
|
||||
|
||||
it("should reject stanzas of type error", function ()
|
||||
assert.has.error_match(function ()
|
||||
st.error_reply(st.message({type="error"}), "cancel", "conflict");
|
||||
end, "got stanza of type error");
|
||||
assert.has.error_match(function ()
|
||||
st.error_reply(st.error_reply(st.message({type="chat"}), "modify", "forbidden"), "cancel", "service-unavailable");
|
||||
end, "got stanza of type error");
|
||||
end);
|
||||
|
||||
end);
|
||||
|
||||
describe("should reject #invalid", function ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue