mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
b9f73bc724
commit
00584c4d61
3 changed files with 10 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue