summaryrefslogtreecommitdiff
path: root/test/integration/targets/filters/templates/foo.j2
blob: c5979c76c7d1ea8049b08c7a0369846176c729eb (plain)
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
This is a test of various filter plugins found in Ansible (ex: core.py), and 
not so much a test of the core filters in Jinja2.

Dumping the same structure to YAML

{{ some_structure | to_nice_yaml }}

Dumping the same structure to JSON, but don't pretty print

{{ some_structure | to_json(sort_keys=true) }}

Dumping the same structure to YAML, but don't pretty print

{{ some_structure | to_yaml }}

From a recorded task, the changed, failed, success, and skipped
filters are shortcuts to ask if those tasks produced changes, failed,
succeeded, or skipped (as one might guess).

Changed = {{ some_registered_var | changed }}
Failed  = {{ some_registered_var | failed }}
Success = {{ some_registered_var | success }}
Skipped = {{ some_registered_var | skipped }}

The mandatory filter fails if a variable is not defined and returns the value.
To avoid breaking this test, this variable is already defined.

a = {{ a | mandatory }}

There are various casts available

int = {{ a | int }}
bool = {{ 1 | bool }}

String quoting

quoted = {{ 'quoted' | quote }}

The fileglob module returns the list of things matching a pattern.

fileglob = {{ (output_dir + '/*') | fileglob }}

There are also various string operations that work on paths.  These do not require
files to exist and are passthrus to the python os.path functions

/etc/motd with basename = {{ '/etc/motd' | basename }}
/etc/motd with dirname  = {{ '/etc/motd' | dirname }}

TODO: realpath follows symlinks.  There isn't a test for this just now.

TODO: add tests for set theory operations like union

TODO: add tests for regex, match, and search