964783fbd2
- Use predictable VM name during the tests (test_vm1, test_vm2 and test_vm2). This to simplify the teardown of the newly created resource before the next test. - Update the documentation to explain the new requirement - Avoid VM creation with `with_items` when it's not mandatory. This to: - speed up the test execution, our hypervisors have limited resources - simplify the teardown - Remove `create_d1_c1_f0_env.yml`, the test was just testing how Ansible pass environment variables. - Correct the name for the `f0` variable (`f1`) - Fix the DVS tests, the hosts can now reach the dvswitch1 vswitch - Provision the VM with a poweroff status, this to improve the idempotency and sleep up the tests - Avoid the use of `prepare_vmware_tests` to prepare virtual machines when we just need one machine
99 lines
2.5 KiB
YAML
99 lines
2.5 KiB
YAML
# Test code for the vmware_drs_group module
|
|
# Copyright: (c) 2018, Karsten Kaj Jakobsen <kj@patientsky.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
|
|
vars:
|
|
setup_attach_host: true
|
|
setup_datastore: true
|
|
|
|
- name: Create VMs
|
|
vmware_guest:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ dc1 }}"
|
|
validate_certs: no
|
|
folder: '{{ f0 }}'
|
|
name: test_vm1
|
|
state: poweredoff
|
|
guest_id: debian8_64Guest
|
|
disk:
|
|
- size_gb: 1
|
|
type: thin
|
|
datastore: '{{ ds2 }}'
|
|
hardware:
|
|
memory_mb: 128
|
|
num_cpus: 1
|
|
scsi: paravirtual
|
|
cdrom:
|
|
type: iso
|
|
iso_path: "[{{ ds1 }}] fedora.iso"
|
|
networks:
|
|
- name: VM Network
|
|
|
|
- name: Create DRS VM group
|
|
vmware_drs_group:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
# Options
|
|
cluster_name: '{{ ccr1 }}'
|
|
datacenter_name: '{{ dc1 }}'
|
|
group_name: TEST_VM_01
|
|
vms: "{{ virtual_machines_in_cluster | map(attribute='name') | list }}"
|
|
state: present
|
|
register: drs_vm_group_01_results
|
|
|
|
- debug:
|
|
var: drs_vm_group_01_results
|
|
|
|
- assert:
|
|
that:
|
|
- "drs_vm_group_01_results.changed"
|
|
|
|
- when: vcsim is defined or esxi_hosts | length >= 3
|
|
block:
|
|
- name: Create DRS Host group
|
|
vmware_drs_group:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
cluster_name: '{{ ccr1 }}'
|
|
datacenter_name: '{{ dc1 }}'
|
|
group_name: TEST_HOST_01
|
|
hosts: "{{ esxi_hosts[0:3] }}"
|
|
state: present
|
|
register: drs_host_group_01_results
|
|
|
|
- debug:
|
|
var: drs_host_group_01_results
|
|
|
|
- assert:
|
|
that:
|
|
- "drs_host_group_01_results.changed"
|
|
|
|
- name: Delete DRS Host group
|
|
vmware_drs_group:
|
|
# Login creds
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
# Options
|
|
cluster_name: DC0_C0
|
|
datacenter_name: DC0
|
|
group_name: TEST_HOST_01
|
|
hosts: []
|
|
state: absent
|
|
register: drs_host_group_01_delete_results
|
|
|
|
- debug:
|
|
var: drs_host_group_01_delete_results
|
|
|
|
- assert:
|
|
that:
|
|
- "drs_host_group_01_delete_results.changed"
|