2b28beb1d7
* add check_mode option for tasks includes example testcases for the template module * extend check_mode option * replace always_run, see also proposal rename_always_run * rename always_run where used and add deprecation warning * add some documentation * have check_mode overwrite always_run * use unique template name to prevent conflicts test_check_mode was right before, but failed due to using the same filename as other roles * still mention always_run in the docs * set deprecation of always_run to version 2.4 * fix rst style * expand documentation on per-task check mode
46 lines
1.6 KiB
YAML
46 lines
1.6 KiB
YAML
# 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|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: verify that the file was not changed
|
|
assert:
|
|
that:
|
|
- "checkmode_disabled|changed"
|
|
- "not template_result2|changed"
|