Copy tests: check the result of non-changing copy

This commit is contained in:
Tomasz Kontusz 2018-02-04 12:30:52 +01:00 committed by Toshio Kuratomi
parent 7d1eb88ecf
commit d73c3abb15

View file

@ -37,6 +37,7 @@
- set_fact:
remote_dir_expanded: '{{ echo.stdout }}'
remote_file_expanded: '{{ echo.stdout }}/foo.txt'
- debug:
var: copy_result
@ -46,7 +47,7 @@
assert:
that:
- "'changed' in copy_result"
- "'dest' in copy_result"
- copy_result.dest == remote_file_expanded
- "'group' in copy_result"
- "'gid' in copy_result"
- "'md5sum' in copy_result"
@ -111,6 +112,19 @@
that:
- "copy_result2 is not changed"
- name: Assert basic copy worked
assert:
that:
- "'changed' in copy_result2"
- copy_result2.dest == remote_file_expanded
- "'group' in copy_result2"
- "'gid' in copy_result2"
- "'checksum' in copy_result2"
- "'owner' in copy_result2"
- "'size' in copy_result2"
- "'state' in copy_result2"
- "'uid' in copy_result2"
- name: Overwrite the file using the content system
copy:
content: "modified"