mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
YAML
59 lines
1.7 KiB
YAML
# Test code for the vmware_cluster_facts module.
|
|
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
- import_role:
|
|
name: prepare_vmware_tests
|
|
|
|
- &vc_all_data
|
|
name: gather facts about all clusters in the given datacenter
|
|
vmware_cluster_facts:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
datacenter: "{{ dc1 }}"
|
|
register: all_cluster_result
|
|
|
|
- &ensure_vc_all_data
|
|
name: ensure facts are gathered for all clusters
|
|
assert:
|
|
that:
|
|
- all_cluster_result.clusters
|
|
- not all_cluster_result.changed
|
|
|
|
- <<: *vc_all_data
|
|
name: Gather facts about all clusters in the given datacenter in check mode
|
|
check_mode: yes
|
|
|
|
- debug: msg=all_cluster_result
|
|
|
|
# vmware_cluster_facts does not support check mode
|
|
# - <<: *ensure_vc_all_data
|
|
# name: Ensure facts are gathered for all clusters in check mode
|
|
|
|
- &vc_cluster_data
|
|
name: Gather facts about the given cluster
|
|
vmware_cluster_facts:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
cluster_name: "{{ ccr1 }}"
|
|
register: cluster_result
|
|
|
|
- &ensure_vc_cluster_data
|
|
name: Ensure facts are gathered for the given cluster
|
|
assert:
|
|
that:
|
|
- cluster_result.clusters
|
|
- not cluster_result.changed
|
|
|
|
- <<: *vc_cluster_data
|
|
name: Gather facts about the given cluster in check mode
|
|
check_mode: yes
|
|
|
|
# vmware_cluster_facts does not support check mode
|
|
# - <<: *ensure_vc_cluster_data
|
|
# name: Ensure facts are gathered for the given cluster in check mode
|