Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent premature variable substitution in tasks #2623

Merged
merged 1 commit into from
Apr 13, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/ansible/playbook/play.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ def __init__(self, playbook, ds, basedir):

self._update_vars_files_for_host(None)

self._ds = ds = template.template(basedir, ds, self.vars)
for key in ds:
if key != 'tasks':
ds[key] = template.template(basedir, ds[key], self.vars)

self._ds = ds

hosts = ds.get('hosts')
if hosts is None:
Expand Down
28 changes: 28 additions & 0 deletions test/TestPlayBook.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,3 +257,31 @@ def test_yaml_hosts_list(self):
play = ansible.playbook.Play(playbook, playbook.playbook[0], os.getcwd())
assert play.hosts == ';'.join(('host1', 'host2', 'host3'))

def test_playbook_when(self):
test_callbacks = TestCallbacks()
playbook = ansible.playbook.PlayBook(
playbook=os.path.join(self.test_dir, 'playbook-when.yml'),
host_list='test/ansible_hosts',
extra_vars={ 'external' : 'xyz', 'identity': 'identity' },
stats=ans_callbacks.AggregateStats(),
callbacks=test_callbacks,
runner_callbacks=test_callbacks
)
actual = playbook.run()

# if different, this will output to screen
print "**ACTUAL**"
print utils.jsonify(actual, format=True)
expected = {
"localhost": {
"changed": 0,
"failures": 0,
"ok": 3,
"skipped": 3,
"unreachable": 0
}
}
print "**EXPECTED**"
print utils.jsonify(expected, format=True)

assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
27 changes: 27 additions & 0 deletions test/playbook-when.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
- hosts: all
connection: local
gather_facts: False

vars:
internal: "print me"

tasks:
- action: debug msg="skip me"
when_unset: $internal

- action: debug msg="$internal"
when_set: $internal

- action: debug msg="skip me"
when_unset: $external

- action: debug msg="$external"
when_set: $external

- action: debug msg="run me"
when_unset: $this_var_does_not_exist

- action: debug msg="skip me"
when_set: $this_var_does_not_exist