mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
util.stanza: Add stricter validation for data passed to stanza builder API
This commit is contained in:
parent
b7fd84b6e5
commit
6d7cd57d44
2 changed files with 63 additions and 0 deletions
|
@ -164,4 +164,38 @@ describe("util.stanza", function()
|
|||
assert.are.equal(r.tags[1].tags[1].name, "service-unavailable");
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("#invalid", function ()
|
||||
it("name should be rejected", function ()
|
||||
assert.has_error(function ()
|
||||
st.stanza(1234);
|
||||
end);
|
||||
assert.has_error(function ()
|
||||
st.stanza({});
|
||||
end);
|
||||
assert.has_error(function ()
|
||||
st.stanza();
|
||||
end);
|
||||
assert.has_error(function ()
|
||||
st.stanza("");
|
||||
end);
|
||||
assert.has_error(function ()
|
||||
st.stanza(string.char(0xC0));
|
||||
end);
|
||||
assert.has_error(function ()
|
||||
st.stanza(string.char(0xF4, 0x90, 0x80, 0x80));
|
||||
end);
|
||||
assert.has_error(function ()
|
||||
st.stanza("<>");
|
||||
end);
|
||||
assert.has_error(function ()
|
||||
st.stanza("&");
|
||||
end);
|
||||
end);
|
||||
it("UTF-8 should be rejected", function ()
|
||||
assert.has_error(function ()
|
||||
st.stanza("tag"):text("hello "..string.char(0xF4, 0x90, 0x80, 0x80).." world");
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue