2019-03-30 14:28:10 +01:00
|
|
|
---
|
2019-10-04 21:53:04 +02:00
|
|
|
# The tests for this module generate unsafe parameters for testing purposes;
|
|
|
|
# otherwise tests would be too slow. Use sizes of at least 2048 in production!
|
2018-01-26 09:08:29 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
- name: Run module with backend autodetection
|
|
|
|
openssl_dhparam:
|
|
|
|
path: '{{ output_dir }}/dh_backend_selection.pem'
|
|
|
|
size: 512
|
2018-01-26 09:08:29 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
- block:
|
|
|
|
- name: Running tests with OpenSSL backend
|
|
|
|
include_tasks: impl.yml
|
2018-01-26 09:08:29 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
- include_tasks: ../tests/validate.yml
|
2018-01-26 09:08:29 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
vars:
|
|
|
|
select_crypto_backend: openssl
|
|
|
|
# when: openssl_version.stdout is version('1.0.0', '>=')
|
2018-01-26 09:08:29 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
- name: Remove output directory
|
|
|
|
file:
|
|
|
|
path: "{{ output_dir }}"
|
|
|
|
state: absent
|
2018-01-26 09:08:29 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
- name: Re-create output directory
|
|
|
|
file:
|
|
|
|
path: "{{ output_dir }}"
|
|
|
|
state: directory
|
2018-01-26 09:08:29 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
- block:
|
|
|
|
- name: Running tests with cryptography backend
|
|
|
|
include_tasks: impl.yml
|
2019-03-30 14:28:10 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
- include_tasks: ../tests/validate.yml
|
2019-03-30 15:38:43 +01:00
|
|
|
|
2019-10-04 21:53:04 +02:00
|
|
|
vars:
|
|
|
|
select_crypto_backend: cryptography
|
|
|
|
when: cryptography_version.stdout is version('2.0', '>=')
|