mirror of https://github.com/ansible/ansible.git
ansible-test - Update http-test-container (#83272)
* Disable cipher suite integration tests When the client and server both support TLS 1.3, cipher suite selection is effectively a no-op. Python provides no way to disable TLS 1.3 cipher suites, and no way to prefer user-selected cipher suites. Since TLS 1.3 includes a mandatory cipher suite, this makes it impossible to induce a cipher suite related error when using TLS 1.3. * Update multipart form-data integration test * Fix netrc integration tests * Update HTTP test host substring * ansible-test - Update http-test-containerpull/83325/head
parent
b8483adb33
commit
560d3af097
@ -0,0 +1,2 @@
|
||||
minor_changes:
|
||||
- ansible-test - Update ``http-test-container`` to version 3.0.0.
|
@ -0,0 +1,22 @@
|
||||
- vars:
|
||||
url: https://{{ httpbin_host }}/get
|
||||
block:
|
||||
- name: test good cipher
|
||||
debug:
|
||||
msg: '{{ lookup("url", url) }}'
|
||||
vars:
|
||||
ansible_lookup_url_ciphers: ECDHE-RSA-AES128-SHA256
|
||||
register: good_ciphers
|
||||
|
||||
- name: test bad cipher
|
||||
debug:
|
||||
msg: '{{ lookup("url", url) }}'
|
||||
vars:
|
||||
ansible_lookup_url_ciphers: ECDHE-ECDSA-AES128-SHA
|
||||
ignore_errors: true
|
||||
register: bad_ciphers
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- good_ciphers is successful
|
||||
- bad_ciphers is failed
|
Loading…
Reference in New Issue