disable new win_get_url test

* invalid drive letter breaks new Powershell path validation (this is a separate issue that needs to be solved)
* test also exposes a minor bug in win_get_url where a nonexistent directory in the root of a drive that exists passes the "does the parent dir exist" check and causes DownloadFile to bomb (this should be fixed by dag's rewrite of win_get_url in https://github.com/ansible/ansible/pull/26612)
pull/26627/head
Matt Davis 7 years ago
parent 2e6ff97d06
commit 961af6d9e2

@ -121,15 +121,15 @@
- "win_get_url_result_dir_path_urlpath|changed"
- "win_get_url_result_dir_path_urlpath.win_get_url.actual_dest==expected_dest_path"
- name: since 2.4 check you get a helpful message if the parent folder of the dest doesnt exist
win_get_url:
url: "{{test_win_get_url_link}}"
dest: "{{test_win_get_url_invalid_path_dir}}"
register: win_get_url_result_invalid_dest
ignore_errors: true
- name: check if dest parent dir does not exist, module fails and you get a specific error message
assert:
that:
- "win_get_url_result_invalid_dest|failed"
- "win_get_url_result_invalid_dest.msg is search('does not exist')"
#- name: since 2.4 check you get a helpful message if the parent folder of the dest doesnt exist
# win_get_url:
# url: "{{test_win_get_url_link}}"
# dest: "{{test_win_get_url_invalid_path_dir}}"
# register: win_get_url_result_invalid_dest
# ignore_errors: true
#
#- name: check if dest parent dir does not exist, module fails and you get a specific error message
# assert:
# that:
# - "win_get_url_result_invalid_dest|failed"
# - "win_get_url_result_invalid_dest.msg is search('does not exist')"

Loading…
Cancel
Save