-
Notifications
You must be signed in to change notification settings - Fork 0
/
dnac_trigger.py
286 lines (235 loc) · 12.8 KB
/
dnac_trigger.py
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
import time
import json
import logging
from ats import aetest
from genie.utils.timeout import Timeout
### Code replaced by using Verification!
#from genie.utils.diff import Diff
###
from genie.harness.base import Trigger
log = logging.getLogger()
def _get_all_device_info(device):
response = device.rest.get('/api/v1/network-device')
all_device_info = response.json()
return all_device_info['response']
def _get_device_id_name(device, name):
for device in _get_all_device_info(device):
if device['hostname'] == name:
device_id = device['id']
break
else:
raise Exception('Could not find {n}'.format(n=name))
return device_id
class TriggerUnconfigConfigDescriptionInterface(Trigger):
'''Config and Unconfig interface description'''
@aetest.setup
def prerequisites(self, testbed, uut, steps, interface=None):
'''Pick one interface and save description'''
# find one up interface
with steps.start('Find an interface') as step:
output = uut.parse('show interfaces')
if interface:
self.interface = interface
self.description = output[interface]['description'].strip()
else:
# Pick first interface
for interface in output:
if 'description' in output[interface]:
self.description = output[interface]
self.interface = interface
break
else:
step.failed('Could not find an interface')
step.passed("Found interface '{i}'".format(i=self.interface))
with steps.start("Verify '{i}' is also in DNAC".format(i=self.interface)) as step:
# Make sure it is also in DNAC
testbed.devices['dnac'].connect(via='rest', alias='rest')
output = testbed.devices['dnac'].parse('/dna/intent/api/v1/interface', alias='rest')
# Find the interface
if output[self.interface]['description'].strip() != self.description:
step.failed("With cli interface '{i}' is description is '{dc}', "
"but with DNAC rest api it is "
"'{dd}'".format(i=interface,
dc=self.description,
dd=output[self.interface]['description']))
step.passed("'{i}' is also in DNAC and have same description "
"'{d}'".format(i=self.interface, d=self.description))
@aetest.test
def config(self, testbed, uut, steps, description):
'''Shut interface'''
with steps.start("Change description of interface '{i}'".format(i=self.interface)) as step:
uut.configure('''\
interface {i}
description {d}'''.format(i=self.interface, d=description))
device_id = _get_device_id_name(testbed.devices['dnac'], uut.name)
testbed.devices['dnac'].rest.put('/dna/intent/api/v1/network-device/sync?forceSync=true',
data=json.dumps([device_id]))
@aetest.test
def verify(self, testbed, uut, steps, description, dnac_timeout):
'''Verify if the change description worked'''
with steps.start("Verify '{i}' description is now '{d}' via "
"cli".format(i=self.interface, d=description)) as step:
# find one up interface
output = uut.parse('show interfaces {i}'.format(i=self.interface))
if output[self.interface]['description'] != description:
step.failed("'{i}' is expected to be '{d}' but instead is "
"'{dc}'".format(i=self.interface,
d=description,
dc=output[self.interface]['description']))
step.passed("'{i}' description is '{d}' as expected via "
"cli".format(i=self.interface,
d=description))
with steps.start("Verify '{i}' description is now '{d}' via "
"DNAC".format(i=self.interface, d=description)) as step:
# Add timeout as it can take time to update, even though the sync was sent
timeout = Timeout(max_time = dnac_timeout['max_time'],
interval = dnac_timeout['interval'])
while timeout.iterate():
# Make sure it is also up in DNAC
output = testbed.devices['dnac'].parse('/dna/intent/api/v1/interface', alias='rest')
if output[self.interface]['description'].strip() != description:
log.info("DNAC description is '{d}' instead of "
"'{dc}".format(d=output[self.interface]['description'].strip(), dc=description))
timeout.sleep()
continue
break
else:
step.failed("'{i}' is expected to be '{d}' but instead is "
"'{dd}'".format(i=self.interface,
d=description,
dd=output[self.interface]['description']))
step.passed("'{i}' description is '{d}' as expected via "
"DNAC".format(i=self.interface,
d=description))
@aetest.test
def unconfig(self, testbed, uut, steps):
'''Revert description'''
with steps.start("Revert description of interface '{i}'".format(i=self.interface)) as step:
uut.configure('''\
interface {i}
description {d}'''.format(i=self.interface,
d=self.description))
device_id = _get_device_id_name(testbed.devices['dnac'], uut.name)
testbed.devices['dnac'].rest.put('/dna/intent/api/v1/network-device/sync?forceSync=true',
data=json.dumps([device_id]))
@aetest.test
def verify_recover(self, testbed, uut, steps, dnac_timeout):
'''Figure out if interface description is reverted'''
with steps.start("Verify '{i}' description is now '{d}' via "
"cli".format(i=self.interface, d=self.description)) as step:
# find one up interface
output = uut.parse('show interfaces {i}'.format(i=self.interface))
if output[self.interface]['description'] != self.description:
step.failed("'{i}' is expected to be '{d}' but instead is "
"'{dc}'".format(i=self.interface,
d=self.description,
dc=output[self.interface]['description']))
step.passed("'{i}' description is '{d}' as expected via "
"cli".format(i=self.interface,
d=self.description))
with steps.start("Verify '{i}' description is now '{d}' via "
"DNAC".format(i=self.interface, d=self.description)) as step:
# Add timeout as it can take time to update, even though the sync was sent
timeout = Timeout(max_time = dnac_timeout['max_time'],
interval = dnac_timeout['interval'])
while timeout.iterate():
# Make sure it is also up in DNAC
output = testbed.devices['dnac'].parse('/dna/intent/api/v1/interface', alias='rest')
if output[self.interface]['description'].strip() != self.description:
timeout.sleep()
continue
break
else:
step.failed("'{i}' is expected to be '{d}' but instead is "
"'{dd}'".format(i=self.interface,
d=self.description,
dd=output[self.interface]['description']))
step.passed("'{i}' description is '{d}' as expected via "
"DNAC".format(i=self.interface,
d=self.description))
class TriggerShutNoShutInterface(Trigger):
'''Shut and unshut bgp'''
@aetest.setup
def prerequisites(self, testbed, uut, steps, interface=None):
'''Figure out if bgp is configured and up'''
# find one up interface
with steps.start('Find an up interface') as step:
output = uut.parse('show interfaces')
if interface:
self.interface = interface
else:
for interface in output:
if output[interface]['oper_status'] == 'up':
# found one
self.interface = interface
break
else:
step.failed('Could not find an up interface')
step.passed("Found interface '{i}'".format(i=self.interface))
with steps.start("Verify '{i}' is also up in DNAC".format(i=self.interface)) as step:
# Make sure it is also up in DNAC
testbed.devices['dnac'].connect(via='rest', alias='rest')
output = testbed.devices['dnac'].parse('/dna/intent/api/v1/interface', alias='rest')
# Find the interface
if output[self.interface]['status'] != 'up':
step.failed("With cli interface '{i}' is up, "
"but with DNAC rest api it is of "
"state '{s}'".format(i=interface,
s=output[self.interface]['status']))
step.passed("'{i}' is also up in DNAC".format(i=self.interface))
@aetest.test
def shut(self, uut, steps):
'''Shut interface'''
with steps.start("Shut '{i}'".format(i=self.interface)) as step:
uut.configure('''\
interface {i}
shutdown'''.format(i=self.interface))
@aetest.test
def verify(self, testbed, uut, steps):
'''Verify if the shut worked'''
with steps.start("Verify '{i}' is down via "
"cli".format(i=self.interface)) as step:
# find one up interface
output = uut.parse('show interfaces {i}'.format(i=self.interface))
if output[self.interface]['oper_status'] != 'down':
step.failed("'{i}' is expected to be down but instead is "
"'{s}'".format(i=self.interface,
s=output[interface]['oper_status']))
step.passed("'{i}' is down as expected via cli".format(i=self.interface))
with steps.start("Verify '{i}' is also down in DNAC".format(i=self.interface)) as step:
# Make sure it is also up in DNAC
output = testbed.devices['dnac'].parse('/dna/intent/api/v1/interface', alias='rest')
# Find the interface
if output[interface]['status'] != 'down':
step.failed("'{i}' is expected to be down but instead is "
"'{s}'".format(i=self.interface,
s=output[interface]['status']))
step.passed("'{i}' is down as expected via DNAC".format(i=self.interface))
@aetest.test
def unshut(self, uut, steps):
'''Shut bgp'''
with steps.start("Unshut '{i}'".format(i=self.interface)) as step:
uut.configure('''\
interface {i}
no shutdown'''.format(i=self.interface))
@aetest.test
def verify_recover(self, testbed, uut, steps, wait_time=20):
'''Figure out if interface is configured and up'''
with steps.start("Verify '{i}' is up via "
"cli".format(i=self.interface)) as step:
# find one up interface
output = uut.parse('show interfaces {i}'.format(i=self.interface))
if output[self.interface]['oper_status'] != 'up':
step.failed("'{i}' is expected to be up but instead is "
"'{s}'".format(i=self.interface,
s=output[interface]['oper_status']))
step.passed("'{i}' is up as expected via cli".format(i=self.interface))
with steps.start("Verify '{i}' is also up in DNAC".format(i=self.interface)) as step:
# Make sure it is also up in DNAC
output = testbed.devices['dnac'].parse('/dna/intent/api/v1/interface', alias='rest')
# Find the interface
if output[self.interface]['status'] != 'up':
step.failed("'{i}' is expected to be up but instead is "
"'{s}'".format(i=self.interface,
s=output[interface]['status']))
step.passed("'{i}' is up as expected via DNAC".format(i=self.interface))