1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
use askama::Template;
#[derive(Template)]
#[template(path = "for.html")]
struct ForTemplate<'a> {
strings: Vec<&'a str>,
tuple_strings: Vec<(&'a str, &'a str)>,
}
#[test]
fn test_for() {
let s = ForTemplate {
strings: vec!["A", "alfa", "1"],
tuple_strings: vec![("B", "beta")],
};
assert_eq!(
s.render().unwrap(),
"0. A (first)\n1. alfa\n2. 1\n\n0. B,beta (first)\n"
);
}
#[derive(Template)]
#[template(path = "nested-for.html")]
struct NestedForTemplate<'a> {
seqs: Vec<&'a [&'a str]>,
}
#[test]
fn test_nested_for() {
let alpha = vec!["a", "b", "c"];
let numbers = vec!["one", "two"];
let s = NestedForTemplate {
seqs: vec![&alpha, &numbers],
};
assert_eq!(s.render().unwrap(), "1\n 0a1b2c2\n 0one1two");
}
#[derive(Template)]
#[template(path = "precedence-for.html")]
struct PrecedenceTemplate<'a> {
strings: Vec<&'a str>,
}
#[test]
fn test_precedence_for() {
let s = PrecedenceTemplate {
strings: vec!["A", "alfa", "1"],
};
assert_eq!(
s.render().unwrap(),
"0. A2 (first)\n1. alfa4\n2. 16 (last)\n"
);
}
#[derive(Template)]
#[template(path = "for-range.html")]
struct ForRangeTemplate {
init: i32,
end: i32,
}
#[test]
fn test_for_range() {
let s = ForRangeTemplate { init: -1, end: 1 };
assert_eq!(
s.render().unwrap(),
"foo (first)\nfoo (last)\nbar\nbar\nfoo\nbar\nbar\n"
);
}
#[derive(Template)]
#[template(source = "{% for i in [1, 2, 3] %}{{ i }}{% endfor %}", ext = "txt")]
struct ForArrayTemplate {}
#[test]
fn test_for_array() {
let t = ForArrayTemplate {};
assert_eq!(t.render().unwrap(), "123");
}
#[derive(Template)]
#[template(
source = "{% for i in [1, 2, 3].iter() %}{{ i }}{% endfor %}",
ext = "txt"
)]
struct ForMethodCallTemplate {}
#[test]
fn test_for_method_call() {
let t = ForMethodCallTemplate {};
assert_eq!(t.render().unwrap(), "123");
}
#[derive(Template)]
#[template(
source = "{% for i in [1, 2, 3, 4, 5][3..] %}{{ i }}{% endfor %}",
ext = "txt"
)]
struct ForIndexTemplate {}
#[test]
fn test_for_index() {
let t = ForIndexTemplate {};
assert_eq!(t.render().unwrap(), "45");
}
|