summaryrefslogtreecommitdiff
path: root/test/integration/targets/vmware_cluster_info/tasks/main.yml
blob: 0d0ba4e947a98838fdb66adf56f89c1d58d7579c (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Test code for the vmware_cluster_info 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)

- import_role:
    name: prepare_vmware_tests

- &vc_all_data
  name: gather info about all clusters in the given datacenter
  vmware_cluster_info:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    validate_certs: False
    datacenter: "{{ dc1 }}"
  register: all_cluster_result

- &ensure_vc_all_data
  name: ensure info are gathered for all clusters
  assert:
    that:
        - all_cluster_result.clusters
        - not all_cluster_result.changed

- <<: *vc_all_data
  name: Gather info about all clusters in the given datacenter in check mode
  check_mode: yes

- debug: msg=all_cluster_result

- <<: *ensure_vc_all_data
  name: Ensure info is gathered for all clusters in check mode

- &vc_cluster_data
  name: Gather info about the given cluster
  vmware_cluster_info:
    hostname: "{{ vcenter_hostname }}"
    username: "{{ vcenter_username }}"
    password: "{{ vcenter_password }}"
    validate_certs: False
    cluster_name: "{{ ccr1 }}"
  register: cluster_result

- &ensure_vc_cluster_data
  name: Ensure info are gathered for the given cluster
  assert:
    that:
        - cluster_result.clusters
        - not cluster_result.changed

- <<: *vc_cluster_data
  name: Gather info about the given cluster in check mode
  check_mode: yes

- <<: *ensure_vc_cluster_data
  name: Ensure info is gathered for the given cluster in check mode

- when: vcsim is not defined
  block:
  - import_role:
      name: prepare_vmware_tests
    vars:
      setup_category: true
      setup_tag: true

  - name: Apply tag to cluster
    vmware_tag_manager:
      hostname: "{{ vcenter_hostname }}"
      username: "{{ vcenter_username }}"
      password: "{{ vcenter_password }}"
      validate_certs: no
      tag_names:
        - '{{ cluster_category }}:{{ cluster_tag }}'
      state: present
      object_name: '{{ ccr1 }}'
      object_type: ClusterComputeResource

  - name: Get info about cluster
    vmware_cluster_info:
      hostname: "{{ vcenter_hostname }}"
      username: "{{ vcenter_username }}"
      password: "{{ vcenter_password }}"
      validate_certs: no
      show_tag: True
      cluster_name: "{{ ccr1 }}"
    register: cluster_info

  - assert:
      that:
        - cluster_info is defined
        - cluster_info.clusters[ccr1].tags is defined