mirror of https://github.com/ansible/ansible.git
Merge pull request #15004 from agx/zypper-repository-integration-tests
Integration tests for zypper repositorypull/15058/merge
commit
9c6b49fd3d
@ -0,0 +1,2 @@
|
||||
dependencies:
|
||||
- prepare_tests
|
@ -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 New Issue