mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
6bb21c3db0
- In order to keep the integration with `ansible-test`, we prefer to avoid any interaction with the Ansible inventory file. - split up the prepare_vmware_tests/defaults/main.yml in two configuration files: one for vcsim and one for a real environment - remove all the access to hostvars - directly interact with the ESXi to mount/umount the datastore https://github.com/ansible/ansible/pull/56516 - record the virtual machine folder in the environment configuration - vmware_guest_move: Use https://github.com/ansible/ansible/pull/55237
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
# Test code for the vmware_guest_move module
|
|
# Copyright: (c) 2018, Jose Angel Munoz <josea.munoz@gmail.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
|
|
setup_virtualmachines: true
|
|
|
|
- name: Create a VM folder on given Datacenter
|
|
vcenter_folder:
|
|
hostname: '{{ vcenter_hostname }}'
|
|
username: '{{ vcenter_username }}'
|
|
password: '{{ vcenter_password }}'
|
|
datacenter: '{{ dc1 }}'
|
|
folder_name: 'f1'
|
|
folder_type: vm
|
|
state: present
|
|
validate_certs: no
|
|
register: dest_folder
|
|
|
|
# Testcase 0001: Move vm and get changed status
|
|
- name: Move VM (Changed)
|
|
vmware_guest_move:
|
|
validate_certs: false
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ dc1 }}"
|
|
name: "{{ virtual_machines[0].name }}"
|
|
# Depends-On: https://github.com/ansible/ansible/pull/55237
|
|
dest_folder: "{{ dest_folder.result.path }}"
|
|
register: vm_facts_0001
|
|
|
|
|
|
# Testcase 0002: Move vm and get OK status (Already Moved)
|
|
- name: Move VM (OK)
|
|
vmware_guest_move:
|
|
validate_certs: false
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ dc1 }}"
|
|
name: "{{ virtual_machines[0].name }}"
|
|
dest_folder: "{{ dest_folder.result.path }}"
|
|
register: vm_facts_0002
|
|
|
|
- debug:
|
|
msg: "{{ vm_facts_0001 }}"
|
|
|
|
- debug:
|
|
msg: "{{ vm_facts_0002 }}"
|
|
|
|
- assert:
|
|
that:
|
|
- vm_facts_0001.changed
|
|
- not vm_facts_0002.changed
|