util.stanza: Handle namespace prefixes for attributes in :find()

More correct handling of namespaces here.

This works with both prefixes from the parser and hacky .attr["foo:bar"]
This commit is contained in:
Kim Alvefur 2024-11-17 12:35:51 +01:00
parent b9f73bc724
commit 00584c4d61
3 changed files with 10 additions and 3 deletions

View file

@ -577,5 +577,9 @@ describe("util.stanza", function()
assert.equal("text", s:find("{urn:example:not:same}child/nested#"), "finds nested text")
assert.is_nil(s:find("child"), "respects namespaces")
end);
it("handles namespaced attributes", function()
local s = st.stanza("root", { ["urn:example:namespace\1attr"] = "value" }, { e = "urn:example:namespace" });
assert.equal("value", s:find("@e:attr"), "finds prefixed attr")
end)
end);
end);