Add some additional integration tests that mix SSL verification and redirects
This commit is contained in:
parent
97e0f29a5b
commit
3e9408e317
1 changed files with 22 additions and 0 deletions
|
@ -153,6 +153,28 @@
|
|||
that:
|
||||
- 'result.location|default("") == "http://httpbin.org/relative-redirect/1"'
|
||||
|
||||
- name: Check SSL with redirect
|
||||
uri:
|
||||
url: 'https://httpbin.org/redirect/2'
|
||||
register: result
|
||||
|
||||
- name: Assert SSL with redirect
|
||||
assert:
|
||||
that:
|
||||
- 'result.url|default("") == "https://httpbin.org/get"'
|
||||
|
||||
- name: redirect to bad SSL site
|
||||
uri:
|
||||
url: 'http://wrong.host.badssl.com'
|
||||
register: result
|
||||
ignore_errors: true
|
||||
|
||||
- name: Ensure bad SSL site reidrect fails
|
||||
assert:
|
||||
that:
|
||||
- result|failed
|
||||
- '"wrong.host.badssl.com" in result.msg'
|
||||
|
||||
- name: test basic auth
|
||||
uri:
|
||||
url: 'http://httpbin.org/basic-auth/user/passwd'
|
||||
|
|
Loading…
Reference in a new issue