Merge pull request #6146 from jlaska/test_synchronize
Correct assert and add with_items test
This commit is contained in:
commit
0a83f743c1
2 changed files with 26 additions and 7 deletions
1
test/integration/roles/test_synchronize/files/bar.txt
Normal file
1
test/integration/roles/test_synchronize/files/bar.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
templated_var_loaded
|
|
@ -20,15 +20,16 @@
|
||||||
- name: cleanup old files
|
- name: cleanup old files
|
||||||
shell: rm -rf {{output_dir}}/*
|
shell: rm -rf {{output_dir}}/*
|
||||||
|
|
||||||
- name: make a new file
|
- name: create test new files
|
||||||
copy: dest={{output_dir}}/foo.txt mode=0644 content="hello world"
|
copy: dest={{output_dir}}/{{item}} mode=0644 content="hello world"
|
||||||
|
with_items:
|
||||||
|
- foo.txt
|
||||||
|
- bar.txt
|
||||||
|
|
||||||
- name: synchronize file to new filename
|
- name: synchronize file to new filename
|
||||||
synchronize: src={{output_dir}}/foo.txt dest={{output_dir}}/foo.result
|
synchronize: src={{output_dir}}/foo.txt dest={{output_dir}}/foo.result
|
||||||
register: sync_result
|
register: sync_result
|
||||||
|
|
||||||
- debug: var=sync_result
|
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "'changed' in sync_result"
|
- "'changed' in sync_result"
|
||||||
|
@ -36,5 +37,22 @@
|
||||||
- "'cmd' in sync_result"
|
- "'cmd' in sync_result"
|
||||||
- "'rsync' in sync_result.cmd"
|
- "'rsync' in sync_result.cmd"
|
||||||
- "'msg' in sync_result"
|
- "'msg' in sync_result"
|
||||||
- "sync_result.msg == '>f+++++++++ foo.txt\n'"
|
- "sync_result.msg.startswith('>f+')"
|
||||||
|
- "sync_result.msg.endswith('+ foo.txt\n')"
|
||||||
|
|
||||||
|
- name: synchronize files using with_items (issue#5965)
|
||||||
|
synchronize: src={{output_dir}}/{{item}} dest={{output_dir}}/{{item}}.result
|
||||||
|
with_items:
|
||||||
|
- foo.txt
|
||||||
|
- bar.txt
|
||||||
|
register: sync_result
|
||||||
|
|
||||||
|
- debug: var=sync_result
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "sync_result.changed"
|
||||||
|
- "sync_result.msg == 'All items completed'"
|
||||||
|
- "'results' in sync_result"
|
||||||
|
- "sync_result.results|length == 2"
|
||||||
|
- "sync_result.results[0].msg.endswith('+ foo.txt\n')"
|
||||||
|
- "sync_result.results[1].msg.endswith('+ bar.txt\n')"
|
||||||
|
|
Loading…
Reference in a new issue