mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
203 lines
6.5 KiB
YAML
203 lines
6.5 KiB
YAML
---
|
|
- name: create src file
|
|
win_copy:
|
|
dest: '{{ remote_http_path }}\27617.txt'
|
|
content: 'ptux'
|
|
|
|
- name: create sha1 checksum file of src
|
|
win_copy:
|
|
dest: '{{ remote_http_path }}\sha1sum.txt'
|
|
content: 'a97e6837f60cec6da4491bab387296bbcd72bdba 27617.txt'
|
|
|
|
- name: add sha1 checksum not going to be downloaded
|
|
win_lineinfile:
|
|
dest: '{{ remote_http_path }}\sha1sum.txt'
|
|
line: '{{ item }}'
|
|
loop:
|
|
- '3911340502960ca33aece01129234460bfeb2791 not_target1.txt'
|
|
- '1b4b6adf30992cedb0f6edefd6478ff0a593b2e4 not_target2.txt'
|
|
|
|
- name: create sha256 checksum file of src
|
|
win_copy:
|
|
dest: '{{ remote_http_path }}\sha256sum.txt'
|
|
content: 'b1b6ce5073c8fac263a8fc5edfffdbd5dec1980c784e09c5bc69f8fb6056f006. 27617.txt'
|
|
|
|
- name: add sha256 checksum not going to be downloaded
|
|
win_lineinfile:
|
|
dest: '{{ remote_http_path }}\sha256sum.txt'
|
|
line: '{{ item }}'
|
|
loop:
|
|
- '30949cc401e30ac494d695ab8764a9f76aae17c5d73c67f65e9b558f47eff892 not_target1.txt'
|
|
- 'd0dbfc1945bc83bf6606b770e442035f2c4e15c886ee0c22fb3901ba19900b5b not_target2.txt'
|
|
|
|
- name: create sha256 checksum file of src with a dot leading path
|
|
win_copy:
|
|
dest: '{{ remote_http_path }}\sha256sum_with_dot.txt'
|
|
content: 'b1b6ce5073c8fac263a8fc5edfffdbd5dec1980c784e09c5bc69f8fb6056f006. ./27617.txt'
|
|
|
|
- name: add sha256 checksums with dot leading path not going to be downloaded
|
|
win_lineinfile:
|
|
dest: '{{ remote_http_path }}\sha256sum_with_dot.txt'
|
|
line: '{{ item }}'
|
|
loop:
|
|
- '30949cc401e30ac494d695ab8764a9f76aae17c5d73c67f65e9b558f47eff892 ./not_target1.txt'
|
|
- 'd0dbfc1945bc83bf6606b770e442035f2c4e15c886ee0c22fb3901ba19900b5b ./not_target2.txt'
|
|
|
|
- name: copy files to ftp
|
|
win_copy:
|
|
src: '{{ remote_http_path }}\'
|
|
dest: '{{ test_win_get_url_path }}\ftp\{{ item }}\'
|
|
remote_src: yes
|
|
loop: '{{ dest_folders }}'
|
|
vars:
|
|
dest_folders:
|
|
- anon
|
|
- user
|
|
- user-pass
|
|
|
|
- name: download src with sha1 checksum url
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}'
|
|
checksum_url: 'ftp://localhost/anon/sha1sum.txt'
|
|
force: True
|
|
register: result_sha1
|
|
|
|
- name: download src with sha1 checksum value
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}'
|
|
checksum: 'a97e6837f60cec6da4491bab387296bbcd72bdba'
|
|
force: True
|
|
register: result_sha1_alt
|
|
|
|
- win_stat:
|
|
path: '{{ remote_tmp_path }}\27617.txt'
|
|
register: stat_result_sha1
|
|
|
|
- name: download src with sha256 checksum url
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}\27617sha256.txt'
|
|
checksum_url: 'ftp://localhost/anon/sha256sum.txt'
|
|
checksum_algorithm: sha256
|
|
force: True
|
|
register: result_sha256
|
|
|
|
- win_stat:
|
|
path: '{{ remote_tmp_path }}\27617.txt'
|
|
register: stat_result_sha256
|
|
|
|
- name: download src with sha256 checksum url with dot leading paths
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}\27617sha256_with_dot.txt'
|
|
checksum_url: 'ftp://localhost/anon/sha256sum_with_dot.txt'
|
|
checksum_algorithm: sha256
|
|
force: True
|
|
register: result_sha256_with_dot
|
|
|
|
- win_stat:
|
|
path: '{{ remote_tmp_path }}\27617sha256_with_dot.txt'
|
|
register: stat_result_sha256_with_dot
|
|
|
|
- name: Assert that the file was downloaded
|
|
assert:
|
|
that:
|
|
- result_sha1 is changed
|
|
- result_sha1.checksum_dest == 'a97e6837f60cec6da4491bab387296bbcd72bdba'
|
|
- result_sha1_alt is succeeded
|
|
- not result_sha1_alt is changed
|
|
- result_sha1_alt.checksum_dest == 'a97e6837f60cec6da4491bab387296bbcd72bdba'
|
|
- result_sha256 is changed
|
|
- result_sha256_with_dot is changed
|
|
- stat_result_sha1.stat.exists | bool
|
|
- stat_result_sha256.stat.exists | bool
|
|
- stat_result_sha256_with_dot.stat.exists | bool
|
|
|
|
# Check download with force: False
|
|
|
|
- name: download src with sha1 checksum url
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}'
|
|
checksum_url: 'ftp://localhost/anon/sha1sum.txt'
|
|
checksum_algorithm: sha1
|
|
force: False
|
|
register: result_sha1_no_force
|
|
|
|
- name: download src with sha256 checksum url
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}/27617sha256.txt'
|
|
checksum_url: 'ftp://localhost/anon/sha256sum.txt'
|
|
checksum_algorithm: sha256
|
|
force: False
|
|
register: result_sha256_no_force
|
|
|
|
- name: assert download single file with force no
|
|
assert:
|
|
that:
|
|
- result_sha1_no_force is not changed
|
|
- result_sha256_no_force is not changed
|
|
|
|
# Check download with check_mode: True
|
|
|
|
- name: download src with sha1 checksum url | checkmode
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}'
|
|
checksum_url: 'ftp://localhost/anon/sha1sum.txt'
|
|
checksum_algorithm: sha1
|
|
check_mode: True
|
|
register: result_sha1_check_mode
|
|
|
|
- name: download src with sha256 checksum url | checkmode
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}\27617sha256.txt'
|
|
checksum_url: 'ftp://localhost/anon/sha256sum.txt'
|
|
checksum_algorithm: sha256
|
|
check_mode: True
|
|
register: result_sha256_check_mode
|
|
|
|
- name: assert download single file with force no
|
|
assert:
|
|
that:
|
|
- result_sha1_check_mode.checksum_dest == 'a97e6837f60cec6da4491bab387296bbcd72bdba'
|
|
- result_sha256_check_mode.checksum_dest == 'b1b6ce5073c8fac263a8fc5edfffdbd5dec1980c784e09c5bc69f8fb6056f006'
|
|
- result_sha1_check_mode.checksum_src | length
|
|
- result_sha256_check_mode.checksum_src | length
|
|
|
|
# Check download with wrong checksum
|
|
|
|
- name: download src with sha1 checksum value | fail
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}'
|
|
checksum: 'redacted'
|
|
checksum_algorithm: sha1
|
|
failed_when:
|
|
- '"did not match" not in result_sha1_failed.msg'
|
|
- '"The checksum" not in result_sha1_failed.msg'
|
|
- '"Unknown error downloading" not in result_sha1_failed.msg'
|
|
register: result_sha1_failed
|
|
|
|
- name: download src with sha256 checksum value | fail
|
|
win_get_url:
|
|
url: 'ftp://localhost/anon/27617.txt'
|
|
dest: '{{ remote_tmp_path }}\27617sha256.txt'
|
|
checksum: 'redacted'
|
|
checksum_algorithm: sha256
|
|
failed_when:
|
|
- '"did not match" not in result_sha256_failed.msg'
|
|
- '"The checksum" not in result_sha256_failed.msg'
|
|
- '"Unknown error downloading" not in result_sha256_failed.msg'
|
|
register: result_sha256_failed
|
|
|
|
- name: assert failed downloads
|
|
assert:
|
|
that:
|
|
- result_sha1_failed is succeeded
|
|
- result_sha256_failed is succeeded
|