util.stanza + tests: Bail out of loop if we are iterating too far, fixes #981

This commit is contained in:
Matthew Wild 2018-08-19 21:56:33 +01:00
parent c17a785604
commit 3b0271f560
2 changed files with 13 additions and 0 deletions

View file

@ -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);