summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/unarchive/tasks/test_tar_zst.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/unarchive/tasks/test_tar_zst.yml')
-rw-r--r--test/integration/targets/unarchive/tasks/test_tar_zst.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/integration/targets/unarchive/tasks/test_tar_zst.yml b/test/integration/targets/unarchive/tasks/test_tar_zst.yml
new file mode 100644
index 0000000..18b1281
--- /dev/null
+++ b/test/integration/targets/unarchive/tasks/test_tar_zst.yml
@@ -0,0 +1,40 @@
+# Only do this whole file when the "zstd" executable is present
+- when:
+ - zstd_available.rc == 0
+ - gnu_tar.stdout != ""
+ block:
+ - name: create our tar.zst unarchive destination
+ file:
+ path: '{{remote_tmp_dir}}/test-unarchive-tar-zst'
+ state: directory
+
+ - name: unarchive a tar.zst file
+ unarchive:
+ src: '{{remote_tmp_dir}}/test-unarchive.tar.zst'
+ dest: '{{remote_tmp_dir}}/test-unarchive-tar-zst'
+ 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-zst/foo-unarchive.txt'
+ state: file
+
+ - name: remove our tar.zst unarchive destination
+ file:
+ path: '{{remote_tmp_dir}}/test-unarchive-tar-zst'
+ state: absent
+
+ - name: test owner/group perms
+ include_tasks: test_owner_group.yml
+ vars:
+ ext: tar.zst
+ archive: test-unarchive.tar.zst
+ testfile: foo-unarchive.txt