2022-08-07 13:37:23 +02:00
|
|
|
---
|
2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
# Test code for the archive module.
|
2022-08-07 13:37:23 +02:00
|
|
|
# Copyright (c) 2017, Abhijeet Kasurde <akasurde@redhat.com>
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
# Make sure we start fresh
|
|
|
|
|
2021-07-10 12:58:30 +02:00
|
|
|
# Test setup
|
2020-03-09 10:11:07 +01:00
|
|
|
- name: Ensure zip is present to create test archive (yum)
|
|
|
|
yum: name=zip state=latest
|
2020-03-30 11:06:48 +02:00
|
|
|
when: ansible_facts.pkg_mgr == 'yum'
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: Ensure zip is present to create test archive (apt)
|
|
|
|
apt: name=zip state=latest
|
2020-03-30 11:06:48 +02:00
|
|
|
when: ansible_facts.pkg_mgr == 'apt'
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: Install prerequisites for backports.lzma when using python2 (non OSX)
|
|
|
|
block:
|
|
|
|
- name: Set liblzma package name depending on the OS
|
|
|
|
set_fact:
|
|
|
|
liblzma_dev_package:
|
|
|
|
Debian: liblzma-dev
|
|
|
|
RedHat: xz-devel
|
|
|
|
Suse: xz-devel
|
|
|
|
- name: Ensure liblzma-dev is present to install backports-lzma
|
|
|
|
package: name={{ liblzma_dev_package[ansible_os_family] }} state=latest
|
|
|
|
when: ansible_os_family in liblzma_dev_package.keys()
|
|
|
|
when:
|
|
|
|
- ansible_python_version.split('.')[0] == '2'
|
|
|
|
- ansible_os_family != 'Darwin'
|
|
|
|
|
|
|
|
- name: Install prerequisites for backports.lzma when using python2 (OSX)
|
|
|
|
block:
|
|
|
|
- name: Find brew binary
|
|
|
|
command: which brew
|
|
|
|
register: brew_which
|
|
|
|
- name: Get owner of brew binary
|
|
|
|
stat: path="{{ brew_which.stdout }}"
|
|
|
|
register: brew_stat
|
|
|
|
- name: "Install package"
|
|
|
|
homebrew:
|
|
|
|
name: xz
|
|
|
|
state: present
|
|
|
|
update_homebrew: no
|
|
|
|
become: yes
|
|
|
|
become_user: "{{ brew_stat.stat.pw_name }}"
|
|
|
|
# Newer versions of brew want to compile a package which takes a long time. Do not upgrade homebrew until a
|
|
|
|
# proper solution can be found
|
|
|
|
environment:
|
|
|
|
HOMEBREW_NO_AUTO_UPDATE: True
|
|
|
|
when:
|
|
|
|
- ansible_python_version.split('.')[0] == '2'
|
|
|
|
- ansible_os_family == 'Darwin'
|
|
|
|
|
|
|
|
- name: Ensure backports.lzma is present to create test archive (pip)
|
|
|
|
pip: name=backports.lzma state=latest
|
|
|
|
when: ansible_python_version.split('.')[0] == '2'
|
|
|
|
register: backports_lzma_pip
|
|
|
|
|
|
|
|
- name: prep our files
|
2021-09-09 07:31:44 +02:00
|
|
|
copy: src={{ item }} dest={{remote_tmp_dir}}/{{ item }}
|
2020-03-09 10:11:07 +01:00
|
|
|
with_items:
|
|
|
|
- foo.txt
|
|
|
|
- bar.txt
|
|
|
|
- empty.txt
|
2021-06-24 13:33:10 +02:00
|
|
|
- sub
|
|
|
|
- sub/subfile.txt
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2021-07-10 12:58:30 +02:00
|
|
|
- name: Define formats to test
|
|
|
|
set_fact:
|
|
|
|
formats:
|
|
|
|
- tar
|
|
|
|
- zip
|
|
|
|
- gz
|
|
|
|
- bz2
|
|
|
|
- xz
|
|
|
|
|
|
|
|
# Run tests
|
|
|
|
- name: Run core tests
|
|
|
|
include_tasks:
|
|
|
|
file: ../tests/core.yml
|
|
|
|
loop: "{{ formats }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: format
|
|
|
|
|
|
|
|
- name: Run exclusions tests
|
|
|
|
include_tasks:
|
|
|
|
file: ../tests/exclusions.yml
|
|
|
|
loop: "{{ formats }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: format
|
|
|
|
|
|
|
|
- name: Run remove tests
|
|
|
|
include_tasks:
|
|
|
|
file: ../tests/remove.yml
|
|
|
|
loop: "{{ formats }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: format
|
|
|
|
|
|
|
|
- name: Run broken link tests
|
|
|
|
include_tasks:
|
|
|
|
file: ../tests/broken-link.yml
|
|
|
|
loop: "{{ formats }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: format
|
|
|
|
|
2021-07-19 08:14:23 +02:00
|
|
|
- name: Run Idempotency tests
|
|
|
|
include_tasks:
|
|
|
|
file: ../tests/idempotency.yml
|
|
|
|
loop: "{{ formats }}"
|
|
|
|
loop_control:
|
|
|
|
loop_var: format
|
|
|
|
|
2021-07-10 12:58:30 +02:00
|
|
|
# Test cleanup
|
2020-03-09 10:11:07 +01:00
|
|
|
- name: Remove backports.lzma if previously installed (pip)
|
|
|
|
pip: name=backports.lzma state=absent
|
|
|
|
when: backports_lzma_pip is changed
|