summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/remote_tmp/playbook.yml
blob: 5adef62690a7f06b196f3cfa05dd20468a51e1c5 (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
- name: Test temp dir on de escalation
  hosts: testhost
  become: yes
  tasks:
    - name: create test user
      user:
        name: tmptest
        state: present
        group: '{{ "staff" if ansible_facts.distribution == "MacOSX" else omit }}'

    - name: execute test case
      become_user: tmptest
      block:
        - name: Test case from issue 41340
          blockinfile:
              create: yes
              block: |
                export foo=bar
              marker: "# {mark} Here there be a marker"
              dest: /tmp/testing.txt
              mode: 0644
      always:
        - name: clean up file
          file: path=/tmp/testing.txt state=absent

        - name: clean up test user
          user: name=tmptest state=absent
          become_user: root

- name: Test tempdir is removed
  hosts: testhost
  gather_facts: false
  tasks:
    - import_role:
        name: ../setup_remote_tmp_dir

    - file:
        state: touch
        path: "{{ remote_tmp_dir }}/65393"

    - copy:
        src: "{{ remote_tmp_dir }}/65393"
        dest: "{{ remote_tmp_dir }}/65393.2"
        remote_src: true

    - find:
        path: "~/.ansible/tmp"
        use_regex: yes
        patterns: 'AnsiballZ_.+\.py'
        recurse: true
      register: result

    - debug:
        var: result

    - assert:
        that:
          # Should find nothing since pipelining is used
          - result.files|length == 0