summaryrefslogtreecommitdiff
path: root/test/integration/targets/aci_domain/tasks/l2dom.yml
blob: 0ec4f499fd3ec602bf8e3264c1966610131b62d7 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# Test code for the ACI modules
# Copyright: (c) 2018, Dag Wieers (@dagwieers) <dag@wieers.com>

# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)


# CLEAN ENVIRONMENT
- name: Remove L2 domain
  aci_domain: &domain_absent
    host: "{{ aci_hostname }}"
    username: "{{ aci_username }}"
    password: "{{ aci_password }}"
    validate_certs: '{{ aci_validate_certs | default(false) }}'
    use_ssl: '{{ aci_use_ssl | default(true) }}'
    use_proxy: '{{ aci_use_proxy | default(true) }}'
    output_level: '{{ aci_output_level | default("info") }}'
    domain: l2_dom
    domain_type: l2dom
    state: absent


# ADD DOMAIN
- name: Add L2 domain (check_mode)
  aci_domain: &domain_present
    host: '{{ aci_hostname }}'
    username: '{{ aci_username }}'
    password: '{{ aci_password }}'
    validate_certs: '{{ aci_validate_certs | default(false) }}'
    use_ssl: '{{ aci_use_ssl | default(true) }}'
    use_proxy: '{{ aci_use_proxy | default(true) }}'
    output_level: '{{ aci_output_level | default("info") }}'
    domain: l2_dom
    domain_type: l2dom
    state: present
  check_mode: yes
  register: cm_add_domain

- name: Add L2 domain (normal mode)
  aci_domain: *domain_present
  register: nm_add_domain

- name: Verify add_domain
  assert:
    that:
    - cm_add_domain is changed
    - nm_add_domain is changed
    - 'cm_add_domain.sent == nm_add_domain.sent == {"l2extDomP": {"attributes": {"name": "l2_dom"}}}'
    - 'cm_add_domain.proposed == nm_add_domain.proposed == {"l2extDomP": {"attributes": {"name": "l2_dom"}}}'
    - cm_add_domain.current == cm_add_domain.previous == nm_add_domain.previous == []
    - 'nm_add_domain.current == [{"l2extDomP": {"attributes": {"dn": "uni/l2dom-l2_dom", "name": "l2_dom", "nameAlias": "", "ownerKey": "", "ownerTag": ""}}}]'

- name: Add L2 domain again (check_mode)
  aci_domain: *domain_present
  check_mode: yes
  register: cm_add_domain_again

- name: Add L2 domain again (normal mode)
  aci_domain: *domain_present
  register: nm_add_domain_again

- name: Verify add_domain_again
  assert:
    that:
    - cm_add_domain_again is not changed
    - nm_add_domain_again is not changed


# QUERY ALL DOMAINS
- name: Query all L2 domains (check_mode)
  aci_domain: &domain_query
    host: '{{ aci_hostname }}'
    username: '{{ aci_username }}'
    password: '{{ aci_password }}'
    validate_certs: '{{ aci_validate_certs | default(false) }}'
    use_ssl: '{{ aci_use_ssl | default(true) }}'
    use_proxy: '{{ aci_use_proxy | default(true) }}'
    output_level: '{{ aci_output_level | default("info") }}'
    domain_type: l2dom
    state: query
  check_mode: yes
  register: cm_query_all_domains

- name: Query all L2 domains (normal mode)
  aci_domain: *domain_query
  register: nm_query_all_domains

- name: Verify query_all_domains
  assert:
    that:
    - cm_query_all_domains is not changed
    - nm_query_all_domains is not changed
    - cm_query_all_domains == nm_query_all_domains
    - nm_query_all_domains.current|length >= 1


# QUERY A DOMAIN
- name: Query our L2 domain (check_mode)
  aci_domain:
    <<: *domain_query
    domain: l2_dom
  check_mode: yes
  register: cm_query_domain

- name: Query our L2 domain (normal mode)
  aci_domain:
    <<: *domain_query
    domain: l2_dom
  register: nm_query_domain

- name: Verify query_domain
  assert:
    that:
    - cm_query_domain is not changed
    - nm_query_domain is not changed
    - cm_query_domain == nm_query_domain
    - nm_query_domain.current.0.l2extDomP.attributes.dn == 'uni/l2dom-l2_dom'
    - nm_query_domain.current.0.l2extDomP.attributes.name == 'l2_dom'


# REMOVE DOMAIN
- name: Remove L2 domain (check_mode)
  aci_domain: *domain_absent
  check_mode: yes
  register: cm_remove_domain

- name: Remove L2 domain (normal mode)
  aci_domain: *domain_absent
  register: nm_remove_domain

- name: Verify remove_domain
  assert:
    that:
    - cm_remove_domain is changed
    - nm_remove_domain is changed
    - 'cm_remove_domain.current == cm_remove_domain.previous == nm_remove_domain.previous == [{"l2extDomP": {"attributes": {"dn": "uni/l2dom-l2_dom", "name": "l2_dom", "nameAlias": "", "ownerKey": "", "ownerTag": ""}}}]'
    - nm_remove_domain.current == []

- name: Remove L2 domain again (check_mode)
  aci_domain: *domain_absent
  check_mode: yes
  register: cm_remove_domain_again

- name: Remove L2 domain again (normal mode)
  aci_domain: *domain_absent
  register: nm_remove_domain_again

- name: Verify remove_domain_again
  assert:
    that:
    - cm_remove_domain_again is not changed
    - nm_remove_domain_again is not changed


# QUERY NON-EXISTING DOMAIN
- name: Query non-existing L2 domain (check_mode)
  aci_domain:
    <<: *domain_query
    domain: l2_dom
  check_mode: yes
  register: cm_query_non_domain

- name: Query non-existing L2 domain (normal mode)
  aci_domain:
    <<: *domain_query
    domain: l2_dom
  register: nm_query_non_domain

- name: Verify query_non_domain
  assert:
    that:
    - cm_query_non_domain is not changed
    - nm_query_non_domain is not changed
    - cm_query_non_domain == nm_query_non_domain
    - nm_query_non_domain.current == []