mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.xtemplate: Test the each template function
It iterates over childtags, so a template like {foo|each{...}} would be equivalent to root:childtags("foo"), while a deeper query needs the bit that becomes arguments to :childtags as an argument to each, e.g. {foo/bar|each(baz)} would behave like root:get_child("foo"):get_child("bar"):childtags("baz")
This commit is contained in:
parent
d26ccd8400
commit
251f4d3c8a
1 changed files with 8 additions and 0 deletions
|
@ -31,5 +31,13 @@ describe("util.xtemplate", function ()
|
||||||
assert.same(" Hello", xtemplate.render(" {greeting-} ", st.stanza("root"):text_tag("greeting", "Hello")))
|
assert.same(" Hello", xtemplate.render(" {greeting-} ", st.stanza("root"):text_tag("greeting", "Hello")))
|
||||||
assert.same("Hello", xtemplate.render(" {-greeting-} ", st.stanza("root"):text_tag("greeting", "Hello")))
|
assert.same("Hello", xtemplate.render(" {-greeting-} ", st.stanza("root"):text_tag("greeting", "Hello")))
|
||||||
end)
|
end)
|
||||||
|
describe("each", function ()
|
||||||
|
it("makes sense", function ()
|
||||||
|
local x = st.stanza("root"):tag("foo"):tag("bar")
|
||||||
|
for i = 1, 5 do x:text_tag("i", tostring(i)); end
|
||||||
|
x:reset();
|
||||||
|
assert.same("12345", xtemplate.render("{foo/bar|each(i){{#}}}", x));
|
||||||
|
end)
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue