Update the tests to work with new httptester container (#72013)

This commit is contained in:
Jordan Borean 2020-10-01 06:38:44 +10:00 committed by GitHub
parent 9081b22868
commit 09c2475368
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 11 deletions

View file

@ -254,9 +254,9 @@
# https://github.com/ansible/ansible/issues/29614
- name: Change mode on an already downloaded file and specify checksum
get_url:
url: 'https://{{ httpbin_host }}/get'
url: 'https://{{ httpbin_host }}/base64/cHR1eA=='
dest: '{{ remote_tmp_dir }}/test'
checksum: 'sha256:7036ede810fad2b5d2e7547ec703cae8da61edbba43c23f9d7203a0239b765c4.'
checksum: 'sha256:b1b6ce5073c8fac263a8fc5edfffdbd5dec1980c784e09c5bc69f8fb6056f006.'
mode: '0775'
register: result
@ -272,9 +272,9 @@
- name: test checksum match in check mode
get_url:
url: 'https://{{ httpbin_host }}/get'
url: 'https://{{ httpbin_host }}/base64/cHR1eA=='
dest: '{{ remote_tmp_dir }}/test'
checksum: 'sha256:7036ede810fad2b5d2e7547ec703cae8da61edbba43c23f9d7203a0239b765c4.'
checksum: 'sha256:b1b6ce5073c8fac263a8fc5edfffdbd5dec1980c784e09c5bc69f8fb6056f006.'
check_mode: True
register: result

View file

@ -249,7 +249,7 @@
- http_308_head is failure
- http_308_head.json is not defined
- http_308_head.location == 'https://{{ httpbin_host }}/anything'
- "http_308_head.msg == 'Status code was 308 and not [200]: HTTP Error 308: UNKNOWN'"
- "'Status code was 308 and not [200]: HTTP Error 308: ' in http_308_head.msg"
- http_308_head.redirected == false
- http_308_head.status == 308
- http_308_head.url == 'https://{{ httpbin_host }}/redirect-to?status_code=308&url=https://{{ httpbin_host }}/anything'
@ -269,7 +269,7 @@
- http_308_get is failure
- http_308_get.json is not defined
- http_308_get.location == 'https://{{ httpbin_host }}/anything'
- "http_308_get.msg == 'Status code was 308 and not [200]: HTTP Error 308: UNKNOWN'"
- "'Status code was 308 and not [200]: HTTP Error 308: ' in http_308_get.msg"
- http_308_get.redirected == false
- http_308_get.status == 308
- http_308_get.url == 'https://{{ httpbin_host }}/redirect-to?status_code=308&url=https://{{ httpbin_host }}/anything'
@ -290,7 +290,7 @@
- http_308_post is failure
- http_308_post.json is not defined
- http_308_post.location == 'https://{{ httpbin_host }}/anything'
- "http_308_post.msg == 'Status code was 308 and not [200]: HTTP Error 308: UNKNOWN'"
- "'Status code was 308 and not [200]: HTTP Error 308: ' in http_308_post.msg"
- http_308_post.redirected == false
- http_308_post.status == 308
- http_308_post.url == 'https://{{ httpbin_host }}/redirect-to?status_code=308&url=https://{{ httpbin_host }}/anything'

View file

@ -268,7 +268,7 @@
- http_308_post is failure
- http_308_post.json is not defined
- http_308_post.location == 'https://{{ httpbin_host }}/anything'
- "http_308_post.msg == 'Status code was 308 and not [200]: HTTP Error 308: UNKNOWN'"
- "'Status code was 308 and not [200]: HTTP Error 308: ' in http_308_post.msg"
- http_308_post.redirected == false
- http_308_post.status == 308
- http_308_post.url == 'https://{{ httpbin_host }}/redirect-to?status_code=308&url=https://{{ httpbin_host }}/anything'

View file

@ -246,7 +246,7 @@
- http_308_head is failure
- http_308_head.json is not defined
- http_308_head.location == 'https://{{ httpbin_host }}/anything'
- "http_308_head.msg == 'Status code was 308 and not [200]: HTTP Error 308: UNKNOWN'"
- "'Status code was 308 and not [200]: HTTP Error 308: ' in http_308_head.msg"
- http_308_head.redirected == false
- http_308_head.status == 308
- http_308_head.url == 'https://{{ httpbin_host }}/redirect-to?status_code=308&url=https://{{ httpbin_host }}/anything'
@ -266,7 +266,7 @@
- http_308_get is failure
- http_308_get.json is not defined
- http_308_get.location == 'https://{{ httpbin_host }}/anything'
- "http_308_get.msg == 'Status code was 308 and not [200]: HTTP Error 308: UNKNOWN'"
- "'Status code was 308 and not [200]: HTTP Error 308: ' in http_308_get.msg"
- http_308_get.redirected == false
- http_308_get.status == 308
- http_308_get.url == 'https://{{ httpbin_host }}/redirect-to?status_code=308&url=https://{{ httpbin_host }}/anything'
@ -288,7 +288,7 @@
- http_308_post is failure
- http_308_post.json is not defined
- http_308_post.location == 'https://{{ httpbin_host }}/anything'
- "http_308_post.msg == 'Status code was 308 and not [200]: HTTP Error 308: UNKNOWN'"
- "'Status code was 308 and not [200]: HTTP Error 308: ' in http_308_post.msg"
- http_308_post.redirected == false
- http_308_post.status == 308
- http_308_post.url == 'https://{{ httpbin_host }}/redirect-to?status_code=308&url=https://{{ httpbin_host }}/anything'