mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 20:01:25 -07: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
|
- name: Test that retrieving a url with invalid cert fails
|
||||||
set_fact:
|
set_fact:
|
||||||
web_data: "{{ lookup('url', 'https://kennethreitz.org/') }}"
|
web_data: "{{ lookup('url', 'https://www.kennethreitz.org/') }}"
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
register: url_invalid_cert
|
register: url_invalid_cert
|
||||||
|
|
||||||
|
@ -188,9 +188,9 @@
|
||||||
|
|
||||||
- name: Test that retrieving a url with invalid cert with validate_certs=False works
|
- name: Test that retrieving a url with invalid cert with validate_certs=False works
|
||||||
set_fact:
|
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
|
register: url_no_validate_cert
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
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
|
- name: test https fetch to a site with mismatched hostname and certificate
|
||||||
uri:
|
uri:
|
||||||
url: "https://kennethreitz.org/"
|
url: "https://www.kennethreitz.org/"
|
||||||
dest: "{{ output_dir }}/shouldnotexist.html"
|
dest: "{{ output_dir }}/shouldnotexist.html"
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
register: result
|
register: result
|
||||||
|
@ -117,7 +117,7 @@
|
||||||
|
|
||||||
- name: test https fetch to a site with mismatched hostname and certificate and validate_certs=no
|
- name: test https fetch to a site with mismatched hostname and certificate and validate_certs=no
|
||||||
get_url:
|
get_url:
|
||||||
url: "https://kennethreitz.org/"
|
url: "https://www.kennethreitz.org/"
|
||||||
dest: "{{ output_dir }}/kreitz.html"
|
dest: "{{ output_dir }}/kreitz.html"
|
||||||
validate_certs: no
|
validate_certs: no
|
||||||
register: result
|
register: result
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue