FIX: Do not set sriov_numvfs of QAT card to 0 in case of SW crypto tests
[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 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 VAT 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 VAT 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 discovery test
671 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
672 | | ... | tests.
673 | | ...
674 | | ... | *Arguments:*
675 | | ... | - rate - Rate for sending packets. Type: string
676 | | ... | - framesize - L2 Frame Size [B]. Type: integer
677 | | ... | - topology_type - Topology type. Type: string
678 | | ...
679 | | ... | *Example:*
680 | | ...
681 | | ... | \| Tear down performance discovery test \| 4.0mpps \| 64 \
682 | | ... | \| 3-node-IPv4 \|
683 | | ...
684 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
685 | | ...
686 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
687 | | Show VAT History On All DUTs | ${nodes}
688 | | Run Keyword If Test Failed
689 | | ... | Set Test Variable | ${pkt_trace} | ${True}
690 | | Run Keyword If Test Failed
691 | | ... | Traffic should pass with no loss | ${perf_trial_duration} | ${rate}
692 | | ... | ${framesize} | ${topology_type} | fail_on_loss=${False}
693
694 | Tear down performance mrr test
695 | | [Documentation] | Common test teardown for max-received-rate performance
696 | | ... | tests.
697 | | ...
698 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
699 | | Show VAT History On All DUTs | ${nodes}
700
701 | Tear down performance test with wrk
702 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
703 | | ... | tests.
704 | | ...
705 | | ... | *Example:*
706 | | ...
707 | | ... | \| Tear down performance test with wrk \|
708 | | ...
709 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
710 | | Show VAT History On All DUTs | ${nodes}
711 | | Show statistics on all DUTs | ${nodes}
712
713 | Tear down performance test with container
714 | | [Documentation]
715 | | ... | Common test teardown for performance tests which uses containers.
716 | | ...
717 | | :FOR | ${container_group} | IN | @{container_groups}
718 | | | Destroy all '${container_group}' containers
719
720 | Tear down performance test with vhost and VM with dpdk-testpmd
721 | | [Documentation] | Common test teardown for performance tests which use
722 | | ... | vhost(s) and VM(s) with dpdk-testpmd.
723 | | ...
724 | | ... | *Arguments:*
725 | | ... | - rate - Rate for sending packets. Type: string
726 | | ... | - framesize - L2 Frame Size [B]. Type: integer
727 | | ... | - topology_type - Topology type. Type: string
728 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
729 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
730 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
731 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
732 | | ...
733 | | ... | *Example:*
734 | | ...
735 | | ... | \| Tear down performance test with vhost and VM with dpdk-testpmd \
736 | | ... | \| 4.0mpps \| 64 \| 3-node-IPv4 \| ${node['DUT1']} \| ${dut_vm_refs} \
737 | | ... | \| ${node['DUT2']} \| ${dut_vm_refs} \|
738 | | ...
739 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
740 | | ... | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
741 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
742 | | ...
743 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
744 | | Show VAT History On All DUTs | ${nodes}
745 | | Show VPP vhost on all DUTs | ${nodes}
746 | | Show statistics on all DUTs | ${nodes}
747 | | Run Keyword If Test Failed
748 | | ... | Traffic should pass with no loss | ${perf_trial_duration} | ${rate}
749 | | ... | ${framesize} | ${topology_type} | fail_on_loss=${False}
750 | | Run keyword unless | ${dut1_node}==${None}
751 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
752 | | Run keyword unless | ${dut2_node}==${None}
753 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
754
755 | Tear down mrr test with vhost and VM with dpdk-testpmd
756 | | [Documentation] | Common test teardown for mrr tests which use
757 | | ... | vhost(s) and VM(s) with dpdk-testpmd.
758 | | ...
759 | | ... | *Arguments:*
760 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
761 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
762 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
763 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
764 | | ...
765 | | ... | *Example:*
766 | | ...
767 | | ... | \| Tear down performance test with vhost and VM with dpdk-testpmd \
768 | | ... | \| ${node['DUT1']} \| ${dut_vm_refs} \
769 | | ... | \| ${node['DUT2']} \| ${dut_vm_refs} \|
770 | | ...
771 | | [Arguments] | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
772 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
773 | | ...
774 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
775 | | Show VAT History On All DUTs | ${nodes}
776 | | Show VPP vhost on all DUTs | ${nodes}
777 | | Show statistics on all DUTs | ${nodes}
778 | | Run keyword unless | ${dut1_node}==${None}
779 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
780 | | Run keyword unless | ${dut2_node}==${None}
781 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
782
783 | Tear down performance test with vhost and VM with dpdk-testpmd and ACL
784 | | [Documentation] | Common test teardown for performance tests which use
785 | | ... | vhost(s) and VM(s) with ACL and dpdk-testpmd.
786 | | ...
787 | | ... | *Arguments:*
788 | | ... | - rate - Rate for sending packets. Type: string
789 | | ... | - framesize - L2 Frame Size [B]. Type: integer
790 | | ... | - topology_type - Topology type. Type: string
791 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
792 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
793 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
794 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
795 | | ...
796 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
797 | | ... | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
798 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
799 | | ...
800 | | Tear down performance test with vhost and VM with dpdk-testpmd
801 | | ... | ${rate} | ${framesize} | ${topology_type}
802 | | ... | ${dut1_node} | ${dut1_vm_refs}
803 | | ... | ${dut2_node} | ${dut2_vm_refs}
804 | | Run Keyword If Test Failed | Vpp Log Plugin Acl Settings | ${dut1}
805 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
806 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
807
808 | Tear down mrr test with vhost and VM with dpdk-testpmd and ACL
809 | | [Documentation] | Common test teardown for mrr tests which use
810 | | ... | vhost(s) and VM(s) with ACL and dpdk-testpmd.
811 | | ...
812 | | ... | *Arguments:*
813 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
814 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
815 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
816 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
817 | | ...
818 | | [Arguments] | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
819 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
820 | | ...
821 | | Tear down mrr test with vhost and VM with dpdk-testpmd
822 | | ... | ${dut1_node} | ${dut1_vm_refs}
823 | | ... | ${dut2_node} | ${dut2_vm_refs}
824 | | Run Keyword If Test Failed | Vpp Log Plugin Acl Settings | ${dut1}
825 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
826 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
827
828 | Tear down performance pdrchk test with vhost and VM with dpdk-testpmd
829 | | [Documentation] | Common test teardown for performance pdrchk tests which \
830 | | ... | use vhost(s) and VM(s) with dpdk-testpmd.
831 | | ...
832 | | ... | *Arguments:*
833 | | ... | - rate - Rate for sending packets. Type: string
834 | | ... | - framesize - L2 Frame Size [B]. Type: integer
835 | | ... | - topology_type - Topology type. Type: string
836 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
837 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
838 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
839 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
840 | | ...
841 | | ... | *Example:*
842 | | ...
843 | | ... | \| Tear down performance pdrchk test with vhost and VM with \
844 | | ... | dpdk-testpmd \| 4.0mpps \| 64 \| 3-node-IPv4 \| ${node['DUT1']} \
845 | | ... | \| ${dut_vm_refs} \| ${node['DUT2']} \| ${dut_vm_refs} \|
846 | | ...
847 | | [Arguments] | ${rate} | ${framesize} | ${topology_type}
848 | | ... | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
849 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
850 | | ...
851 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
852 | | Show VAT History On All DUTs | ${nodes}
853 | | Show VPP vhost on all DUTs | ${nodes}
854 | | Show statistics on all DUTs | ${nodes}
855 | | Run keyword unless | ${dut1_node}==${None}
856 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
857 | | Run keyword unless | ${dut2_node}==${None}
858 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
859
860 | Tear down performance mrr test with vhost and VM with dpdk-testpmd
861 | | [Documentation] | Common test teardown for performance mrr tests which \
862 | | ... | use vhost(s) and VM(s) with dpdk-testpmd.
863 | | ...
864 | | ... | *Arguments:*
865 | | ... | - dut1_node - Node where to clean qemu. Type: dictionary
866 | | ... | - dut1_vm_refs - VM references on node. Type: dictionary
867 | | ... | - dut2_node - Node where to clean qemu. Type: dictionary
868 | | ... | - dut2_vm_refs - VM references on node. Type: dictionary
869 | | ...
870 | | ... | *Example:*
871 | | ...
872 | | ... | \| Tear down performance mrr test with vhost and VM with \
873 | | ... | dpdk-testpmd \| ${node['DUT1']} \| ${dut_vm_refs} \| ${node['DUT2']} \
874 | | ... | \| ${dut_vm_refs} \|
875 | | ...
876 | | [Arguments] | ${dut1_node}=${None} | ${dut1_vm_refs}=${None}
877 | | ... | ${dut2_node}=${None} | ${dut2_vm_refs}=${None}
878 | | ...
879 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
880 | | Show VAT History On All DUTs | ${nodes}
881 | | Show VPP vhost on all DUTs | ${nodes}
882 | | Run keyword unless | ${dut1_node}==${None}
883 | | ... | Tear down guest VM with dpdk-testpmd | ${dut1} | ${dut1_vm_refs}
884 | | Run keyword unless | ${dut2_node}==${None}
885 | | ... | Tear down guest VM with dpdk-testpmd | ${dut2} | ${dut2_vm_refs}
886
887 | Tear down DPDK 2-node performance topology
888 | | [Documentation]
889 | | ... | Suite teardown phase with traffic generator teardown.
890 | | ... | Cleanup DPDK test environment.
891 | | ...
892 | | Teardown traffic generator | ${tg}
893 | | Cleanup DPDK Environment | ${dut1} | ${dut1_if1} | ${dut1_if2}
894
895 | Tear down DPDK 3-node performance topology
896 | | [Documentation]
897 | | ... | Suite teardown phase with traffic generator teardown.
898 | | ... | Cleanup DPDK test environment.
899 | | ...
900 | | Teardown traffic generator | ${tg}
901 | | Cleanup DPDK Environment | ${dut1} | ${dut1_if1} | ${dut1_if2}
902 | | Cleanup DPDK Environment | ${dut2} | ${dut2_if1} | ${dut2_if2}
903
904 | Tear down performance discovery test with NAT
905 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
906 | | ... | tests with NAT feature used.
907 | | ...
908 | | ... | *Arguments:*
909 | | ... | - rate - Rate for sending packets. Type: string
910 | | ... | - framesize - L2 Frame Size [B]. Type: integer
911 | | ... | - traffic_profile - Traffic profile. Type: string
912 | | ...
913 | | ... | *Example:*
914 | | ...
915 | | ... | \| Tear down performance discovery test with NAT \| 100000pps \| 64 \
916 | | ... | \| ${traffic_profile} \|
917 | | ...
918 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
919 | | ...
920 | | Tear down performance discovery test | ${rate} | ${framesize}
921 | | ... | ${traffic_profile}
922 | | Show NAT verbose | ${dut1}
923 | | Show NAT verbose | ${dut2}
924
925 | Tear down mrr test with NAT
926 | | [Documentation] | Common test teardown for mrr performance \
927 | | ... | tests with NAT feature used.
928 | | ...
929 | | ... | \| Tear down mrr test with NAT \|
930 | | ...
931 | | Tear down performance mrr test
932 | | Show NAT verbose | ${dut1}
933 | | Show NAT verbose | ${dut2}
934
935 | Tear down performance test with ACL
936 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
937 | | ... | tests with ACL feature used.
938 | | ...
939 | | ... | *Arguments:*
940 | | ... | - rate - Rate for sending packets. Type: string
941 | | ... | - framesize - L2 Frame Size [B]. Type: integer
942 | | ... | - traffic_profile - Traffic profile. Type: string
943 | | ...
944 | | ... | *Example:*
945 | | ...
946 | | ... | \| Tear down performance test with ACL \| 100000pps \| 64 \
947 | | ... | \| ${traffic_profile} \|
948 | | ...
949 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
950 | | ...
951 | | Tear down performance discovery test | ${rate} | ${framesize}
952 | | ... | ${traffic_profile}
953 | | Run Keyword If Test Failed | Vpp Log Plugin Acl Settings | ${dut1}
954 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
955 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
956
957 | Tear down mrr test with ACL
958 | | [Documentation] | Common test teardown for mrr performance \
959 | | ... | tests with ACL feature used.
960 | | ...
961 | | ... | *Example:*
962 | | ...
963 | | ... | \| Tear down mrr test with ACL \|
964 | | ...
965 | | Tear down performance mrr test
966 | | Run Keyword If Test Failed | Vpp Log Plugin Acl Settings | ${dut1}
967 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
968 | | ... | Vpp Log Plugin Acl Interface Assignment | ${dut1}
969
970 | Tear down performance test with MACIP ACL
971 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
972 | | ... | tests with MACIP ACL feature used.
973 | | ...
974 | | ... | *Arguments:*
975 | | ... | - rate - Rate for sending packets. Type: string
976 | | ... | - framesize - L2 Frame Size [B]. Type: integer
977 | | ... | - traffic_profile - Traffic profile. Type: string
978 | | ...
979 | | ... | *Example:*
980 | | ...
981 | | ... | \| Tear down performance test with MACIP ACL \| 100000pps \| 64 \
982 | | ... | \| ${traffic_profile} \|
983 | | ...
984 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
985 | | ...
986 | | Tear down performance discovery test | ${rate} | ${framesize}
987 | | ... | ${traffic_profile}
988 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
989 | | ... | Vpp Log Macip Acl Settings | ${dut1}
990 | | Run Keyword And Ignore Error
991 | | ... | Vpp Log Macip Acl Interface Assignment | ${dut1}
992
993 | Tear down mrr test with MACIP ACL
994 | | [Documentation] | Common test teardown for mrr performance \
995 | | ... | tests with MACIP ACL feature used.
996 | | ...
997 | | ... | *Example:*
998 | | ...
999 | | ... | \| Tear down mrr test with MACIP ACL \|
1000 | | ...
1001 | | Tear down performance mrr test
1002 | | Run Keyword If Test Failed | Run Keyword And Ignore Error
1003 | | ... | Vpp Log Macip Acl Settings | ${dut1}
1004 | | Run Keyword And Ignore Error
1005 | | ... | Vpp Log Macip Acl Interface Assignment | ${dut1}
1006
1007 | Tear down performance test with Ligato Kubernetes
1008 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
1009 | | ... | tests with Ligato Kubernetes.
1010 | | ...
1011 | | Run Keyword If Test Failed
1012 | | ... | Get Kubernetes logs on all DUTs | ${nodes} | csit
1013 | | Run Keyword If Test Failed
1014 | | ... | Describe Kubernetes resource on all DUTs | ${nodes} | csit
1015 | | Delete Kubernetes resource on all DUTs | ${nodes} | csit
1016
1017 | Tear down performance test with SRv6 with encapsulation
1018 | | [Documentation] | Common test teardown for ndrdisc and pdrdisc performance \
1019 | | ... | tests with SRv6 with encapsulation feature used.
1020 | | ...
1021 | | ... | *Arguments:*
1022 | | ... | - rate - Rate for sending packets. Type: string
1023 | | ... | - framesize - L2 Frame Size [B]. Type: integer/string
1024 | | ... | - traffic_profile - Traffic profile. Type: string
1025 | | ...
1026 | | ... | *Example:*
1027 | | ...
1028 | | ... | \| Tear down performance test with SRv6 with encapsulation \
1029 | | ... | \| 100000pps \| 64 \| ${traffic_profile} \|
1030 | | ...
1031 | | [Arguments] | ${rate} | ${framesize} | ${traffic_profile}
1032 | | ...
1033 | | Tear down performance discovery test | ${rate} | ${framesize}
1034 | | ... | ${traffic_profile}
1035 | | Run Keyword If Test Failed | Show SR Policies on all DUTs | ${nodes}
1036 | | Run Keyword If Test Failed
1037 | | ... | Show SR Steering Policies on all DUTs | ${nodes}
1038 | | Run Keyword If Test Failed | Show SR LocalSIDs on all DUTs | ${nodes}
1039
1040 | Tear down mrr test with SRv6 with encapsulation
1041 | | [Documentation] | Common test teardown for mrr tests with SRv6 with \
1042 | | ... | encapsulation feature used.
1043 | | ...
1044 | | ... | *Example:*
1045 | | ...
1046 | | ... | \| Tear down mrr test with SRv6 with encapsulation \|
1047 | | ...
1048 | | Remove All Added Ports On All DUTs From Topology | ${nodes}
1049 | | Show VAT History On All DUTs | ${nodes}
1050 | | Run Keyword If Test Failed | Show SR Policies on all DUTs | ${nodes}
1051 | | Run Keyword If Test Failed
1052 | | ... | Show SR Steering Policies on all DUTs | ${nodes}
1053 | | Run Keyword If Test Failed | Show SR LocalSIDs on all DUTs | ${nodes}