Update Honeycomb tests
[csit.git] / resources / libraries / robot / honeycomb / bridge_domain.robot
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Library | resources.libraries.python.L2Util
16 | Library | resources.libraries.python.honeycomb.HcAPIKwBridgeDomain.BridgeDomainKeywords
17 | Library | resources.libraries.python.honeycomb.HcAPIKwInterfaces.InterfaceKeywords
18 | ...     | WITH NAME | InterfaceAPI
19 | Library | resources.libraries.python.InterfaceUtil
20 | ...     | WITH NAME | interfaceCLI
21
22 *** Keywords ***
23 | Honeycomb creates first L2 bridge domain
24 | | [Documentation] | Uses Honeycomb API to create a bridge domain on the \
25 | | ... | VPP node. Any other bridge domains will be removed in the process.
26 | | ...
27 | | ... | *Arguments:*
28 | | ... | - node - Information about a DUT node. Type: dictionary
29 | | ... | - bd_name - Name of the created bridge domain. Type: string
30 | | ... | - settings - Settings for the created bridge domain. Type: dictionary
31 | | ...
32 | | ... | *Example:*
33 | | ...
34 | | ... | \| Honeycomb creates first L2 bridge domain \| ${nodes['DUT1']} \
35 | | ... | \| bd-04 \| ${{flood:True, learn:False}} \|
36 | | [Arguments] | ${node} | ${bd_name} | ${settings}
37 | | Add first BD | ${node} | ${bd_name} | &{settings}
38
39 | Honeycomb creates L2 bridge domain
40 | | [Documentation] | Uses Honeycomb API to create a bridge domain on the \
41 | | ... | VPP node.
42 | | ...
43 | | ... | *Arguments:*
44 | | ... | - node - Information about a DUT node. Type: dictionary
45 | | ... | - bd_name - Name of the created bridge domain. Type: string
46 | | ... | - settings - Settings for the created bridge domain. Type: dictionary
47 | | ...
48 | | ... | *Example:*
49 | | ...
50 | | ... | \| Honeycomb creates L2 bridge domain \| ${nodes['DUT1']} \
51 | | ... | \| bd-04 \| ${{flood:True, learn:False}} \|
52 | | [Arguments] | ${node} | ${bd_name} | ${settings}
53 | | Add BD | ${node} | ${bd_name} | &{settings}
54
55 | Bridge domain configuration from Honeycomb should be
56 | | [Documentation] | Uses Honeycomb API to verify bridge domain settings\
57 | | ... | against provided values.
58 | | ...
59 | | ... | *Arguments:*
60 | | ... | - node - Information about a DUT node. Type: dictionary
61 | | ... | - bd_name - Name of the bridge domain. Type: string
62 | | ... | - settings - Expected settings for the bridge domain. Type: dictionary
63 | | ...
64 | | ... | *Example:*
65 | | ...
66 | | ... | \| Bridge domain configuration from Honeycomb should be \
67 | | ... | \| ${nodes['DUT1']} \| bd-04 \| ${{flood:True,learn:False}} \|
68 | | [Arguments] | ${node} | ${bd_name} | ${settings}
69 | | ${api_data}= | Get bd oper data | ${node} | ${bd_name}
70 | | :FOR | ${key} | IN | @{settings.keys()}
71 | | | Should be equal | ${settings['${key}']} | ${api_data['${key}']}
72
73 | Bridge domain configuration from VAT should be
74 | | [Documentation] | Uses VAT to verify bridge domain settings\
75 | | ... | against provided values.
76 | | ...
77 | | ... | *Arguments:*
78 | | ... | - node - Information about a DUT node. Type: dictionary
79 | | ... | - bd_name - Name of the bridge domain. Type: string
80 | | ... | - settings - Expected settings for the bridge domain. Type: dictionary
81 | | ...
82 | | ... | *Example:*
83 | | ...
84 | | ... | \| Bridge domain configuration from VAT should be \
85 | | ... | \| ${nodes['DUT1']} \| bd-04 \| ${{flood:True,learn:False}} \|
86 | | [Arguments] | ${node} | ${bd_index} | ${settings}
87 | | ${vat_data}= | VPP get bridge domain data | ${node}
88 | | ${vat_data}= | Set Variable | ${vat_data[${bd_index}]}
89 | | :FOR | ${key} | IN | @{settings.keys()}
90 | | | Run keyword if | $key in $vat_data.keys()
91 | | | ... | Should be equal | ${settings['${key}']} | ${vat_data['${key}']}
92
93 | Honeycomb adds interfaces to bridge domain
94 | | [Documentation] | Uses Honeycomb API to assign interfaces to a bridge\
95 | | ... | domain.
96 | | ...
97 | | ... | *Arguments:*
98 | | ... | - node - Information about a DUT node. Type: dictionary
99 | | ... | - interface1, interface2 - Names of interfaces to assign to bridge\
100 | | ... | domain. Type: string
101 | | ... | - bd_name - Name of the bridge domain. Type: string
102 | | ... | - settings - Bridge domain specific interface settings.\
103 | | ... | Type: dictionary
104 | | ...
105 | | ... | *Example:*
106 | | ...
107 | | ... | \| Honeycomb adds interfaces to bridge domain \| ${nodes['DUT1']} \
108 | | ... | \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \| bd-04 \
109 | | ... | \| ${{split_horizon_group:2, bvi:False}} \|
110 | | [Arguments] | ${node} | ${interface1} | ${interface2} | ${bd_name}
111 | | ... | ${settings}
112 | | interfaceAPI.Add bridge domain to interface
113 | | ... | ${node} | ${interface1} | ${bd_name} | &{settings}
114 | | interfaceAPI.Add bridge domain to interface
115 | | ... | ${node} | ${interface2} | ${bd_name} | &{settings}
116
117 | Honeycomb fails to add interfaces to bridge domain
118 | | [Documentation] | Uses Honeycomb API to assign interfaces to a bridge\
119 | | ... | domain.
120 | | ...
121 | | ... | *Arguments:*
122 | | ... | - node - information about a DUT node. Type: dictionary
123 | | ... | - interface1, interface2 - names of interfaces to assign to bridge\
124 | | ... | domain. Type: string
125 | | ... | - bd_name - name of the bridge domain. Type: string
126 | | ... | - settings - bridge domain specific interface settings.\
127 | | ... | Type: dictionary
128 | | ...
129 | | ... | *Example:*
130 | | ...
131 | | ... | \| Honeycomb fails to add interfaces to bridge domain \
132 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \
133 | | ... | \| bd-04 \| ${{split_horizon_group:2, bvi:True}} \|
134 | | [Arguments] | ${node} | ${interface1} | ${interface2} | ${bd_name}
135 | | ... | ${settings}
136 | | Run keyword and expect error | *Failed to validate*
137 | | ... | Honeycomb adds interfaces to bridge domain | ${node} | ${interface1}
138 | | ... | ${interface2} | ${bd_name} | ${settings}
139
140 | Honeycomb should show interfaces assigned to bridge domain
141 | | [Documentation] | Uses Honeycomb API to verify interface assignment to\
142 | | ... | bridge domain.
143 | | ...
144 | | ... | *Arguments:*
145 | | ... | - node - Information about a DUT node. Type: dictionary
146 | | ... | - interface1, interface2 - Names of interfaces to assign to bridge\
147 | | ... | domain. Type: string
148 | | ... | - bd_name - Name of the bridge domain. Type: string
149 | | ... | - settings - Bridge domain specific interface settings.\
150 | | ... | Type: dictionary
151 | | ...
152 | | ... | *Example:*
153 | | ...
154 | | ... | \| Honeycomb should show interfaces assigned to bridge domain \
155 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \
156 | | ... | \| bd-04 \| ${{split_horizon_group:2, bvi:False}} \|
157 | | [Arguments] | ${node} | ${interface1} | ${interface2} | ${bd_name}
158 | | ... | ${settings}
159 | | ${if1_data}= | interfaceAPI.Get interface oper data
160 | | ... | ${node} | ${interface1}
161 | | ${if2_data}= | interfaceAPI.Get interface oper data
162 | | ... | ${node} | ${interface2}
163 | | Should be equal | ${if1_data['v3po:l2']['bridge-domain']}
164 | | ... | ${if2_data['v3po:l2']['bridge-domain']} | ${bd_name}
165 | | Should be equal | ${if1_data['v3po:l2']['split-horizon-group']}
166 | | ... | ${if2_data['v3po:l2']['split-horizon-group']}
167 | | ... | ${settings['split_horizon_group']}
168 | | Should be equal | ${if1_data['v3po:l2']['bridged-virtual-interface']}
169 | | ... | ${if2_data['v3po:l2']['bridged-virtual-interface']}
170 | | ... | ${settings['bvi']}
171
172 | Honeycomb should not show interfaces assigned to bridge domain
173 | | [Documentation] | Uses Honeycomb API to verify interface assignment to\
174 | | ... | bridge domain.
175 | | ...
176 | | ... | *Arguments:*
177 | | ... | - node - information about a DUT node. Type: dictionary
178 | | ... | - interface1, interface2 - names of interfaces to check bridge domain\
179 | | ... | assignment on. Type: string
180 | | ... | - bd_name - name of the bridge domain. Type: string
181 | | ... | - settings - bridge domain specific interface settings.\
182 | | ... | Type: dictionary
183 | | ...
184 | | ... | *Example:*
185 | | ...
186 | | ... | \| Honeycomb should not show interfaces assigned to bridge domain \
187 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \
188 | | ... | \| bd-04 \| ${{split_horizon_group:2, bvi:False}} \|
189 | | [Arguments] | ${node} | ${interface1} | ${interface2} | ${bd_name}
190 | | ... | ${settings}
191 | | Run keyword and expect error | *ValueError*
192 | | ... | Honeycomb should show interfaces assigned to bridge domain
193 | | ... | ${node} | ${interface1} | ${interface2} | ${bd_name} | ${settings}
194
195 | VAT should show interfaces assigned to bridge domain
196 | | [Documentation] | Uses VAT to verify interface assignment to\
197 | | ... | bridge domain.
198 | | ...
199 | | ... | *Arguments:*
200 | | ... | - node - Information about a DUT node. Type: dictionary
201 | | ... | - index - Index of bridge domains on VPP node. Starts from 0,\
202 | | ... | new BDs reuse numbers after a bridge domain is removed. Type: int
203 | | ... | - interface1, interface2 - names of interfaces to check bridge domain\
204 | | ... | assignment on. Type: string
205 | | ... | - settings - bridge domain specific interface settings.\
206 | | ... | Type: dictionary
207 | | ...
208 | | ... | *Example:*
209 | | ...
210 | | ... | \| VAT should show interfaces assigned to bridge domain \
211 | | ... | \| ${nodes['DUT1']} \| ${4} \| GigabitEthernet0/8/0 \
212 | | ... | \| GigabitEthernet0/9/0 \| ${{split_horizon_group:2, bvi:False}} \|
213 | | [Arguments] | ${node} | ${index} | ${interface1} | ${interface2}
214 | | ... | ${settings}
215 | | ${if1_index}= | Get interface sw index | ${node} | ${interface1}
216 | | ${if2_index}= | Get interface sw index | ${node} | ${interface2}
217 | | ${if_indices}= | Create list | ${if1_index} | ${if2_index}
218 | | ${bd_data}= | VPP get bridge domain data | ${node}
219 | | ${bd_interfaces}= | Set Variable | ${bd_data[${index}]['sw_if']}
220 | | @{bd_interfaces}= | Create List | ${bd_interfaces[0]} | ${bd_interfaces[1]}
221 | | :FOR | ${interface} | IN | @{bd_interfaces}
222 | | | Should contain | ${if_indices} | ${interface['sw_if_index']}
223 | | | Should be equal | ${interface['shg']} | ${settings['split_horizon_group']}
224
225 | VAT should not show interfaces assigned to bridge domain
226 | | [Documentation] | Uses VAT to verify interface assignment to\
227 | | ... | bridge domain, and expects to fail.
228 | | ...
229 | | ... | *Arguments:*
230 | | ... | - node - information about a DUT node. Type: dictionary
231 | | ... | - index - index of bridge domains on VPP node. Starts from 0,\
232 | | ... | new BDs reuse numbers after a bridge domain is removed. Type: integer
233 | | ... | - interface1, interface2 - names of interfaces to check bridge domain\
234 | | ... | assignment on. Type: string
235 | | ... | - settings - bridge domain specific interface settings.\
236 | | ... | Type: dictionary
237 | | ...
238 | | ... | *Example:*
239 | | ...
240 | | ... | \| VAT should not show interfaces assigned to bridge domain \
241 | | ... | \| ${nodes['DUT1']} \| ${4} \| GigabitEthernet0/8/0 \
242 | | ... | \| GigabitEthernet0/9/0 \| ${{split_horizon_group:2, bvi:False}} \|
243 | | [Arguments] | ${node} | ${index} | ${interface1} | ${interface2}
244 | | ... | ${settings}
245 | | Run keyword and expect error | *No JSON object could be decoded*
246 | | ... | VAT should show interfaces assigned to bridge domain
247 | | ... | ${node} | ${index} | ${interface1} | ${interface2} | ${settings}
248
249 | Honeycomb removes all bridge domains
250 | | [Documentation] | Uses Honeycomb API to remove all bridge domains from the \
251 | | ... | VPP node.
252 | | ...
253 | | ... | *Arguments:*
254 | | ... | - node - Information about a DUT node. Type: dictionary
255 | | ...
256 | | ... | *Example:*
257 | | ...
258 | | ... | \| Honeycomb removes all bridge domains \| ${nodes['DUT1']} \|
259 | | [Arguments] | ${node}
260 | | Remove all bds | ${node}
261
262 | Honeycomb should show no bridge domains
263 | | [Documentation] | Uses Honeycomb API to verify the removal of all\
264 | | ... | bridge domains.
265 | | ...
266 | | ... | *Arguments:*
267 | | ... | - node - Information about a DUT node. Type: dictionary
268 | | ...
269 | | ... | *Example:*
270 | | ...
271 | | ... | \| Honeycomb should show no bridge domains \| ${nodes['DUT1']} \|
272 | | [Arguments] | ${node}
273 | | ${bd_data}= | Get all BDs oper data | ${node}
274 | | Should be empty | ${bd_data}
275
276 | VAT should show no bridge domains
277 | | [Documentation] | Uses VAT to verify the removal of all bridge domains.
278 | | ...
279 | | ... | *Arguments:*
280 | | ... | - node - Information about a DUT node. Type: dictionary
281 | | ...
282 | | ... | *Example:*
283 | | ...
284 | | ... | \| VAT should show no bridge domains \| ${nodes['DUT1']} \|
285 | | [Arguments] | ${node}
286 | | Run Keyword And Expect Error | ValueError: No JSON object could be decoded
287 | | ... | VPP get bridge domain data | ${node}
288
289 | Honeycomb adds interface to bridge domain
290 | | [Documentation] | Uses Honeycomb API to assign interface to a bridge\
291 | | ... | domain.
292 | | ...
293 | | ... | *Arguments:*
294 | | ... | - node - Information about a DUT node. Type: dictionary
295 | | ... | - interface - Name of interface to assign to bridge domain.\
296 | | ... | Type: string
297 | | ... | - bd_name - Name of the bridge domain. Type: string
298 | | ... | - settings - Bridge domain specific interface settings.\
299 | | ... | Type: dictionary
300 | | ...
301 | | ... | *Example:*
302 | | ...
303 | | ... | \| Honeycomb adds interfaces to bridge domain \| ${nodes['DUT1']} \
304 | | ... | \| GigabitEthernet0/8/0 \| bd-04 \
305 | | ... | \| ${{split_horizon_group:2, bvi:False}} \|
306 | | ...
307 | | [Arguments] | ${node} | ${interface} | ${bd_name} | ${settings}
308 | | ...
309 | | interfaceAPI.Add bridge domain to interface
310 | | ... | ${node} | ${interface} | ${settings['bridge-domain']}
311 | | ... | ${settings['split-horizon-group']}
312 | | ... | ${settings['bridged-virtual-interface']}
313
314 | Bridge domain configuration in interface operational data should be empty
315 | | [Documentation] | Get interface operational data and retrieve bridge
316 | | ... | domain configuration from it. It should be empty.
317 | | ...
318 | | ... | *Arguments:*
319 | | ... | - node - Information about a DUT node. Type: dictionary
320 | | ... | - interface - Name of interface where the bridge domain parameters \
321 | | ... | will be checked.Type: string
322 | | ...
323 | | ... | *Example:*
324 | | ... | \| Bridge domain configuration in interface operational data should \
325 | | ... | be empty \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \|
326 | | ...
327 | | [Arguments] | ${node} | ${interface}
328 | | ...
329 | | ${if_data}= | interfaceAPI.Get BD Oper Data From Interface
330 | | ... | ${node} | ${interface}
331 | | Should be empty | ${if_data}
332
333 | Bridge domain configuration in interface operational data should be
334 | | [Documentation] | Get interface operational data and retrieve bridge
335 | | ... | domain configuration from it. Compare the data to the expected one.
336 | | ...
337 | | ... | *Arguments:*
338 | | ... | - node - Information about a DUT node. Type: dictionary
339 | | ... | - interface - Name of interface where the bridge domain parameters \
340 | | ... | will be checked. Type: string
341 | | ... | - bd_settings - The referential bridge domain data. Type: dictionary
342 | | ...
343 | | ... | *Example:*
344 | | ... | \| Bridge domain configuration in interface operational data should \
345 | | ... | be \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| ${if_bd_settings} \|
346 | | ...
347 | | [Arguments] | ${node} | ${interface} | ${bd_settings}
348 | | ...
349 | | ${if_data}= | interfaceAPI.Get BD Oper Data From Interface
350 | | ... | ${node} | ${interface}
351 | | interfaceAPI.Compare Data Structures | ${if_data} | ${bd_settings}
352
353 | VAT removes bridge domain
354 | | [Documentation] Remove the specified bridge domain using VAT.
355 | | ...
356 | | ... | *Arguments:*
357 | | ... | - node - Information about a DUT node. Type: dictionary
358 | | ... | - bd_id - Bridge domain ID. Type: integer
359 | | ...
360 | | ... | *Example:*
361 | | ... | \| VAT removes bridge domain \
362 | | ... | \| ${nodes['DUT1']} \| 1 \|
363 | | ...
364 | | [Arguments] | ${node} | ${bd_id}
365 | | ...
366 | | Delete Bridge Domain VAT | ${node} | ${bd_id}