summaryrefslogtreecommitdiff
path: root/test/integration/targets/aci_switch_leaf_policy_profile/tasks/main.yml
blob: 1b053d7f6af5993ce5b3ccee6c69c4c93377924f (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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# Test code for the ACI modules
# Copyright 2017, Bruno Calogero <bcaloger@cisco.com>

# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
- name: setting facts
  set_fact:
    aci_hostname: svlngen4-fab4-apic1.cisco.com
    aci_username: admin
    aci_password: F@b44p1c

- name: Test that we have an ACI APIC host, ACI username and ACI password
  fail:
    msg: 'Please define the following variables: aci_hostname, aci_username and aci_password.'
  when: aci_hostname is not defined or aci_username is not defined or aci_password is not defined


# CLEAN ENVIRONMENT
- name: Remove leaf profile
  aci_switch_policy_leaf_profile: &aci_switch_policy_leaf_profile_absent
    hostname: '{{ aci_hostname }}'
    username: '{{ aci_username }}'
    password: '{{ aci_password }}'
    validate_certs: no
    use_ssl: no
    leaf_profile: ansible_test
    state: absent


# ADD LEAF PROFILE
- name: Add switch policy leaf profile (check_mode)
  aci_switch_policy_leaf_profile: &aci_switch_policy_leaf_profile_present
    hostname: '{{ aci_hostname }}'
    username: '{{ aci_username }}'
    password: '{{ aci_password }}'
    validate_certs: no
    use_ssl: no
    leaf_profile: ansible_test
    state: present
  check_mode: yes
  register: cm_add_switch_leaf_profile

- name: Add leaf profile (normal mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_present
  register: nm_add_switch_leaf_profile

- name: Add leaf profile again (check_mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_present
  check_mode: yes
  register: cm_add_switch_leaf_profile_again

- name: Add leaf profile again (normal mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_present
  register: nm_add_switch_leaf_profile_again

- name: Verify add_switch_leaf_profile
  assert:
    that:
    - cm_add_switch_leaf_profile.changed == nm_add_switch_leaf_profile.changed == true
    - cm_add_switch_leaf_profile_again.changed == nm_add_switch_leaf_profile_again.changed == false


# CHANGE SWITCH LEAF PROFILE
- name: Change description of leaf profile (check_mode)
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_present
    description: Ansible test leaf profile
  check_mode: yes
  register: cm_add_switch_leaf_profile_descr

- name: Change description of leaf profile (normal mode)
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_present
    description: Ansible test leaf profile
  register: nm_add_switch_leaf_profile_descr

- name: Change description of leaf profile again (check_mode)
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_present
    description: Ansible test leaf profile
  check_mode: yes
  register: cm_add_switch_leaf_profile_descr_again

- name: Change description of leaf profile again (normal mode)
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_present
    description: Ansible test leaf profile
  register: nm_add_switch_leaf_profile_descr_again

- name: Verify add_switch_leaf_profile_descr
  assert:
    that:
    - cm_add_switch_leaf_profile_descr.changed == nm_add_switch_leaf_profile_descr.changed == true
    - cm_add_switch_leaf_profile_descr_again.changed == nm_add_switch_leaf_profile_descr_again.changed == false


# ADD LEAF PROFILE AGAIN
- name: Add leaf profile again with no description (check_mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_present
  check_mode: yes
  register: cm_add_switch_leaf_profile_again_no_descr

- name: Add leaf profile again with no description (normal mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_present
  register: nm_add_switch_leaf_profile_again_no_descr

- name: Verify add_switch_leaf_profile_again_no_descr
  assert:
    that:
    - cm_add_switch_leaf_profile_again_no_descr.changed == nm_add_switch_leaf_profile_again_no_descr.changed == false


# QUERY ALL LEAF PROFILES
- name: Query all profiles (check_mode)
  aci_switch_policy_leaf_profile: &aci_switch_policy_leaf_profile_query
    hostname: '{{ aci_hostname }}'
    username: '{{ aci_username }}'
    password: '{{ aci_password }}'
    validate_certs: no
    use_ssl: no
    state: query
  check_mode: yes
  register: cm_query_all_switch_leaf_profiles

- name: Query all switch_leaf_profiles (normal mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_query
  register: nm_query_all_switch_leaf_profiles

- name: Verify query_all_switch_leaf_profiles
  assert:
    that:
    - cm_query_all_switch_leaf_profiles.changed == nm_query_all_switch_leaf_profiles.changed == false
    # NOTE: Order of switch_leaf_profiles is not stable between calls
    #- cm_query_all_switch_leaf_profiles == nm_query_all_switch_leaf_profiles


# QUERY A LEAF PROFILE
- name: Query our switch_leaf_profile
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_query
    leaf_profile: ansible_test
  check_mode: yes
  register: cm_query_switch_leaf_profile

- name: Query our switch_leaf_profile
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_query
    leaf_profile: ansible_test
  register: nm_query_switch_leaf_profile

- name: Verify query_switch_leaf_profile
  assert:
    that:
    - cm_query_switch_leaf_profile.changed == nm_query_switch_leaf_profile.changed == false
    - cm_query_switch_leaf_profile == nm_query_switch_leaf_profile


# REMOVE LEAF PROFILE
- name: Remove switch_leaf_profile (check_mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_absent
  check_mode: yes
  register: cm_remove_switch_leaf_profile

- name: Remove switch_leaf_profile (normal mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_absent
  register: nm_remove_switch_leaf_profile

- name: Remove switch_leaf_profile again (check_mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_absent
  check_mode: yes
  register: cm_remove_switch_leaf_profile_again

- name: Remove switch_leaf_profile again (normal mode)
  aci_switch_policy_leaf_profile: *aci_switch_policy_leaf_profile_absent
  register: nm_remove_switch_leaf_profile_again

- name: Verify remove_switch_leaf_profile
  assert:
    that:
    - cm_remove_switch_leaf_profile.changed == nm_remove_switch_leaf_profile.changed == true
    - cm_remove_switch_leaf_profile_again.changed == nm_remove_switch_leaf_profile_again.changed == false


# QUERY NON-EXISTING LEAF PROFILE
- name: Query non-existing switch_leaf_profile (check_mode)
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_query
    leaf_profile: ansible_test
  check_mode: yes
  register: cm_query_non_switch_leaf_profile

- name: Query non-existing switch_leaf_profile (normal mode)
  aci_switch_policy_leaf_profile:
    <<: *aci_switch_policy_leaf_profile_query
    leaf_profile: ansible_test
  register: nm_query_non_switch_leaf_profile

# TODO: Implement more tests
- name: Verify query_non_switch_leaf_profile
  assert:
    that:
    - cm_query_non_switch_leaf_profile.changed == nm_query_non_switch_leaf_profile.changed == false
    - cm_query_non_switch_leaf_profile == nm_query_non_switch_leaf_profile