mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
Ucsm WWNN/WWPN pools (#34017)
* vhba template and integration test * SAN Connectivity Policies and integration test * VSANs and integration tests * WWNN/WWPN Pools and integration test * WWNN/WWPN Pools and integration test * option description spelled out (aliased to descr) removed docs for list of dictionaries syntax follow ACI indent style state absent only requires dn name match (not full prop match)
This commit is contained in:
parent
027f8dcafd
commit
58239671c0
3 changed files with 359 additions and 0 deletions
6
test/integration/targets/ucs_wwn_pool/aliases
Normal file
6
test/integration/targets/ucs_wwn_pool/aliases
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Not enabled, but can be used with the UCS Platform Emulator or UCS hardware.
|
||||
# Example integration_config.yml:
|
||||
# ---
|
||||
# ucs_hostname: 172.16.143.136
|
||||
# ucs_username: admin
|
||||
# ucs_password: password
|
129
test/integration/targets/ucs_wwn_pool/tasks/main.yml
Normal file
129
test/integration/targets/ucs_wwn_pool/tasks/main.yml
Normal file
|
@ -0,0 +1,129 @@
|
|||
# Test code for the UCS modules
|
||||
# Copyright 2017, David Soper (@dsoper2)
|
||||
|
||||
- name: Test that we have a UCS host, UCS username, and UCS password
|
||||
fail:
|
||||
msg: 'Please define the following variables: ucs_hostname, ucs_username and ucs_password.'
|
||||
when: ucs_hostname is not defined or ucs_username is not defined or ucs_password is not defined
|
||||
|
||||
|
||||
# Setup (clean environment)
|
||||
- name: WWNN/WWPN Pools absent
|
||||
ucs_wwn_pool: &wwn_pool_absent
|
||||
hostname: "{{ ucs_hostname }}"
|
||||
username: "{{ ucs_username }}"
|
||||
password: "{{ ucs_password }}"
|
||||
name: WWPN-Pool-A
|
||||
state: absent
|
||||
|
||||
|
||||
# Test present (check_mode)
|
||||
- name: WWNN/WWPN Pools present (check_mode)
|
||||
ucs_wwn_pool: &wwn_pool_present
|
||||
hostname: "{{ ucs_hostname }}"
|
||||
username: "{{ ucs_username }}"
|
||||
password: "{{ ucs_password }}"
|
||||
name: WWPN-Pool-A
|
||||
purpose: port
|
||||
order: sequential
|
||||
first_addr: 20:00:00:25:B5:48:0A:00
|
||||
last_addr: 20:00:00:25:B5:48:0A:0F
|
||||
check_mode: yes
|
||||
register: cm_wwn_pool_present
|
||||
|
||||
|
||||
# Present (normal mode)
|
||||
- name: WWNN/WWPN Pools present (normal mode)
|
||||
ucs_wwn_pool: *wwn_pool_present
|
||||
register: nm_wwn_pool_present
|
||||
|
||||
|
||||
# Test present again (idempotent)
|
||||
- name: WWNN/WWPN Pools present again (check_mode)
|
||||
ucs_wwn_pool: *wwn_pool_present
|
||||
check_mode: yes
|
||||
register: cm_wwn_pool_present_again
|
||||
|
||||
|
||||
# Present again (normal mode)
|
||||
- name: WWNN/WWPN Pools present again (normal mode)
|
||||
ucs_wwn_pool: *wwn_pool_present
|
||||
register: nm_wwn_pool_present_again
|
||||
|
||||
|
||||
# Verfiy present
|
||||
- name: Verify WWNN/WWPN Pools present results
|
||||
assert:
|
||||
that:
|
||||
- cm_wwn_pool_present.changed == nm_wwn_pool_present.changed == true
|
||||
- cm_wwn_pool_present_again.changed == nm_wwn_pool_present_again.changed == false
|
||||
|
||||
|
||||
# Test change (check_mode)
|
||||
- name: WWNN/WWPN Pools description change (check_mode)
|
||||
ucs_wwn_pool: &wwn_pool_change
|
||||
<<: *wwn_pool_present
|
||||
descr: Testing Ansible
|
||||
check_mode: yes
|
||||
register: cm_wwn_pool_descr_change
|
||||
|
||||
|
||||
# Change (normal mode)
|
||||
- name: WWNN/WWPN Pools description change (normal mode)
|
||||
ucs_wwn_pool: *wwn_pool_change
|
||||
register: nm_wwn_pool_descr_change
|
||||
|
||||
|
||||
# Test change again (idempotent)
|
||||
- name: WWNN/WWPN Pools description again (check_mode)
|
||||
ucs_wwn_pool: *wwn_pool_change
|
||||
check_mode: yes
|
||||
register: cm_wwn_pool_descr_change_again
|
||||
|
||||
|
||||
# Change again (normal mode)
|
||||
- name: WWNN/WWPN Pools description change again (normal mode)
|
||||
ucs_wwn_pool: *wwn_pool_change
|
||||
register: nm_wwn_pool_descr_change_again
|
||||
|
||||
|
||||
# Verfiy change
|
||||
- name: Verify WWNN/WWPN Pools change results
|
||||
assert:
|
||||
that:
|
||||
- cm_wwn_pool_descr_change.changed == nm_wwn_pool_descr_change.changed == true
|
||||
- cm_wwn_pool_descr_change_again.changed == nm_wwn_pool_descr_change_again.changed == false
|
||||
|
||||
|
||||
# Teardown (clean environment)
|
||||
- name: WWNN/WWPN Pools absent (check_mode)
|
||||
ucs_wwn_pool: *wwn_pool_absent
|
||||
check_mode: yes
|
||||
register: cm_wwn_pool_absent
|
||||
|
||||
|
||||
# Absent (normal mode)
|
||||
- name: WWNN/WWPN Pools absent (normal mode)
|
||||
ucs_wwn_pool: *wwn_pool_absent
|
||||
register: nm_wwn_pool_absent
|
||||
|
||||
|
||||
# Test absent again (idempotent)
|
||||
- name: WWNN/WWPN Pools absent again (check_mode)
|
||||
ucs_wwn_pool: *wwn_pool_absent
|
||||
check_mode: yes
|
||||
register: cm_wwn_pool_absent_again
|
||||
|
||||
|
||||
# Absent again (normal mode)
|
||||
- name: WWNN/WWPN Pools absent again (normal mode)
|
||||
ucs_wwn_pool: *wwn_pool_absent
|
||||
register: nm_wwn_pool_absent_again
|
||||
|
||||
|
||||
# Verfiy absent
|
||||
- name: Verify WWNN/WWPN Pools absent results
|
||||
assert:
|
||||
that:
|
||||
- cm_wwn_pool_absent.changed == nm_wwn_pool_absent.changed == true
|
||||
- cm_wwn_pool_absent_again.changed == nm_wwn_pool_absent_again.changed == false
|
Loading…
Add table
Add a link
Reference in a new issue