blob: 4cdb3bb46671fc66cf9f3ee1236115b914ecc360 [file] [log] [blame]
Armin Ronacherab45b842007-03-18 20:47:50 +01001# -*- coding: utf-8 -*-
2"""
3 unit test for loop functions
4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5
6 :copyright: 2007 by Armin Ronacher.
7 :license: BSD, see LICENSE for more details.
8"""
Armin Ronacher10f3ba22008-04-18 11:30:37 +02009from py.test import raises
10
Armin Ronacherab45b842007-03-18 20:47:50 +010011
12SIMPLE = '''{% for item in seq %}{{ item }}{% endfor %}'''
13ELSE = '''{% for item in seq %}XXX{% else %}...{% endfor %}'''
14EMPTYBLOCKS = '''<{% for item in seq %}{% else %}{% endfor %}>'''
15CONTEXTVARS = '''{% for item in seq %}\
16{{ loop.index }}|{{ loop.index0 }}|{{ loop.revindex }}|{{
17 loop.revindex0 }}|{{ loop.first }}|{{ loop.last }}|{{
Armin Ronacher10f3ba22008-04-18 11:30:37 +020018 loop.length }}###{% endfor %}'''
19CYCLING = '''{% for item in seq %}{{ loop.cycle('<1>', '<2>') }}{% endfor %}\
20{% for item in seq %}{{ loop.cycle(*through) }}{% endfor %}'''
Armin Ronacherab45b842007-03-18 20:47:50 +010021SCOPE = '''{% for item in seq %}{% endfor %}{{ item }}'''
Armin Ronacher6dba4d62007-05-21 23:41:36 +020022VARLEN = '''{% for item in iter %}{{ item }}{% endfor %}'''
Armin Ronacher9bcd4112007-05-29 14:17:24 +020023NONITER = '''{% for item in none %}...{% endfor %}'''
Armin Ronacher66a93442008-05-11 23:42:19 +020024RECURSIVE = '''{% for item in seq recursive -%}
Armin Ronacherb455c312008-05-11 23:43:07 +020025 [{{ item.a }}{% if item.b %}<{{ loop(item.b) }}>{% endif %}]
Armin Ronacher66a93442008-05-11 23:42:19 +020026{%- endfor %}'''
Armin Ronacherab45b842007-03-18 20:47:50 +010027
28
29def test_simple(env):
30 tmpl = env.from_string(SIMPLE)
31 assert tmpl.render(seq=range(10)) == '0123456789'
32
33
34def test_else(env):
35 tmpl = env.from_string(ELSE)
36 assert tmpl.render() == '...'
37
38
39def test_empty_blocks(env):
40 tmpl = env.from_string(EMPTYBLOCKS)
41 assert tmpl.render() == '<>'
42
43
44def test_context_vars(env):
45 tmpl = env.from_string(CONTEXTVARS)
46 one, two, _ = tmpl.render(seq=[0, 1]).split('###')
47 (one_index, one_index0, one_revindex, one_revindex0, one_first,
Armin Ronacher10f3ba22008-04-18 11:30:37 +020048 one_last, one_length) = one.split('|')
Armin Ronacherab45b842007-03-18 20:47:50 +010049 (two_index, two_index0, two_revindex, two_revindex0, two_first,
Armin Ronacher10f3ba22008-04-18 11:30:37 +020050 two_last, two_length) = two.split('|')
Armin Ronacherab45b842007-03-18 20:47:50 +010051
52 assert int(one_index) == 1 and int(two_index) == 2
53 assert int(one_index0) == 0 and int(two_index0) == 1
54 assert int(one_revindex) == 2 and int(two_revindex) == 1
55 assert int(one_revindex0) == 1 and int(two_revindex0) == 0
56 assert one_first == 'True' and two_first == 'False'
57 assert one_last == 'False' and two_last == 'True'
Armin Ronacherab45b842007-03-18 20:47:50 +010058 assert one_length == two_length == '2'
59
60
61def test_cycling(env):
62 tmpl = env.from_string(CYCLING)
63 output = tmpl.render(seq=range(4), through=('<1>', '<2>'))
64 assert output == '<1><2>' * 4
65
66
67def test_scope(env):
68 tmpl = env.from_string(SCOPE)
69 output = tmpl.render(seq=range(10))
70 assert not output
Armin Ronacher6dba4d62007-05-21 23:41:36 +020071
72
73def test_varlen(env):
74 def inner():
75 for item in range(5):
76 yield item
77 tmpl = env.from_string(VARLEN)
78 output = tmpl.render(iter=inner())
79 assert output == '01234'
Armin Ronacher9bcd4112007-05-29 14:17:24 +020080
81
82def test_noniter(env):
83 tmpl = env.from_string(NONITER)
Armin Ronacher10f3ba22008-04-18 11:30:37 +020084 raises(TypeError, tmpl.render)
Armin Ronacher66a93442008-05-11 23:42:19 +020085
86
87def test_recursive(env):
88 tmpl = env.from_string(RECURSIVE)
89 assert tmpl.render(seq=[
90 dict(a=1, b=[dict(a=1), dict(a=2)]),
91 dict(a=2, b=[dict(a=1), dict(a=2)]),
92 dict(a=3, b=[dict(a='a')])
Armin Ronacherb455c312008-05-11 23:43:07 +020093 ]) == '[1<[1][2]>][2<[1][2]>][3<[a]>]'