2017-11-06 16:28:15 +00:00
|
|
|
# Test code for the vmware_guest module.
|
|
|
|
# Copyright: (c) 2017, James Tanner <tanner.jc@gmail.com>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
2017-07-12 21:10:48 +00:00
|
|
|
- name: make sure pyvmomi is installed
|
|
|
|
pip:
|
|
|
|
name: pyvmomi
|
|
|
|
state: latest
|
2017-07-14 02:02:33 +00:00
|
|
|
when: "{{ ansible_user_id == 'root' }}"
|
2017-07-12 03:07:00 +00:00
|
|
|
|
|
|
|
- name: store the vcenter container ip
|
|
|
|
set_fact:
|
|
|
|
vcsim: "{{ lookup('env', 'vcenter_host') }}"
|
|
|
|
- debug: var=vcsim
|
|
|
|
|
2017-12-15 16:02:22 +00:00
|
|
|
# Commenting following two is failing right now - 15 Dec 2017
|
|
|
|
#- include: poweroff_d1_c1_f0.yml
|
|
|
|
#- include: poweroff_d1_c1_f1.yml
|
2018-01-22 15:46:19 +00:00
|
|
|
- include: check_mode.yml
|
2017-07-14 02:02:33 +00:00
|
|
|
- include: clone_d1_c1_f0.yml
|
2017-09-27 22:10:08 +00:00
|
|
|
- include: create_d1_c1_f0.yml
|
2017-10-11 12:29:13 +00:00
|
|
|
- include: cdrom_d1_c1_f0.yml
|
2017-11-10 12:51:36 +00:00
|
|
|
- include: create_rp_d1_c1_f0.yml
|
2017-11-16 06:42:27 +00:00
|
|
|
- include: create_guest_invalid_d1_c1_f0.yml
|
2017-11-21 09:47:05 +00:00
|
|
|
- include: mac_address_d1_c1_f0.yml
|
2017-12-14 13:11:09 +00:00
|
|
|
- include: disk_type_d1_c1_f0.yml
|
2017-12-15 12:24:52 +00:00
|
|
|
- include: create_nw_d1_c1_f0.yml
|
2018-01-22 14:47:11 +00:00
|
|
|
- include: delete_vm.yml
|
2018-02-03 23:53:24 +00:00
|
|
|
- include: non_existent_vm_ops.yml
|
2018-02-16 05:02:27 +00:00
|
|
|
- include: network_negative_test.yml
|
|
|
|
# Currently, VCSIM doesn't support DVPG (as portkeys are not available) so commenting this test
|
|
|
|
#- include: network_with_dvpg.yml
|
2017-12-14 13:11:09 +00:00
|
|
|
#- include: template_d1_c1_f0.yml
|
2018-02-21 06:29:13 +00:00
|
|
|
- include: vapp_d1_c1_f0.yml
|