CSIT-1205 Create AVF driver test
[csit.git] / resources / libraries / robot / performance / performance_setup.robot
1 # Copyright (c) 2018 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.DUTSetup
16 | Library | resources.tools.wrk.wrk
17 | Resource | resources/libraries/robot/performance/performance_configuration.robot
18 | Resource | resources/libraries/robot/performance/performance_utils.robot
19 | Resource | resources/libraries/robot/tcp/tcp_setup.robot
20 | Documentation | Performance suite keywords - Suite and test setups and
21 | ... | teardowns.
22
23 *** Keywords ***
24
25 # Keywords used in setups and teardowns
26
27 | Set variables in 2-node circular topology
28 | | [Documentation]
29 | | ... | Compute path for testing on two given nodes in circular
30 | | ... | topology and set corresponding suite variables.
31 | | ...
32 | | ... | _NOTE:_ This KW sets following suite variables:
33 | | ... | - tg - TG node
34 | | ... | - tg_if1 - 1st TG interface towards DUT.
35 | | ... | - tg_if2 - 2nd TG interface towards DUT.
36 | | ... | - dut1 - DUT1 node
37 | | ... | - dut1_if1 - 1st DUT interface towards TG.
38 | | ... | - dut1_if2 - 2nd DUT interface towards TG.
39 | | ...
40 | | Append Nodes | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['TG']}
41 | | Compute Path | always_same_link=${FALSE}
42 | | ${tg_if1} | ${tg}= | First Interface
43 | | ${dut1_if1} | ${dut1}= | First Ingress Interface
44 | | ${dut1_if2} | ${dut1}= | Last Egress Interface
45 | | ${tg_if2} | ${tg}= | Last Interface
46 | | Set Suite Variable | ${tg}
47 | | Set Suite Variable | ${tg_if1}
48 | | Set Suite Variable | ${tg_if2}
49 | | Set Suite Variable | ${dut1}
50 | | Set Suite Variable | ${dut1_if1}
51 | | Set Suite Variable | ${dut1_if2}
52
53 | Set variables in 3-node circular topology
54 | | [Documentation]
55 | | ... | Compute path for testing on three given nodes in circular
56 | | ... | topology and set corresponding suite variables.
57 | | ...
58 | | ... | _NOTE:_ This KW sets following suite variables:
59 | | ... | - tg - TG node
60 | | ... | - tg_if1 - TG interface towards DUT1.
61 | | ... | - tg_if2 - TG interface towards DUT2.
62 | | ... | - dut1 - DUT1 node
63 | | ... | - dut1_if1 - DUT1 interface towards TG.
64 | | ... | - dut1_if2 - DUT1 interface towards DUT2.
65 | | ... | - dut2 - DUT2 node
66 | | ... | - dut2_if1 - DUT2 interface towards DUT1.
67 | | ... | - dut2_if2 - DUT2 interface towards TG.
68 | | ...
69 | | Append Nodes | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['DUT2']}
70 | | ... | ${nodes['TG']}
71 | | Compute Path
72 | | ${tg_if1} | ${tg}= | Next Interface
73 | | ${dut1_if1} | ${dut1}= | Next Interface
74 | | ${dut1_if2} | ${dut1}= | Next Interface
75 | | ${dut2_if1} | ${dut2}= | Next Interface
76 | | ${dut2_if2} | ${dut2}= | Next Interface
77 | | ${tg_if2} | ${tg}= | Next Interface
78 | | Set Suite Variable | ${tg}
79 | | Set Suite Variable | ${tg_if1}
80 | | Set Suite Variable | ${tg_if2}
81 | | Set Suite Variable | ${dut1}
82 | | Set Suite Variable | ${dut1_if1}
83 | | Set Suite Variable | ${dut1_if2}
84 | | Set Suite Variable | ${dut2}
85 | | Set Suite Variable | ${dut2_if1}
86 | | Set Suite Variable | ${dut2_if2}
87
88 | Set variables in 2-node circular topology with DUT interface model
89 | | [Documentation]
90 | | ... | Compute path for testing on two given nodes in circular topology
91 | | ... | based on interface model provided as an argument and set
92 | | ... | corresponding suite variables.
93 | | ...
94 | | ... | *Arguments:*
95 | | ... | - iface_model - Interface model. Type: string
96 | | ...
97 | | ... | _NOTE:_ This KW sets following suite variables:
98 | | ... | - tg - TG node
99 | | ... | - tg_if1 - 1st TG interface towards DUT.
100 | | ... | - tg_if2 - 2nd TG interface towards DUT.
101 | | ... | - dut1 - DUT1 node
102 | | ... | - dut1_if1 - 1st DUT interface towards TG.
103 | | ... | - dut1_if2 - 2nd DUT interface towards TG.
104 | | ...
105 | | ... | *Example:*
106 | | ...
107 | | ... | \| Set variables in 2-node circular topology with DUT interface model\
108 | | ... | \| Intel-X520-DA2 \|
109 | | ...
110 | | [Arguments] | ${iface_model}
111 | | ...
112 | | ${iface_model_list}= | Create list | ${iface_model}
113 | | Append Node | ${nodes['TG']}
114 | | Append Node | ${nodes['DUT1']} | filter_list=${iface_model_list}
115 | | Append Node | ${nodes['TG']}
116 | | Compute Path | always_same_link=${FALSE}
117 | | ${tg_if1} | ${tg}= | First Interface
118 | | ${dut1_if1} | ${dut1}= | First Ingress Interface
119 | | ${dut1_if2} | ${dut1}= | Last Egress Interface
120 | | ${tg_if2} | ${tg}= | Last Interface
121 | | Set Suite Variable | ${tg}
122 | | Set Suite Variable | ${tg_if1}
123 | | Set Suite Variable | ${tg_if2}
124 | | Set Suite Variable | ${dut1}
125 | | Set Suite Variable | ${dut1_if1}
126 | | Set Suite Variable | ${dut1_if2}
127
128 | Set variables in 3-node circular topology with DUT interface model
129 | | [Documentation]
130 | | ... | Compute path for testing on three given nodes in circular topology
131 | | ... | based on interface model provided as an argument and set
132 | | ... | corresponding suite variables.
133 | | ...
134 | | ... | *Arguments:*
135 | | ... | - iface_model - Interface model. Type: string
136 | | ...
137 | | ... | _NOTE:_ This KW sets following suite variables:
138 | | ... | - tg - TG node
139 | | ... | - tg_if1 - TG interface towards DUT1.
140 | | ... | - tg_if2 - TG interface towards DUT2.
141 | | ... | - dut1 - DUT1 node
142 | | ... | - dut1_if1 - DUT1 interface towards TG.
143 | | ... | - dut1_if2 - DUT1 interface towards DUT2.
144 | | ... | - dut2 - DUT2 node
145 | | ... | - dut2_if1 - DUT2 interface towards DUT1.
146 | | ... | - dut2_if2 - DUT2 interface towards TG.
147 | | ...
148 | | ... | *Example:*
149 | | ...
150 | | ... | \| Set variables in 3-node circular topology with DUT interface model\
151 | | ... | \| Intel-X520-DA2 \|
152 | | ...
153 | | [Arguments] | ${iface_model}
154 | | ...
155 | | ${iface_model_list}= | Create list | ${iface_model}
156 | | Append Node | ${nodes['TG']}
157 | | Append Node | ${nodes['DUT1']} | filter_list=${iface_model_list}
158 | | Append Node | ${nodes['DUT2']} | filter_list=${iface_model_list}
159 | | Append Node | ${nodes['TG']}
160 | | Compute Path
161 | | ${tg_if1} | ${tg}= | Next Interface
162 | | ${dut1_if1} | ${dut1}= | Next Interface
163 | | ${dut1_if2} | ${dut1}= | Next Interface
164 | | ${dut2_if1} | ${dut2}= | Next Interface
165 | | ${dut2_if2} | ${dut2}= | Next Interface
166 | | ${tg_if2} | ${tg}= | Next Interface
167 | | Set Suite Variable | ${tg}
168 | | Set Suite Variable | ${tg_if1}
169 | | Set Suite Variable | ${tg_if2}
170 | | Set Suite Variable | ${dut1}
171 | | Set Suite Variable | ${dut1_if1}
172 | | Set Suite Variable | ${dut1_if2}
173 | | Set Suite Variable | ${dut2}
174 | | Set Suite Variable | ${dut2_if1}
175 | | Set Suite Variable | ${dut2_if2}
176
177 | Set variables in 3-node circular topology with DUT interface model with double link between DUTs
178 | | [Documentation]
179 | | ... | Compute path for testing on three given nodes in circular topology
180 | | ... | with double link between DUTs based on interface model provided as an
181 | | ... | argument and set corresponding suite variables.
182 | | ...
183 | | ... | *Arguments:*
184 | | ... | - iface_model - Interface model. Type: string
185 | | ...
186 | | ... | _NOTE:_ This KW sets following suite variables:
187 | | ... | - tg - TG node
188 | | ... | - tg_if1 - TG interface towards DUT1.
189 | | ... | - tg_if2 - TG interface towards DUT2.
190 | | ... | - dut1 - DUT1 node
191 | | ... | - dut1_if1 - DUT1 interface towards TG.
192 | | ... | - dut1_if2_1 - DUT1 interface 1 towards DUT2.
193 | | ... | - dut1_if2_2 - DUT1 interface 2 towards DUT2.
194 | | ... | - dut2 - DUT2 node
195 | | ... | - dut2_if1_1 - DUT2 interface 1 towards DUT1.
196 | | ... | - dut2_if1_2 - DUT2 interface 2 towards DUT1.
197 | | ... | - dut2_if2 - DUT2 interface towards TG.
198 | | ...
199 | | ... | *Example:*
200 | | ...
201 | | ... | \| Set variables in 3-node circular topology with DUT interface model\
202 | | ... | with double link between DUTs \| Intel-X520-DA2 \|
203 | | ...
204 | | [Arguments] | ${iface_model}
205 | | ...
206 | | ${iface_model_list}= | Create list | ${iface_model}
207 | | # Compute path TG - DUT1 with single link in between
208 | | Append Node | ${nodes['TG']}
209 | | Append Node | ${nodes['DUT1']} | filter_list=${iface_model_list}
210 | | Append Node | ${nodes['TG']}
211 | | Compute Path
212 | | ${tg_if1} | ${tg}= | Next Interface
213 | | ${dut1_if1} | ${dut1}= | Next Interface
214 | | # Compute path TG - DUT2 with single link in between
215 | | Clear Path
216 | | Append Node | ${nodes['TG']}
217 | | Append Node | ${nodes['DUT2']} | filter_list=${iface_model_list}
218 | | Append Node | ${nodes['TG']}
219 | | Compute Path
220 | | ${tg_if2} | ${tg}= | Next Interface
221 | | ${dut2_if2} | ${dut2}= | Next Interface
222 | | # Compute path DUT1 - DUT2 with double link in between
223 | | Clear Path
224 | | Append Node | ${nodes['DUT1']} | filter_list=${iface_model_list}
225 | | Append Node | ${nodes['DUT2']} | filter_list=${iface_model_list}
226 | | Append Node | ${nodes['DUT1']} | filter_list=${iface_model_list}
227 | | Compute Path | always_same_link=${FALSE}
228 | | ${dut1_if2_1} | ${dut1}= | First Interface
229 | | ${dut1_if2_2} | ${dut1}= | Last Interface
230 | | ${dut2_if1_1} | ${dut2}= | First Ingress Interface
231 | | ${dut2_if1_2} | ${dut2}= | Last Egress Interface
232 | | # Set suite variables
233 | | Set Suite Variable | ${tg}
234 | | Set Suite Variable | ${tg_if1}
235 | | Set Suite Variable | ${tg_if2}
236 | | Set Suite Variable | ${dut1}
237 | | Set Suite Variable | ${dut1_if1}
238 | | Set Suite Variable | ${dut1_if2_1}
239 | | Set Suite Variable | ${dut1_if2_2}
240 | | Set Suite Variable | ${dut2}
241 | | Set Suite Variable | ${dut2_if1_1}
242 | | Set Suite Variable | ${dut2_if1_2}
243 | | Set Suite Variable | ${dut2_if2}
244
245 | Tear down guest VM with dpdk-testpmd
246 | | [Documentation]
247 | | ... | Stop all qemu processes with dpdk-testpmd running on ${dut_node}.
248 | | ... | Argument is dictionary of all qemu nodes running with its names.
249 | | ... | Dpdk-testpmd is stopped gracefully with printing stats.
250 | | ...
251 | | ... | *Arguments:*
252 | | ... | - dut_node - Node where to clean qemu. Type: dictionary
253 | | ... | - dut_vm_refs - VM references on node. Type: dictionary
254 | | ...
255 | | ... | *Example:*
256 | | ...
257 | | ... | \| Tear down guest VM with dpdk-testpmd \| ${node['DUT1']} \
258 | | ... | \| ${dut_vm_refs} \|
259 | | ...
260 | | [Arguments] | ${dut_node} | ${dut_vm_refs}
261 | | ${vms_number}= | Get Length | ${dut_vm_refs}
262 | | ${index}= | Set Variable | ${0}
263 | | :FOR | ${vm_name} | IN | @{dut_vm_refs}
264 | | | ${vm}= | Get From Dictionary | ${dut_vm_refs} | ${vm_name}
265 | | | ${index}= | Evaluate | ${index} + 1
266 | | | Dpdk Testpmd Stop | ${vm}
267 | | | Run Keyword | ${vm_name}.Qemu Set Node | ${dut_node}
268 | | | Run Keyword | ${vm_name}.Qemu Clear Socks
269 | | | Run Keyword If | '${index}' == '${vms_number}' | ${vm_name}.Qemu Kill All
270
271 | Tear down guest VM
272 | | [Documentation]
273 | | ... | Stop all qemu processes running on ${dut_node}.
274 | | ... | Argument is dictionary of all qemu nodes running with its names.
275 | | ...
276 | | ... | *Arguments:*
277 | | ... | - dut_node - Node where to clean qemu. Type: dictionary
278 | | ... | - dut_vm_refs - VM references on node. Type: dictionary
279 | | ...
280 | | ... | *Example:*
281 | | ...
282 | | ... | \| Tear down guest VM \| ${node['DUT1']} \
283 | | ... | \| ${dut_vm_refs} \|
284 | | ...
285 | | [Arguments] | ${dut_node} | ${dut_vm_refs}
286 | | ${vms_number}= | Get Length | ${dut_vm_refs}
287 | | ${index}= | Set Variable | ${0}
288 | | :FOR | ${vm_name} | IN | @{dut_vm_refs}
289 | | | ${vm}= | Get From Dictionary | ${dut_vm_refs} | ${vm_name}
290 | | | ${index}= | Evaluate | ${index} + 1
291 | | | Run Keyword | ${vm_name}.Qemu Set Node | ${dut_node}
292 | | | Run Keyword | ${vm_name}.Qemu Clear Socks
293 | | | Run Keyword If | '${index}' == '${vms_number}' | ${vm_name}.Qemu Kill All
294
295 # Suite setups
296
297 | Set up 2-node performance topology with DUT's NIC model
298 | | [Documentation]
299 | | ... | Suite preparation phase that sets the default startup configuration of
300 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets the global
301 | | ... | variables used in test cases based on interface model provided as an
302 | | ... | argument. Initializes traffic generator.
303 | | ...
304 | | ... | *Arguments:*
305 | | ... | - topology_type - Topology type. Type: string
306 | | ... | - nic_model - Interface model. Type: string
307 | | ...
308 | | ... | *Example:*
309 | | ...
310 | | ... | \| 2-node Performance Suite Setup \| L2 \| Intel-X520-DA2 \|
311 | | ...
312 | | [Arguments] | ${topology_type} | ${nic_model}
313 | | ...
314 | | Set variables in 2-node circular topology with DUT interface model
315 | | ... | ${nic_model}
316 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
317 | | ... | ${dut1} | ${dut1_if1} | ${dut1} | ${dut1_if2} | ${topology_type}
318
319 | Set up 2-node-switched performance topology with DUT's NIC model
320 | | [Documentation]
321 | | ... | Suite preparation phase that sets the default startup configuration of
322 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets the global
323 | | ... | variables used in test cases based on interface model provided as an
324 | | ... | argument. Initializes traffic generator.
325 | | ...
326 | | ... | *Arguments:*
327 | | ... | - topology_type - Topology type. Type: string
328 | | ... | - nic_model - Interface model. Type: string
329 | | ... | - tg_if1_dest_mac - Interface 1 destination MAC address. Type: string
330 | | ... | - tg_if2_dest_mac - Interface 2 destination MAC address. Type: string
331 | | ...
332 | | ... | *Example:*
333 | | ...
334 | | ... | \| 2-node Performance Suite Setup \| L2 \| Intel-X520-DA2 \
335 | | ... | \| 22:22:33:44:55:66 \| 22:22:33:44:55:55 \|
336 | | ...
337 | | [Arguments] | ${topology_type} | ${nic_model} | ${tg_if1_dest_mac}
338 | | ... | ${tg_if2_dest_mac}
339 | | ...
340 | | Set variables in 2-node circular topology with DUT interface model
341 | | ... | ${nic_model}
342 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
343 | | ... | ${dut1} | ${dut1_if1} | ${dut1} | ${dut1_if2} | ${topology_type}
344 | | ... | ${tg_if1_dest_mac} | ${tg_if2_dest_mac}
345
346 | Set up 3-node performance topology with DUT's NIC model
347 | | [Documentation]
348 | | ... | Suite preparation phase that sets the default startup configuration of
349 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets the global
350 | | ... | variables used in test cases based on interface model provided as an
351 | | ... | argument. Initializes traffic generator.
352 | | ...
353 | | ... | *Arguments:*
354 | | ... | - topology_type - Topology type. Type: string
355 | | ... | - nic_model - Interface model. Type: string
356 | | ...
357 | | ... | *Example:*
358 | | ...
359 | | ... | \| Set up 3-node performance topology with DUT's NIC model \| L2 \
360 | | ... | \| Intel-X520-DA2 \|
361 | | ...
362 | | [Arguments] | ${topology_type} | ${nic_model}
363 | | ...
364 | | Set variables in 3-node circular topology with DUT interface model
365 | | ... | ${nic_model}
366 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
367 | | ... | ${dut1} | ${dut1_if1} | ${dut2} | ${dut2_if2} | ${topology_type}
368
369 | Set up 3-node performance topology with DUT's NIC model with double link between DUTs
370 | | [Documentation]
371 | | ... | Suite preparation phase that sets the default startup configuration of
372 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets the global
373 | | ... | variables used in test cases based on interface model provided as an
374 | | ... | argument. Initializes traffic generator.
375 | | ...
376 | | ... | *Arguments:*
377 | | ... | - topology_type - Topology type. Type: string
378 | | ... | - nic_model - Interface model. Type: string
379 | | ...
380 | | ... | *Example:*
381 | | ...
382 | | ... | \| Set up 3-node performance topology with DUT's NIC model with \
383 | | ... | double link between DUTs \| L2 \| Intel-X520-DA2 \|
384 | | ...
385 | | [Arguments] | ${topology_type} | ${nic_model}
386 | | ...
387 | | Set variables in 3-node circular topology with DUT interface model with double link between DUTs
388 | | ... | ${nic_model}
389 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
390 | | ... | ${dut1} | ${dut1_if1} | ${dut2} | ${dut2_if2} | ${topology_type}
391
392 | Set up DPDK 2-node performance topology with DUT's NIC model
393 | | [Documentation]
394 | | ... | Updates interfaces on all nodes and sets the global
395 | | ... | variables used in test cases based on interface model provided as an
396 | | ... | argument. Initializes traffic generator. Initializes DPDK test
397 | | ... | environment.
398 | | ...
399 | | ... | *Arguments:*
400 | | ... | - topology_type - Topology type. Type: string
401 | | ... | - nic_model - Interface model. Type: string
402 | | ...
403 | | ... | *Example:*
404 | | ...
405 | | ... | \| Set up DPDK 2-node performance topology with DUT's NIC model \
406 | | ... | \| L2 \| Intel-X520-DA2 \|
407 | | ...
408 | | [Arguments] | ${topology_type} | ${nic_model}
409 | | ...
410 | | Set variables in 2-node circular topology with DUT interface model
411 | | ... | ${nic_model}
412 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
413 | | ... | ${dut1} | ${dut1_if1} | ${dut1} | ${dut1_if2} | ${topology_type}
414 | | Initialize DPDK Environment | ${dut1} | ${dut1_if1} | ${dut1_if2}
415
416 | Set up DPDK 3-node performance topology with DUT's NIC model
417 | | [Documentation]
418 | | ... | Updates interfaces on all nodes and sets the global
419 | | ... | variables used in test cases based on interface model provided as an
420 | | ... | argument. Initializes traffic generator. Initializes DPDK test
421 | | ... | environment.
422 | | ...
423 | | ... | *Arguments:*
424 | | ... | - topology_type - Topology type. Type: string
425 | | ... | - nic_model - Interface model. Type: string
426 | | ...
427 | | ... | *Example:*
428 | | ...
429 | | ... | \| 3-node Performance Suite Setup \| L2 \| Intel-X520-DA2 \|
430 | | ...
431 | | [Arguments] | ${topology_type} | ${nic_model}
432 | | ...
433 | | Set variables in 3-node circular topology with DUT interface model
434 | | ... | ${nic_model}
435 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
436 | | ... | ${dut1} | ${dut1_if1} | ${dut2} | ${dut2_if2} | ${topology_type}
437 | | Initialize DPDK Environment | ${dut1} | ${dut1_if1} | ${dut1_if2}
438 | | Initialize DPDK Environment | ${dut2} | ${dut2_if1} | ${dut2_if2}
439
440 | Set up SRIOV 2-node performance topology with DUT's NIC model
441 | | [Documentation]
442 | | ... | Suite preparation phase that sets default startup configuration of
443 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets global
444 | | ... | variables used in test cases based on interface model provided as an
445 | | ... | argument. Initializes traffic generator.
446 | | ... | It configures PCI device with VFs on all DUTs.
447 | | ...
448 | | ... | *Arguments:*
449 | | ... | - topology_type - Topology type. Type: string
450 | | ... | - nic_model - Interface model. Type: string
451 | | ... | - vf_driver - Virtual function driver. Type: string
452 | | ... | - numvfs - Number of VFs. Type: integer
453 | | ...
454 | | ... | *Example:*
455 | | ...
456 | | ... | \| Set up SRIOV 2-node performance topology with DUT's NIC model \
457 | | ... | \| L2 \| Intel-X520-DA2 \| AVF \|
458 | | ...
459 | | [Arguments] | ${topology_type} | ${nic_model} | ${vf_driver}
460 | | ... | ${numvfs}=${1}
461 | | ...
462 | | Set variables in 2-node circular topology with DUT interface model
463 | | ... | ${nic_model}
464 | | Run Keyword If | '${vf_driver}' == 'AVF'
465 | | ... | Configure AVF interfaces on all DUTs | numvfs=${numvfs}
466 | | ... | topology_type=${topology_type}
467 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
468 | | ... | ${dut1} | ${dut1_if1_vf0} | ${dut1} | ${dut1_if2_vf0}
469 | | ... | ${topology_type}
470
471 | Set up SRIOV 3-node performance topology with DUT's NIC model
472 | | [Documentation]
473 | | ... | Suite preparation phase that sets default startup configuration of
474 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets global
475 | | ... | variables used in test cases based on interface model provided as an
476 | | ... | argument. Initializes traffic generator.
477 | | ... | It configures PCI device with VFs on all DUTs.
478 | | ...
479 | | ... | *Arguments:*
480 | | ... | - topology_type - Topology type. Type: string
481 | | ... | - nic_model - Interface model. Type: string
482 | | ... | - vf_driver - Virtual function driver. Type: string
483 | | ... | - numvfs - Number of VFs. Type: integer
484 | | ...
485 | | ... | *Example:*
486 | | ...
487 | | ... | \| Set up SRIOV 3-node performance topology with DUT's NIC model \
488 | | ... | \| L2 \| Intel-X520-DA2 \| AVF \|
489 | | ...
490 | | [Arguments] | ${topology_type} | ${nic_model} | ${vf_driver}
491 | | ... | ${numvfs}=${1}
492 | | ...
493 | | Set variables in 3-node circular topology with DUT interface model
494 | | ... | ${nic_model}
495 | | Run Keyword If | '${vf_driver}' == 'AVF'
496 | | ... | Configure AVF interfaces on all DUTs | numvfs=${numvfs}
497 | | ... | topology_type=${topology_type}
498 | | Initialize traffic generator | ${tg} | ${tg_if1} | ${tg_if2}
499 | | ... | ${dut1} | ${dut1_if1_vf0} | ${dut2} | ${dut2_if2_vf0}
500 | | ... | ${topology_type}
501
502 | Set up IPSec performance test suite
503 | | [Documentation]
504 | | ... | Suite preparation phase that sets default startup configuration of
505 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets global
506 | | ... | variables used in test cases based on interface model provided as an
507 | | ... | argument. Initializes traffic generator.
508 | | ... | Then it configures crypto device and kernel module on all DUTs.
509 | | ...
510 | | ... | *Arguments:*
511 | | ... | - topology_type - Topology type. Type: string
512 | | ... | - nic_model - Interface model. Type: string
513 | | ... | - crypto_type - Crypto device type - HW_cryptodev or SW_cryptodev
514 | | ... | (Optional). Type: string, default value: HW_cryptodev
515 | | ...
516 | | ... | *Example:*
517 | | ...
518 | | ... | \| Set up IPSec performance test suite \| L2 \
519 | | ... | \| Intel-X520-DA2 \|
520 | | ...
521 | | [Arguments] | ${topology_type} | ${nic_model} | ${crypto_type}=HW_cryptodev
522 | | ...
523 | | Set up 3-node performance topology with DUT's NIC model
524 | | ... | ${topology_type} | ${nic_model}
525 | | ${numvfs}= | Set Variable If
526 | | ... | '${crypto_type}' == 'HW_cryptodev' | ${32}
527 | | ... | '${crypto_type}' == 'SW_cryptodev' | ${0}
528 | | Configure crypto device on all DUTs | force_init=${True} | numvfs=${numvfs}
529 | | Run Keyword If | '${crypto_type}' == 'HW_cryptodev'
530 | | ... | Configure kernel module on all DUTs | igb_uio | force_load=${True}
531
532 | Set up performance topology with containers
533 | | [Documentation]
534 | | ... | Suite preparation phase that starts containers
535 | | ...
536 | | Set Suite Variable | @{container_groups} | @{EMPTY}
537 | | Construct VNF containers on all DUTs
538 | | Acquire all 'VNF' containers
539 | | Create all 'VNF' containers
540 | | Configure VPP in all 'VNF' containers
541 | | Install VPP in all 'VNF' containers
542
543 | Set up performance test suite with MEMIF
544 | | [Documentation]
545 | | ... | Append memif_plugin.so to the list of enabled plugins.
546 | | ...
547 | | Set Suite Variable | @{plugins_to_enable}
548 | | Append To List | ${plugins_to_enable} | memif_plugin.so
549
550 | Set up performance test suite with NAT
551 | | [Documentation]
552 | | ... | Append nat_plugin.so to the list of enabled plugins.
553 | | ...
554 | | Set Suite Variable | @{plugins_to_enable}
555 | | Append To List | ${plugins_to_enable} | nat_plugin.so
556
557 | Set up performance test suite with ACL
558 | | [Documentation]
559 | | ... | Append acl_plugin.so to the list of enabled plugins.
560 | | ...
561 | | Set Suite Variable | @{plugins_to_enable}
562 | | Append To List | ${plugins_to_enable} | acl_plugin.so
563
564 | Set up performance test suite with AVF driver
565 | | [Documentation]
566 | | ... | Append avf_plugin.so to the list of enabled plugins.
567 | | ...
568 | | Set Suite Variable | @{plugins_to_enable}
569 | | Append To List | ${plugins_to_enable} | avf_plugin.so
570
571 | Set up performance test suite with Static SRv6 proxy
572 | | [Documentation]
573 | | ... | Append srv6as_plugin.so to the list of enabled plugins.
574 | | ...
575 | | Set Suite Variable | @{plugins_to_enable}
576 | | Append To List | ${plugins_to_enable} | srv6as_plugin.so
577
578 | Set up performance test suite with Dynamic SRv6 proxy
579 | | [Documentation]
580 | | ... | Append srv6ad_plugin.so to the list of enabled plugins.
581 | | ...
582 | | Set Suite Variable | @{plugins_to_enable}
583 | | Append To List | ${plugins_to_enable} | srv6ad_plugin.so
584
585 | Set up performance test suite with Masquerading SRv6 proxy
586 | | [Documentation]
587 | | ... | Append srv6am_plugin.so to the list of enabled plugins.
588 | | ...
589 | | Set Suite Variable | @{plugins_to_enable}
590 | | Append To List | ${plugins_to_enable} | srv6am_plugin.so
591
592 | Set up performance test suite with LACP mode link bonding
593 | | [Documentation]
594 | | ... | Append lacp_plugin.so to the list of enabled plugins.
595 | | ...
596 | | Set Suite Variable | @{plugins_to_enable}
597 | | Append To List | ${plugins_to_enable} | lacp_plugin.so
598
599 | Set up 3-node performance topology with wrk and DUT's NIC model
600 | | [Documentation]
601 | | ... | Suite preparation phase that sets the default startup configuration of
602 | | ... | VPP on all DUTs. Updates interfaces on all nodes and sets the global
603 | | ... | variables used in test cases based on interface model provided as an
604 | | ... | argument. Installs the traffic generator.
605 | | ...
606 | | ... | *Arguments:*
607 | | ... | - iface_model - Interface model. Type: string
608 | | ...
609 | | ... | *Example:*
610 | | ...
611 | | ... | \| Set up 3-node performance topology with wrk and DUT's NIC model\
612 | | ... | \| Intel-X520-DA2 \|
613 | | ...
614 | | [Arguments] | ${iface_model}
615 | | ...
616 | | Set variables in 3-node circular topology with DUT interface model
617 | | ... | ${iface_model}
618 | | Iface update numa node | ${tg}
619 # Make sure TRex is stopped
620 | | ${running}= | Is TRex running | ${tg}
621 | | Run keyword if | ${running}==${True} | Teardown traffic generator | ${tg}
622 | | ${curr_driver}= | Get PCI dev driver | ${tg}
623 | | ... | ${tg['interfaces']['${tg_if1}']['pci_address']}
624 | | Run keyword if | '${curr_driver}'!='${None}'
625 | | ... | PCI Driver Unbind | ${tg} |
626 | | ... | ${tg['interfaces']['${tg_if1}']['pci_address']}
627 # Bind tg_if1 to driver specified in the topology
628 | | ${driver}= | Get Variable Value | ${tg['interfaces']['${tg_if1}']['driver']}
629 | | PCI Driver Bind | ${tg}
630 | | ... | ${tg['interfaces']['${tg_if1}']['pci_address']} | ${driver}
631 # Set IP on tg_if1
632 | | ${intf_name}= | Get Linux interface name | ${tg}
633 | | ... | ${tg['interfaces']['${tg_if1}']['pci_address']}
634 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.10.1 | 24
635 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.20.1 | 24
636 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.30.1 | 24
637 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.40.1 | 24
638 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.50.1 | 24
639 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.60.1 | 24
640 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.70.1 | 24
641 | | Set Linux interface IP | ${tg} | ${intf_name} | 192.168.80.1 | 24
642 | | Set Linux interface up | ${tg} | ${intf_name}
643 | | Install wrk | ${tg}
644
645 # Suite teardowns
646
647 | Tear down 2-node performance topology
648 | | [Documentation]
649 | | ... | Suite teardown phase with traffic generator teardown.
650 | | ...
651 | | Teardown traffic generator | ${tg}
652
653 | Tear down 2-node performance topology with container
654 | | [Documentation]
655 | | ... | Suite teardown phase with traffic generator teardown and container
656 | | ... | destroy.
657 | | ...
658 | | Teardown traffic generator | ${tg}
659 | | :FOR | ${group} | IN | @{container_groups}
660 | | | Destroy all '${group}' containers
661
662 | Tear down 3-node performance topology
663 | | [Documentation]
664 | | ... | Suite teardown phase with traffic generator teardown.
665 | | ...
666 | | Teardown traffic generator | ${tg}
667
668 | Tear down 3-node performance topology with container
669 | | [Documentation]
670 | | ... | Suite teardown phase with traffic generator teardown and container
671 | | ... | destroy.
672 | | ...
673 | | Teardown traffic generator | ${tg}
674 | | :FOR | ${group} | IN | @{container_groups}
675 | | | Destroy all '${group}' containers
676
677 # Tests setups
678
679 | Set up performance test
680 | | [Documentation] | Common test setup for performance tests.
681 | | ...
682 | | Reset VAT History On All DUTs | ${nodes}
683 | | Create base startup configuration of VPP on all DUTs
684
685 | Set up tcp performance test
686 | | [Documentation] | Common test setup for TCP performance tests.
687 | | ...
688 | | Reset VAT History On All DUTs | ${nodes}
689 | | Create base startup configuration of VPP for TCP tests on all DUTs
690
691 | Set up performance test with Ligato Kubernetes
692 | | [Documentation] | Common test setup for performance tests with Ligato \
693 | | ... | Kubernetes.
694 | | ...
695 | | Apply Kubernetes resource on all duts | ${nodes} | namespaces/csit.yaml
696 | | Apply Kubernetes resource on all duts | ${nodes} | pods/kafka.yaml
697 | | Apply Kubernetes resource on all duts | ${nodes} | pods/etcdv3.yaml
698 | | Apply Kubernetes resource on all duts | ${nodes}
699 | | ... | configmaps/vswitch-agent-cfg.yaml
700 | | Apply Kubernetes resource on all duts | ${nodes}
701 | | ... | configmaps/vnf-agent-cfg.yaml
702 | | Apply Kubernetes resource on all duts | ${nodes}
703 | | ... | pods/contiv-sfc-controller.yaml
704 | | Apply Kubernetes resource on all duts | ${nodes}
705 | | ... | pods/contiv-vswitch.yaml
706
707 # Tests teardowns
708
709 | Tear down performance discovery test
710 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
711 | | ... | tests.
712 | | ...
713 | | ... | *Arguments:*
714 | | ... | - rate - Rate for sending packets. Type: string
715 | | ... | - framesize - L2 Frame Size [B]. Type: integer
716 | | ... | - topology_type - Topology type. Type: string
717 | | ...
718 | | ... | *Example:*
719 | | ...
720 | | ... | \| Tear down performance discovery test \| 4.0mpps \| 64 \
721 | | ... | \| 3-node-IPv4 \|
722 | | ...
723 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
724 | | ...
725 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
726 | | Show VAT History On All DUTs | ${nodes}
727 | | Run Keyword If Test Failed
728 | | ... | Set Test Variable | ${pkt_trace} | ${True}
729 | | Run Keyword If Test Failed
730 | | ... | Traffic should pass with no loss | ${perf_trial_duration} | ${rate}
731 | | ... | ${framesize} | ${topology_type} | fail_on_loss=${False}
732
733 | Tear down performance ndrchk test
734 | | [Documentation] | Common test teardown for ndrchk performance tests.
735 | | ...
736 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
737 | | Show VAT History On All DUTs | ${nodes}
738
739 | Tear down performance pdrchk test
740 | | [Documentation] | Common test teardown for pdrchk performance tests.
741 | | ...
742 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
743 | | Show VAT History On All DUTs | ${nodes}
744
745 | Tear down performance mrr test
746 | | [Documentation] | Common test teardown for max-received-rate performance
747 | | ... | tests.
748 | | ...
749 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
750 | | Show VAT History On All DUTs | ${nodes}
751
752 | Tear down performance test with wrk
753 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
754 | | ... | tests.
755 | | ...
756 | | ... | *Example:*
757 | | ...
758 | | ... | \| Tear down performance test with wrk \|
759 | | ...
760 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
761 | | Show VAT History On All DUTs | ${nodes}
762 | | Show statistics on all DUTs | ${nodes}
763
764 | Tear down performance test with vhost and VM with dpdk-testpmd
765 | | [Documentation] | Common test teardown for performance tests which use
766 | | ... | vhost(s) and VM(s) with dpdk-testpmd.
767 | | ...
768 | | ... | *Arguments:*
769 | | ... | - rate - Rate for sending packets. Type: string
770 | | ... | - framesize - L2 Frame Size [B]. Type: integer
771 | | ... | - topology_type - Topology type. Type: string
772 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
773 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
774 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
775 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
776 | | ...
777 | | ... | *Example:*
778 | | ...
779 | | ... | \| Tear down performance test with vhost and VM with dpdk-testpmd \
780 | | ... | \| 4.0mpps \| 64 \| 3-node-IPv4 \| ${node['DUT1']} \| ${dut_vm_refs} \
781 | | ... | \| ${node['DUT2']} \| ${dut_vm_refs} \|
782 | | ...
783 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
784 | | ... | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
785 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
786 | | ...
787 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
788 | | Show VAT History On All DUTs | ${nodes}
789 | | Show VPP vhost on all DUTs | ${nodes}
790 | | Show statistics on all DUTs | ${nodes}
791 | | Run Keyword If Test Failed
792 | | ... | Traffic should pass with no loss | ${perf_trial_duration} | ${rate}
793 | | ... | ${framesize} | ${topology_type} | fail_on_loss=${False}
794 | | Run keyword unless | ${dut1_node}==${None}
795 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
796 | | Run keyword unless | ${dut2_node}==${None}
797 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
798
799 | Tear down mrr test with vhost and VM with dpdk-testpmd
800 | | [Documentation] | Common test teardown for mrr tests which use
801 | | ... | vhost(s) and VM(s) with dpdk-testpmd.
802 | | ...
803 | | ... | *Arguments:*
804 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
805 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
806 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
807 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
808 | | ...
809 | | ... | *Example:*
810 | | ...
811 | | ... | \| Tear down performance test with vhost and VM with dpdk-testpmd \
812 | | ... | \| ${node['DUT1']} \| ${dut_vm_refs} \
813 | | ... | \| ${node['DUT2']} \| ${dut_vm_refs} \|
814 | | ...
815 | | [Arguments] | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
816 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
817 | | ...
818 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
819 | | Show VAT History On All DUTs | ${nodes}
820 | | Show VPP vhost on all DUTs | ${nodes}
821 | | Show statistics on all DUTs | ${nodes}
822 | | Run keyword unless | ${dut1_node}==${None}
823 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
824 | | Run keyword unless | ${dut2_node}==${None}
825 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
826
827 | Tear down performance test with vhost and VM with dpdk-testpmd and ACL
828 | | [Documentation] | Common test teardown for performance tests which use
829 | | ... | vhost(s) and VM(s) with ACL and dpdk-testpmd.
830 | | ...
831 | | ... | *Arguments:*
832 | | ... | - rate - Rate for sending packets. Type: string
833 | | ... | - framesize - L2 Frame Size [B]. Type: integer
834 | | ... | - topology_type - Topology type. Type: string
835 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
836 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
837 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
838 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
839 | | ...
840 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
841 | | ... | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
842 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
843 | | ...
844 | | Tear down performance test with vhost and VM with dpdk-testpmd
845 | | ... | ${rate} | ${framesize} | ${topology_type}
846 | | ... | ${dut1_node} | ${dut1_vm_refs}
847 | | ... | ${dut2_node} | ${dut2_vm_refs}
848 | | Vpp Log Plugin Acl Settings | ${dut1}
849 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
850 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
851
852 | Tear down mrr test with vhost and VM with dpdk-testpmd and ACL
853 | | [Documentation] | Common test teardown for mrr tests which use
854 | | ... | vhost(s) and VM(s) with ACL and dpdk-testpmd.
855 | | ...
856 | | ... | *Arguments:*
857 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
858 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
859 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
860 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
861 | | ...
862 | | [Arguments] | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
863 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
864 | | ...
865 | | Tear down mrr test with vhost and VM with dpdk-testpmd
866 | | ... | ${dut1_node} | ${dut1_vm_refs}
867 | | ... | ${dut2_node} | ${dut2_vm_refs}
868 | | Vpp Log Plugin Acl Settings | ${dut1}
869 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
870 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
871
872 | Tear down performance pdrchk test with vhost and VM with dpdk-testpmd
873 | | [Documentation] | Common test teardown for performance pdrchk tests which \
874 | | ... | use vhost(s) and VM(s) with dpdk-testpmd.
875 | | ...
876 | | ... | *Arguments:*
877 | | ... | - rate - Rate for sending packets. Type: string
878 | | ... | - framesize - L2 Frame Size [B]. Type: integer
879 | | ... | - topology_type - Topology type. Type: string
880 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
881 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
882 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
883 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
884 | | ...
885 | | ... | *Example:*
886 | | ...
887 | | ... | \| Tear down performance pdrchk test with vhost and VM with \
888 | | ... | dpdk-testpmd \| 4.0mpps \| 64 \| 3-node-IPv4 \| ${node['DUT1']} \
889 | | ... | \| ${dut_vm_refs} \| ${node['DUT2']} \| ${dut_vm_refs} \|
890 | | ...
891 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
892 | | ... | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
893 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
894 | | ...
895 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
896 | | Show VAT History On All DUTs | ${nodes}
897 | | Show VPP vhost on all DUTs | ${nodes}
898 | | Show statistics on all DUTs | ${nodes}
899 | | Run keyword unless | ${dut1_node}==${None}
900 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
901 | | Run keyword unless | ${dut2_node}==${None}
902 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
903
904 | Tear down performance mrr test with vhost and VM with dpdk-testpmd
905 | | [Documentation] | Common test teardown for performance mrr tests which \
906 | | ... | use vhost(s) and VM(s) with dpdk-testpmd.
907 | | ...
908 | | ... | *Arguments:*
909 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
910 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
911 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
912 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
913 | | ...
914 | | ... | *Example:*
915 | | ...
916 | | ... | \| Tear down performance mrr test with vhost and VM with \
917 | | ... | dpdk-testpmd \| ${node['DUT1']} \| ${dut_vm_refs} \| ${node['DUT2']} \
918 | | ... | \| ${dut_vm_refs} \|
919 | | ...
920 | | [Arguments] | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
921 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
922 | | ...
923 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
924 | | Show VAT History On All DUTs | ${nodes}
925 | | Show VPP vhost on all DUTs | ${nodes}
926 | | Run keyword unless | ${dut1_node}==${None}
927 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
928 | | Run keyword unless | ${dut2_node}==${None}
929 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
930
931 | Tear down DPDK 2-node performance topology
932 | | [Documentation]
933 | | ... | Suite teardown phase with traffic generator teardown.
934 | | ... | Cleanup DPDK test environment.
935 | | ...
936 | | Teardown traffic generator | ${tg}
937 | | Cleanup DPDK Environment | ${dut1} | ${dut1_if1} | ${dut1_if2}
938
939 | Tear down DPDK 3-node performance topology
940 | | [Documentation]
941 | | ... | Suite teardown phase with traffic generator teardown.
942 | | ... | Cleanup DPDK test environment.
943 | | ...
944 | | Teardown traffic generator | ${tg}
945 | | Cleanup DPDK Environment | ${dut1} | ${dut1_if1} | ${dut1_if2}
946 | | Cleanup DPDK Environment | ${dut2} | ${dut2_if1} | ${dut2_if2}
947
948 | Tear down performance discovery test with NAT
949 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
950 | | ... | tests with NAT feature used.
951 | | ...
952 | | ... | *Arguments:*
953 | | ... | - rate - Rate for sending packets. Type: string
954 | | ... | - framesize - L2 Frame Size [B]. Type: integer
955 | | ... | - traffic_profile - Traffic profile. Type: string
956 | | ...
957 | | ... | *Example:*
958 | | ...
959 | | ... | \| Tear down performance discovery test with NAT \| 100000pps \| 64 \
960 | | ... | \| ${traffic_profile} \|
961 | | ...
962 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
963 | | ...
964 | | Tear down performance discovery test | ${rate} | ${framesize}
965 | | ... | ${traffic_profile}
966 | | Show NAT verbose | ${dut1}
967 | | Show NAT verbose | ${dut2}
968
969 | Tear down mrr test with NAT
970 | | [Documentation] | Common test teardown for mrr performance \
971 | | ... | tests with NAT feature used.
972 | | ...
973 | | ... | \| Tear down mrr test with NAT \|
974 | | ...
975 | | Tear down performance mrr test
976 | | Show NAT verbose | ${dut1}
977 | | Show NAT verbose | ${dut2}
978
979 | Tear down performance test with ACL
980 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
981 | | ... | tests with ACL feature used.
982 | | ...
983 | | ... | *Arguments:*
984 | | ... | - rate - Rate for sending packets. Type: string
985 | | ... | - framesize - L2 Frame Size [B]. Type: integer
986 | | ... | - traffic_profile - Traffic profile. Type: string
987 | | ...
988 | | ... | *Example:*
989 | | ...
990 | | ... | \| Tear down performance test with ACL \| 100000pps \| 64 \
991 | | ... | \| ${traffic_profile} \|
992 | | ...
993 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
994 | | ...
995 | | Tear down performance discovery test | ${rate} | ${framesize}
996 | | ... | ${traffic_profile}
997 | | Vpp Log Plugin Acl Settings | ${dut1}
998 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
999 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
1000
1001 | Tear down mrr test with ACL
1002 | | [Documentation] | Common test teardown for mrr performance \
1003 | | ... | tests with ACL feature used.
1004 | | ...
1005 | | ... | *Example:*
1006 | | ...
1007 | | ... | \| Tear down mrr test with ACL \|
1008 | | ...
1009 | | Tear down performance mrr test
1010 | | Vpp Log Plugin Acl Settings | ${dut1}
1011 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
1012 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
1013
1014 | Tear down performance test with MACIP ACL
1015 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
1016 | | ... | tests with MACIP ACL feature used.
1017 | | ...
1018 | | ... | *Arguments:*
1019 | | ... | - rate - Rate for sending packets. Type: string
1020 | | ... | - framesize - L2 Frame Size [B]. Type: integer
1021 | | ... | - traffic_profile - Traffic profile. Type: string
1022 | | ...
1023 | | ... | *Example:*
1024 | | ...
1025 | | ... | \| Tear down performance test with MACIP ACL \| 100000pps \| 64 \
1026 | | ... | \| ${traffic_profile} \|
1027 | | ...
1028 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
1029 | | ...
1030 | | Tear down performance discovery test | ${rate} | ${framesize}
1031 | | ... | ${traffic_profile}
1032 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
1033 | | ... | Vpp Log Macip Acl Settings | ${dut1}
1034 | | Run Keyword And Ignore Error
1035 | | ... | Vpp Log Macip Acl Interface Assignment | ${dut1}
1036
1037 | Tear down mrr test with MACIP ACL
1038 | | [Documentation] | Common test teardown for mrr performance \
1039 | | ... | tests with MACIP ACL feature used.
1040 | | ...
1041 | | ... | *Example:*
1042 | | ...
1043 | | ... | \| Tear down mrr test with MACIP ACL \|
1044 | | ...
1045 | | Tear down performance mrr test
1046 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
1047 | | ... | Vpp Log Macip Acl Settings | ${dut1}
1048 | | Run Keyword And Ignore Error
1049 | | ... | Vpp Log Macip Acl Interface Assignment | ${dut1}
1050
1051 | Tear down performance test with Ligato Kubernetes
1052 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
1053 | | ... | tests with Ligato Kubernetes.
1054 | | ...
1055 | | Run Keyword If Test Failed
1056 | | ... | Get Kubernetes logs on all DUTs | ${nodes} | csit
1057 | | Run Keyword If Test Failed
1058 | | ... | Describe Kubernetes resource on all DUTs | ${nodes} | csit
1059 | | Delete Kubernetes resource on all DUTs | ${nodes} | csit
1060
1061 | Tear down performance test with SRv6 with encapsulation
1062 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
1063 | | ... | tests with SRv6 with encapsulation feature used.
1064 | | ...
1065 | | ... | *Arguments:*
1066 | | ... | - rate - Rate for sending packets. Type: string
1067 | | ... | - framesize - L2 Frame Size [B]. Type: integer/string
1068 | | ... | - traffic_profile - Traffic profile. Type: string
1069 | | ...
1070 | | ... | *Example:*
1071 | | ...
1072 | | ... | \| Tear down performance test with SRv6 with encapsulation \
1073 | | ... | \| 100000pps \| 64 \| ${traffic_profile} \|
1074 | | ...
1075 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
1076 | | ...
1077 | | Tear down performance discovery test | ${rate} | ${framesize}
1078 | | ... | ${traffic_profile}
1079 | | Run Keyword If Test Failed | Show SR Policies on all DUTs | ${nodes}
1080 | | Run Keyword If Test Failed
1081 | | ... | Show SR Steering Policies on all DUTs | ${nodes}
1082 | | Run Keyword If Test Failed | Show SR LocalSIDs on all DUTs | ${nodes}
1083
1084 | Tear down mrr test with SRv6 with encapsulation
1085 | | [Documentation] | Common test teardown for mrr tests with SRv6 with \
1086 | | ... | encapsulation feature used.
1087 | | ...
1088 | | ... | *Example:*
1089 | | ...
1090 | | ... | \| Tear down mrr test with SRv6 with encapsulation \|
1091 | | ...
1092 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
1093 | | Show VAT History On All DUTs | ${nodes}
1094 | | Run Keyword If Test Failed | Show SR Policies on all DUTs | ${nodes}
1095 | | Run Keyword If Test Failed
1096 | | ... | Show SR Steering Policies on all DUTs | ${nodes}
1097 | | Run Keyword If Test Failed | Show SR LocalSIDs on all DUTs | ${nodes}