summaryrefslogtreecommitdiff
path: root/test/integration/targets/vmware_host_facts/tasks/main.yml
blob: f6ffffcc31997394ea5290474e4b0277b60fba51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
- name: store the vcenter container ip
  set_fact:
    vcsim: "{{ lookup('env', 'vcenter_host') }}"
- debug: var=vcsim

- name: kill vcsim
  uri:
    url: "{{ 'http://' + vcsim + ':5000/killall' }}"
- name: start vcsim
  uri:
    url: "{{ 'http://' + vcsim + ':5000/spawn?cluster=2' }}"
  register: vcsim_instance

- name: get host facts
  vmware_host_facts:
    validate_certs: False
    hostname: "{{ vcsim }}"
    username: "{{ vcsim_instance['json']['username'] }}"
    password: "{{ vcsim_instance['json']['password'] }}"
  register: facts

- debug: var=facts

- name: get host info
  uri:
    url: "{{ 'http://' + vcsim + ':5000/govc_host_info' }}"
  register: host_info_result

- name: verify some data,like ansible_processor
  assert:
    that:
      - facts['ansible_facts']['ansible_hostname'] in host_info_result['json']
      - facts['ansible_facts']['ansible_processor'] == host_info_result['json'][facts['ansible_facts']['ansible_hostname']]['Processor type']