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