util.stanza: Add tests ensuring support for unicode in tag/attr names

This commit is contained in:
Matthew Wild 2018-03-16 14:50:28 +00:00
parent a65352b35f
commit b7fd84b6e5

View file

@ -62,6 +62,12 @@ describe("util.stanza", function()
assert.are.equal(#s1.tags[1], 1);
assert.are.equal(s1.tags[1][1].name, "grandchild1");
end);
it("should work with unicode values", function ()
local s = st.stanza("Объект", { xmlns = "myxmlns", ["Объект"] = "&" });
assert.are.equal(s.name, "Объект");
assert.are.equal(s.attr.xmlns, "myxmlns");
assert.are.equal(s.attr["Объект"], "&");
end);
end);
describe("#message()", function()