ansible/test/integration/targets/vmware_datastore_info/tasks/main.yml
Gonéri Le Bouder 0aa59ce9ab vmware/test: use better name for datastores
In the VMware tests, we call the datastores `ds1` and `ds2`. The first
one is read-only, the second is read-write and can be used to deploy
VMs. The naming convention was not clear enough and source of a lot
confusion and mistake.

We now have two better names:

- ro_datastore, which is ... read-only
- rw_datastore, the one that we can use to deploy new VM.
2019-11-14 16:55:05 -05:00

126 lines
3.9 KiB
YAML

# Test code for the vmware_datastore_info 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 info about datastores from the ESXi
vmware_datastore_info:
validate_certs: False
hostname: '{{ item }}'
username: '{{ esxi_user }}'
password: '{{ esxi_password }}'
register: info_from_esxi
with_items: "{{ esxi_hosts }}"
- assert:
that:
- "info_from_esxi.results[0].datastores|selectattr('type', 'equalto', 'NFS')|list|length == 2"
- name: get list of info about datastores
vmware_datastore_info:
validate_certs: False
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
datacenter: "{{ dc1 }}"
gather_nfs_mount_info: true
register: info_from_vcenter_with_dc_filter
- when: vcsim is not defined
block:
- name: get list of info about datastores
vmware_datastore_info:
validate_certs: False
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
gather_nfs_mount_info: true
register: info_from_vcenter_with_no_filter
- assert:
that:
- "info_from_vcenter_with_dc_filter.datastores|selectattr('type', 'equalto', 'NFS')|list|length == 2"
- "info_from_vcenter_with_no_filter.datastores|selectattr('type', 'equalto', 'NFS')|list|length == 2"
- "info_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 info about datastores - no dc
vmware_datastore_info:
validate_certs: False
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
cluster: "{{ ccr1 }}"
register: datastore_info_0002
- debug:
msg: "{{ datastore_info_0002 }}"
- assert:
that:
- "datastore_info_0002['datastores'][0]['capacity'] is defined"
# Testcase 0003: Find a specific datastore
- name: get list of info about one datastore
vmware_datastore_info:
validate_certs: False
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
datacenter: "{{ dc1 }}"
name: "{{ ro_datastore }}"
register: datastore_info_0003
- debug:
msg: "{{ datastore_info_0003 }}"
- assert:
that:
- "datastore_info_0003['datastores'][0]['name'] == ro_datastore"
- "datastore_info_0003['datastores'][0]['capacity'] is defined"
- name: get list of extended info about one datastore
vmware_datastore_info:
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_info_0004
- debug:
msg: "{{ datastore_info_0004 }}"
- assert:
that:
- "datastore_info_0004['datastores'][0]['name'] == ro_datastore"
- "datastore_info_0004['datastores'][0]['capacity'] is defined"
- name: get list of info about one datastore in check mode
vmware_datastore_info:
validate_certs: False
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
datacenter: "{{ dc1 }}"
name: "{{ ro_datastore }}"
register: datastore_info_0005
- debug:
msg: "{{ datastore_info_0005 }}"
- assert:
that:
- "datastore_info_0005['datastores'][0]['name'] == ro_datastore"
- "datastore_info_0005['datastores'][0]['capacity'] is defined"