mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
kennetreitz.org times out but www.kennethreitz.org is fine
This commit is contained in:
parent
bad1c173b8
commit
8c6f56f982
2 changed files with 5 additions and 5 deletions
|
@ -177,7 +177,7 @@
|
|||
|
||||
- name: Test that retrieving a url with invalid cert fails
|
||||
set_fact:
|
||||
web_data: "{{ lookup('url', 'https://kennethreitz.org/') }}"
|
||||
web_data: "{{ lookup('url', 'https://www.kennethreitz.org/') }}"
|
||||
ignore_errors: True
|
||||
register: url_invalid_cert
|
||||
|
||||
|
@ -188,9 +188,9 @@
|
|||
|
||||
- name: Test that retrieving a url with invalid cert with validate_certs=False works
|
||||
set_fact:
|
||||
web_data: "{{ lookup('url', 'https://kennethreitz.org/', validate_certs=False) }}"
|
||||
web_data: "{{ lookup('url', 'https://www.kennethreitz.org/', validate_certs=False) }}"
|
||||
register: url_no_validate_cert
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "'kennethreitz.org' in web_data"
|
||||
- "'www.kennethreitz.org' in web_data"
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
|
||||
- name: test https fetch to a site with mismatched hostname and certificate
|
||||
uri:
|
||||
url: "https://kennethreitz.org/"
|
||||
url: "https://www.kennethreitz.org/"
|
||||
dest: "{{ output_dir }}/shouldnotexist.html"
|
||||
ignore_errors: True
|
||||
register: result
|
||||
|
@ -117,7 +117,7 @@
|
|||
|
||||
- name: test https fetch to a site with mismatched hostname and certificate and validate_certs=no
|
||||
get_url:
|
||||
url: "https://kennethreitz.org/"
|
||||
url: "https://www.kennethreitz.org/"
|
||||
dest: "{{ output_dir }}/kreitz.html"
|
||||
validate_certs: no
|
||||
register: result
|
||||
|
|
Loading…
Reference in a new issue