summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/check_mode/roles/test_check_mode/tasks/main.yml
blob: f926d144461daf531e215fa5fd0c6b0a72c02b2b (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
# test code for the template module
# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com>

# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible.  If not, see <http://www.gnu.org/licenses/>.

- name: fill in a basic template in check mode
  template: src=foo.j2 dest={{output_dir}}/checkmode_foo.templated mode=0644
  register: template_result

- name: check whether file exists
  stat: path={{output_dir}}/checkmode_foo.templated
  register: foo

- name: verify that the file was marked as changed in check mode
  assert: 
    that: 
      - "template_result is changed"
      - "not foo.stat.exists"

- name: Actually create the file, disable check mode
  template: src=foo.j2 dest={{output_dir}}/checkmode_foo.templated2 mode=0644
  check_mode: no
  register: checkmode_disabled

- name: fill in template with new content
  template: src=foo.j2 dest={{output_dir}}/checkmode_foo.templated2 mode=0644
  register: template_result2

- name: remove templated file
  file: path={{output_dir}}/checkmode_foo.templated2 state=absent
  check_mode: no

- name: verify that the file was not changed
  assert: 
    that: 
      - "checkmode_disabled is changed"
      - "template_result2 is not changed"