summaryrefslogtreecommitdiff
path: root/test/integration/targets/openssl_csr/tasks/main.yml
blob: e3cc0efb9a434d9fa98c7247c05a4ced53ebdf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
- name: Prepare private key for backend autodetection test
  openssl_privatekey:
    path: '{{ output_dir }}/privatekey_backend_selection.pem'
- name: Run module with backend autodetection
  openssl_csr:
    path: '{{ output_dir }}/csr_backend_selection.csr'
    privatekey_path: '{{ output_dir }}/privatekey_backend_selection.pem'
    subject:
      commonName: www.ansible.com

- block:
  - name: Running tests with pyOpenSSL backend
    include_tasks: impl.yml
    vars:
      select_crypto_backend: pyopenssl

  - import_tasks: ../tests/validate.yml
    vars:
      select_crypto_backend: pyopenssl

  when: pyopenssl_version.stdout is version('0.15', '>=')

- name: Remove output directory
  file:
    path: "{{ output_dir }}"
    state: absent

- name: Re-create output directory
  file:
    path: "{{ output_dir }}"
    state: directory

- block:
  - name: Running tests with cryptography backend
    include_tasks: impl.yml
    vars:
      select_crypto_backend: cryptography

  - import_tasks: ../tests/validate.yml
    vars:
      select_crypto_backend: cryptography

  when: cryptography_version.stdout is version('1.3', '>=')