mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
VMware: new module : vmware_guest_boot_facts (#43240)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
2
test/integration/targets/vmware_guest_boot_facts/aliases
Normal file
2
test/integration/targets/vmware_guest_boot_facts/aliases
Normal file
@@ -0,0 +1,2 @@
|
||||
cloud/vcenter
|
||||
unsupported
|
||||
@@ -0,0 +1,76 @@
|
||||
# Test code for the vmware_guest_boot_facts module.
|
||||
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
- name: Wait for Flask controller to come up online
|
||||
wait_for:
|
||||
host: "{{ vcsim }}"
|
||||
port: 5000
|
||||
state: started
|
||||
|
||||
- name: kill vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/killall
|
||||
- name: start vcsim with no folders
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/spawn?datacenter=1&cluster=1&folder=0
|
||||
register: vcsim_instance
|
||||
|
||||
- name: Wait for Flask controller to come up online
|
||||
wait_for:
|
||||
host: "{{ vcsim }}"
|
||||
port: 443
|
||||
state: started
|
||||
|
||||
- name: get a list of VMS from vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/govc_find?filter=VM
|
||||
register: vmlist
|
||||
|
||||
- debug: var=vcsim_instance
|
||||
- debug: var=vmlist
|
||||
|
||||
- name: Gather facts about VM boot order
|
||||
vmware_guest_boot_facts:
|
||||
validate_certs: no
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ vcsim_instance['json']['username'] }}"
|
||||
password: "{{ vcsim_instance['json']['password'] }}"
|
||||
name: "{{ item|basename }}"
|
||||
with_items: "{{ vmlist['json'] }}"
|
||||
register: boot_d1_c1_f0
|
||||
|
||||
- debug: var=boot_d1_c1_f0
|
||||
|
||||
- name: assert that changes were made
|
||||
assert:
|
||||
that:
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_delay is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_firmware is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_order is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_delay is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_enabled is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_enter_bios_setup is defined
|
||||
|
||||
- name: Gather facts about VM boot order in check mode
|
||||
vmware_guest_boot_facts:
|
||||
validate_certs: no
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ vcsim_instance['json']['username'] }}"
|
||||
password: "{{ vcsim_instance['json']['password'] }}"
|
||||
name: "{{ item|basename }}"
|
||||
with_items: "{{ vmlist['json'] }}"
|
||||
check_mode: yes
|
||||
register: boot_d1_c1_f0
|
||||
|
||||
- debug: var=boot_d1_c1_f0
|
||||
|
||||
- name: assert that changes were made
|
||||
assert:
|
||||
that:
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_delay is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_firmware is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_order is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_delay is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_enabled is defined
|
||||
- boot_d1_c1_f0.results.vm_boot_facts.current_enter_bios_setup is defined
|
||||
Reference in New Issue
Block a user