Integration tests for zypper repository

pull/15004/head
Guido Günther 8 years ago
parent de306eb5da
commit 2095d1ab33

@ -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,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…
Cancel
Save