mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #15004 from agx/zypper-repository-integration-tests
Integration tests for zypper repository
This commit is contained in:
commit
9c6b49fd3d
4 changed files with 68 additions and 0 deletions
|
@ -19,3 +19,4 @@
|
|||
- { role: test_mysql_variables, tags: test_mysql_variables}
|
||||
- { role: test_docker, tags: test_docker, when: ansible_distribution != "Fedora" }
|
||||
- { role: test_zypper, tags: test_zypper}
|
||||
- { role: test_zypper_repository, tags: test_zypper_repository}
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
dependencies:
|
||||
- prepare_tests
|
22
test/integration/roles/test_zypper_repository/tasks/main.yml
Normal file
22
test/integration/roles/test_zypper_repository/tasks/main.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
# test code for the zypper repository module
|
||||
#
|
||||
# (c) 2016, Guido Günther <agx@sigxcpu.org>
|
||||
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
- include: 'zypper_repository.yml'
|
||||
when: ansible_distribution in ['SLES', 'openSUSE']
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
- name: Delete
|
||||
zypper_repository:
|
||||
name: test
|
||||
state: absent
|
||||
register: zypper_result
|
||||
|
||||
- name: Add repo
|
||||
zypper_repository:
|
||||
name: test
|
||||
state: present
|
||||
repo: http://dl.google.com/linux/chrome/rpm/stable/x86_64
|
||||
register: zypper_result
|
||||
|
||||
- debug: var=zypper_result
|
||||
|
||||
- name: verify repo addition
|
||||
assert:
|
||||
that:
|
||||
- "zypper_result.changed"
|
||||
|
||||
- name: Add repo again
|
||||
zypper_repository:
|
||||
name: test
|
||||
state: present
|
||||
repo: http://dl.google.com/linux/chrome/rpm/stable/x86_64
|
||||
register: zypper_result
|
||||
|
||||
- name: verify no change on second install
|
||||
assert:
|
||||
that:
|
||||
- "not zypper_result.changed"
|
||||
|
||||
- name: Change repo URL
|
||||
zypper_repository:
|
||||
name: test
|
||||
state: present
|
||||
repo: http://download.videolan.org/pub/vlc/SuSE/Leap_42.1/
|
||||
register: zypper_result
|
||||
|
||||
- name: Verify change on URL only change
|
||||
assert:
|
||||
that:
|
||||
- "zypper_result.changed"
|
Loading…
Reference in a new issue