mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Cover :find method in tests
This method is a bit complex so good to have some test coverage
This commit is contained in:
parent
5ead4102de
commit
631d7b9003
1 changed files with 12 additions and 0 deletions
|
@ -552,4 +552,16 @@ describe("util.stanza", function()
|
|||
assert.equal("<foo>\n\t\t<bar>\n\t\t\t<baz/>\n\t\t\t<cow>moo</cow>\n\t\t</bar>\n\t</foo>", tostring(s:indent(2, "\t")));
|
||||
end);
|
||||
|
||||
describe("find", function()
|
||||
it("works", function()
|
||||
local s = st.stanza("root", { attr = "value" }):tag("child",
|
||||
{ xmlns = "urn:example:not:same"; childattr = "thisvalue" }):text_tag("nested", "text"):reset();
|
||||
assert.equal("value", s:find("@attr"), "finds attr")
|
||||
assert.equal(s:get_child("child", "urn:example:not:same"), s:find("{urn:example:not:same}child"),
|
||||
"equivalent to get_child")
|
||||
assert.equal("thisvalue", s:find("{urn:example:not:same}child@childattr"), "finds child attr")
|
||||
assert.equal("text", s:find("{urn:example:not:same}child/nested#"), "finds nested text")
|
||||
assert.is_nil(s:find("child"), "respects namespaces")
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue