mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
(cherry picked from commit be433d762b
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
7be95c8bbe
commit
30e707aa79
4 changed files with 101 additions and 0 deletions
7
tests/integration/targets/pacman/aliases
Normal file
7
tests/integration/targets/pacman/aliases
Normal file
|
@ -0,0 +1,7 @@
|
|||
destructive
|
||||
shippable/posix/group1
|
||||
skip/aix
|
||||
skip/freebsd
|
||||
skip/osx
|
||||
skip/macos
|
||||
skip/rhel
|
2
tests/integration/targets/pacman/meta/main.yml
Normal file
2
tests/integration/targets/pacman/meta/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
dependencies:
|
||||
- setup_remote_tmp_dir
|
82
tests/integration/targets/pacman/tasks/basic.yml
Normal file
82
tests/integration/targets/pacman/tasks/basic.yml
Normal file
|
@ -0,0 +1,82 @@
|
|||
---
|
||||
- vars:
|
||||
package_name: unarj
|
||||
block:
|
||||
- name: Make sure that {{ package_name }} is not installed
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: absent
|
||||
|
||||
- name: Install {{ package_name }} (check mode)
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: present
|
||||
check_mode: true
|
||||
register: install_1
|
||||
|
||||
- name: Install {{ package_name }}
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: present
|
||||
register: install_2
|
||||
|
||||
- name: Install {{ package_name }} (check mode, idempotent)
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: present
|
||||
check_mode: true
|
||||
register: install_3
|
||||
|
||||
- name: Install {{ package_name }} (idempotent)
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: present
|
||||
register: install_4
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- install_1 is changed
|
||||
- install_1.msg == 'Would have installed 1 packages'
|
||||
- install_2 is changed
|
||||
- install_2.msg == 'Installed 1 package(s)'
|
||||
- install_3 is not changed
|
||||
- install_3.msg == 'package(s) already installed'
|
||||
- install_4 is not changed
|
||||
- install_4.msg == 'package(s) already installed'
|
||||
|
||||
- name: Uninstall {{ package_name }} (check mode)
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: absent
|
||||
check_mode: true
|
||||
register: uninstall_1
|
||||
|
||||
- name: Uninstall {{ package_name }}
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: absent
|
||||
register: uninstall_2
|
||||
|
||||
- name: Uninstall {{ package_name }} (check mode, idempotent)
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: absent
|
||||
check_mode: true
|
||||
register: uninstall_3
|
||||
|
||||
- name: Uninstall {{ package_name }} (idempotent)
|
||||
pacman:
|
||||
name: '{{ package_name }}'
|
||||
state: absent
|
||||
register: uninstall_4
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- uninstall_1 is changed
|
||||
- uninstall_1.msg == 'Would have removed 1 packages'
|
||||
- uninstall_2 is changed
|
||||
- uninstall_2.msg == 'Removed 1 package(s)'
|
||||
- uninstall_3 is not changed
|
||||
- uninstall_3.msg == 'package(s) already absent'
|
||||
- uninstall_4 is not changed
|
||||
- uninstall_4.msg == 'package(s) already absent'
|
10
tests/integration/targets/pacman/tasks/main.yml
Normal file
10
tests/integration/targets/pacman/tasks/main.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
####################################################################
|
||||
# WARNING: These are designed specifically for Ansible tests #
|
||||
# and should not be used as examples of how to write Ansible roles #
|
||||
####################################################################
|
||||
|
||||
- when: ansible_os_family == 'Archlinux'
|
||||
block:
|
||||
# Add more tests here by including more task files:
|
||||
- include: 'basic.yml'
|
Loading…
Reference in a new issue