diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-08-19 21:56:33 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-08-19 21:56:33 +0100 |
commit | 028db90d4ba000f91d61a9b507105aea1379136d (patch) | |
tree | 39c97fae457df6b0b0fc7be6d30e6cd39b8114e6 /spec/util_stanza_spec.lua | |
parent | 5005ab3e55455158a557682a9bd4269549a7dfaa (diff) | |
download | prosody-028db90d4ba000f91d61a9b507105aea1379136d.tar.gz prosody-028db90d4ba000f91d61a9b507105aea1379136d.zip |
util.stanza + tests: Bail out of loop if we are iterating too far, fixes #981
Diffstat (limited to 'spec/util_stanza_spec.lua')
-rw-r--r-- | spec/util_stanza_spec.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/util_stanza_spec.lua b/spec/util_stanza_spec.lua index aabeeadc..383beae3 100644 --- a/spec/util_stanza_spec.lua +++ b/spec/util_stanza_spec.lua @@ -327,5 +327,12 @@ describe("util.stanza", function() end); assert.equal(3, #s.tags); end); + it("errors on invalid data - #981", function () + local s = st.message({}, "Hello"); + s.tags[1] = st.clone(s.tags[1]); + assert.has_error_match(function () + s:maptags(function () end); + end, "Invalid stanza"); + end); end); end); |