kennetreitz.org times out but www.kennethreitz.org is fine

This commit is contained in:
Toshio Kuratomi 2015-12-17 11:46:26 -08:00
parent 0c6364c771
commit dca880d04a
2 changed files with 5 additions and 5 deletions

View file

@ -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"

View file

@ -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