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.
127 lines
3.9 KiB
YAML
127 lines
3.9 KiB
YAML
# Test code for the vmware_datastore_facts module.
|
|
# Copyright (c) 2017, Tim Rightnour <thegarbledone@gmail.com>
|
|
# Copyright (c) 2018, Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
- import_role:
|
|
name: prepare_vmware_tests
|
|
vars:
|
|
setup_attach_host: true
|
|
setup_datastore: true
|
|
|
|
- when: vcsim is not defined
|
|
block:
|
|
- name: get list of facts about datastores from the ESXi
|
|
vmware_datastore_facts:
|
|
validate_certs: False
|
|
hostname: '{{ item }}'
|
|
username: '{{ esxi_user }}'
|
|
password: '{{ esxi_password }}'
|
|
register: facts_from_esxi
|
|
with_items: "{{ esxi_hosts }}"
|
|
- assert:
|
|
that:
|
|
- "facts_from_esxi.results[0].datastores|selectattr('type', 'equalto', 'NFS')|list|length == 2"
|
|
|
|
- name: get list of facts about datastores
|
|
vmware_datastore_facts:
|
|
validate_certs: False
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ dc1 }}"
|
|
gather_nfs_mount_info: true
|
|
register: facts_from_vcenter_with_dc_filter
|
|
|
|
- when: vcsim is not defined
|
|
block:
|
|
- name: get list of facts about datastores
|
|
vmware_datastore_facts:
|
|
validate_certs: False
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
gather_nfs_mount_info: true
|
|
register: facts_from_vcenter_with_no_filter
|
|
|
|
- assert:
|
|
that:
|
|
- "facts_from_vcenter_with_dc_filter.datastores|selectattr('type', 'equalto', 'NFS')|list|length == 2"
|
|
- "facts_from_vcenter_with_no_filter.datastores|selectattr('type', 'equalto', 'NFS')|list|length == 2"
|
|
- "facts_from_vcenter_with_no_filter.datastores[0]['capacity'] is defined"
|
|
|
|
# Testcase 0002: Get a full list of datastores in a cluster
|
|
- name: get list of facts about datastores - no dc
|
|
vmware_datastore_facts:
|
|
validate_certs: False
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
cluster: "{{ ccr1 }}"
|
|
register: datastore_facts_0002
|
|
|
|
- debug:
|
|
msg: "{{ datastore_facts_0002 }}"
|
|
|
|
- assert:
|
|
that:
|
|
- "datastore_facts_0002['datastores'][0]['capacity'] is defined"
|
|
|
|
# Testcase 0003: Find a specific datastore
|
|
- name: get list of facts about one datastore
|
|
vmware_datastore_facts:
|
|
validate_certs: False
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ dc1 }}"
|
|
name: "{{ ro_datastore }}"
|
|
register: datastore_facts_0003
|
|
|
|
- debug:
|
|
msg: "{{ datastore_facts_0003 }}"
|
|
|
|
- assert:
|
|
that:
|
|
- "datastore_facts_0003['datastores'][0]['name'] == ro_datastore"
|
|
- "datastore_facts_0003['datastores'][0]['capacity'] is defined"
|
|
|
|
- name: get list of extended facts about one datastore
|
|
vmware_datastore_facts:
|
|
validate_certs: False
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ dc1 }}"
|
|
name: "{{ ro_datastore }}"
|
|
gather_nfs_mount_info: True
|
|
gather_vmfs_mount_info: True
|
|
register: datastore_facts_0004
|
|
|
|
- debug:
|
|
msg: "{{ datastore_facts_0004 }}"
|
|
|
|
- assert:
|
|
that:
|
|
- "datastore_facts_0004['datastores'][0]['name'] == ro_datastore"
|
|
- "datastore_facts_0004['datastores'][0]['capacity'] is defined"
|
|
|
|
- name: get list of facts about one datastore in check mode
|
|
vmware_datastore_facts:
|
|
validate_certs: False
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ dc1 }}"
|
|
name: "{{ ro_datastore }}"
|
|
register: datastore_facts_0005
|
|
|
|
- debug:
|
|
msg: "{{ datastore_facts_0005 }}"
|
|
|
|
- assert:
|
|
that:
|
|
- "datastore_facts_0005['datastores'][0]['name'] == ro_datastore"
|
|
- "datastore_facts_0005['datastores'][0]['capacity'] is defined"
|