summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/unarchive/tasks/test_tar_gz.yml
blob: e88f77b6a2c60f7ea7b7f7db71b90958725954ac (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
- name: create our tar.gz unarchive destination
  file:
    path: '{{remote_tmp_dir}}/test-unarchive-tar-gz'
    state: directory

- name: unarchive a tar.gz file
  unarchive:
    src: '{{remote_tmp_dir}}/test-unarchive.tar.gz'
    dest: '{{remote_tmp_dir}}/test-unarchive-tar-gz'
    remote_src: yes
  register: unarchive02

- name: verify that the file was marked as changed
  assert:
    that:
      - "unarchive02.changed == true"
      # Verify that no file list is generated
      - "'files' not in unarchive02"

- name: verify that the file was unarchived
  file:
    path: '{{remote_tmp_dir}}/test-unarchive-tar-gz/foo-unarchive.txt'
    state: file

- name: remove our tar.gz unarchive destination
  file:
    path: '{{remote_tmp_dir}}/test-unarchive-tar-gz'
    state: absent

- name: test owner/group perms
  include_tasks: test_owner_group.yml
  vars:
    ext: tar.gz
    archive: test-unarchive.tar.gz
    testfile: foo-unarchive.txt