summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/copy/tasks/no_log.yml
blob: 980c31778deda4dc03cab4ee1cb186e74298abbd (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
- block:

    - set_fact:
        dest: "{{ local_temp_dir }}/test_no_log"

    - name: ensure playbook and dest files don't exist yet
      file:
        path: "{{ item }}"
        state: absent
      loop:
        - "{{ local_temp_dir }}/test_no_log.yml"
        - "{{ dest }}"

    - name: create a playbook to run with command
      copy:
        dest: "{{local_temp_dir}}/test_no_log.yml"
        content: !unsafe |
          ---
          - hosts: localhost
            gather_facts: no
            tasks:
            - copy:
                dest: "{{ dest }}"
                content: "{{ secret }}"

    - name: copy the secret while using -vvv and check mode
      command: "ansible-playbook {{local_temp_dir}}/test_no_log.yml -vvv -e secret=SECRET -e dest={{dest}} --check"
      register: result

    - assert:
        that:
          - "'SECRET' not in result.stdout"

    - name: copy the secret while using -vvv
      command: "ansible-playbook {{local_temp_dir}}/test_no_log.yml -vvv -e secret=SECRET -e dest={{dest}}"
      register: result

    - assert:
        that:
          - "'SECRET' not in result.stdout"

    - name: copy the secret while using -vvv and check mode again
      command: "ansible-playbook {{local_temp_dir}}/test_no_log.yml -vvv -e secret=SECRET -e dest={{dest}} --check"
      register: result

    - assert:
        that:
          - "'SECRET' not in result.stdout"

    - name: copy the secret while using -vvv again
      command: "ansible-playbook {{local_temp_dir}}/test_no_log.yml -vvv -e secret=SECRET -e dest={{dest}}"
      register: result

    - assert:
        that:
          - "'SECRET' not in result.stdout"

    - name: copy a new secret while using -vvv and check mode
      command: "ansible-playbook {{local_temp_dir}}/test_no_log.yml -vvv -e secret=NEWSECRET -e dest={{dest}} --check"
      register: result

    - assert:
        that:
          - "'NEWSECRET' not in result.stdout"

    - name: copy a new secret while using -vvv
      command: "ansible-playbook {{local_temp_dir}}/test_no_log.yml -vvv -e secret=NEWSECRET -e dest={{dest}}"
      register: result

    - assert:
        that:
          - "'NEWSECRET' not in result.stdout"

  always:

    - name: remove temp test files
      file:
        path: "{{ item }}"
        state: absent
      loop:
        - "{{ local_temp_dir }}/test_no_log.yml"
        - "{{ dest }}"