4d06528b30ec8d635bb7d9a70f0091ccff8126dd
[csit.git] / tests / suites / performance / Long_IPv6_Intel-X520-DA2.robot
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Resource | resources/libraries/robot/performance.robot
16 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | PERFTEST | HW_ENV | PERFTEST_LONG
17 | ...        | NIC_Intel-X520-DA2
18 | Suite Setup | 3-node Performance Suite Setup with DUT's NIC model
19 | ... | L3 | Intel-X520-DA2
20 | Suite Teardown | 3-node Performance Suite Teardown
21 | Test Setup | Setup all DUTs before test
22 | Test Teardown | Run Keyword | Remove startup configuration of VPP from all DUTs
23 | Documentation | *RFC2544: Pkt throughput IPv6 routing test cases*
24 | ...
25 | ... | *[Top] Network Topologies:* TG-DUT1-DUT2-TG 3-node circular topology
26 | ... | with single links between nodes.
27 | ... | *[Enc] Packet Encapsulations:* Eth-IPv6 for IPv6 routing.
28 | ... | *[Cfg] DUT configuration:* DUT1 and DUT2 are configured with IPv6
29 | ... | routing and two static IPv6 /64 route entries. DUT1 and DUT2 tested with
30 | ... | 2p10GE NIC X520 Niantic by Intel.
31 | ... | *[Ver] TG verification:* TG finds and reports throughput NDR (Non Drop
32 | ... | Rate) with zero packet loss tolerance or throughput PDR (Partial Drop
33 | ... | Rate) with non-zero packet loss tolerance (LT) expressed in percentage
34 | ... | of packets transmitted. NDR and PDR are discovered for different
35 | ... | Ethernet L2 frame sizes using either binary search or linear search
36 | ... | algorithms with configured starting rate and final step that determines
37 | ... | throughput measurement resolution. Test packets are generated by TG on
38 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups
39 | ... | (flow-group per direction, 253 flows per flow-group) with all packets
40 | ... | containing Ethernet header, IPv6 header and static payload.
41 | ... | MAC addresses are matching MAC addresses of the TG node interfaces.
42 | ... | *[Ref] Applicable standard specifications:* RFC2544.
43
44 *** Test Cases ***
45 | TC01: 78B NDR binary search - DUT IPv6 - 1thread 1core 1rxq
46 | | [Documentation]
47 | | ... | [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core, \
48 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 78 Byte frames
49 | | ... | using binary search start at 10GE linerate, step 100kpps.
50 | | [Tags] | 1_THREAD_NOHTT_RXQUEUES_1 | SINGLE_THREAD | NDR
51 | | ${framesize}= | Set Variable | 78
52 | | ${min_rate}= | Set Variable | 100000
53 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_78B}
54 | | ${binary_min}= | Set Variable | ${min_rate}
55 | | ${binary_max}= | Set Variable | ${max_rate}
56 | | ${threshold}= | Set Variable | ${min_rate}
57 | | Given Add '1' worker threads and rxqueues '1' without HTT to all DUTs
58 | | And   Add all PCI devices to all DUTs
59 | | And   Add No Multi Seg to all DUTs
60 | | And   Apply startup configuration on all VPP DUTs
61 | | And   IPv6 forwarding initialized in a 3-node circular topology
62 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
63 | | ...                                       | ${binary_max} | 3-node-IPv6
64 | | ...                                       | ${min_rate} | ${max_rate}
65 | | ...                                       | ${threshold}
66
67 | TC02: 78B PDR binary search - DUT IPv6 - 1thread 1core 1rxq
68 | | [Documentation]
69 | | ... | [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core, \
70 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 78 Byte frames
71 | | ... | using binary search start at 10GE linerate, step 100kpps, LT=0.5%.
72 | | [Tags] | 1_THREAD_NOHTT_RXQUEUES_1 | SINGLE_THREAD | PDR
73 | | ${framesize}= | Set Variable | 78
74 | | ${min_rate}= | Set Variable | 100000
75 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_78B}
76 | | ${binary_min}= | Set Variable | ${min_rate}
77 | | ${binary_max}= | Set Variable | ${max_rate}
78 | | ${threshold}= | Set Variable | ${min_rate}
79 | | Given Add '1' worker threads and rxqueues '1' without HTT to all DUTs
80 | | And   Add all PCI devices to all DUTs
81 | | And   Add No Multi Seg to all DUTs
82 | | And   Apply startup configuration on all VPP DUTs
83 | | And   IPv6 forwarding initialized in a 3-node circular topology
84 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
85 | | ...                                       | ${binary_max} | 3-node-IPv6
86 | | ...                                       | ${min_rate} | ${max_rate}
87 | | ...                                       | ${threshold}
88 | | ...                                       | ${glob_loss_acceptance}
89 | | ...                                       | ${glob_loss_acceptance_type}
90
91 | TC03: 1518B NDR binary search - DUT IPv6 - 1thread 1core 1rxq
92 | | [Documentation]
93 | | ... | [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core, \
94 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte frames
95 | | ... | using binary search start at 10GE linerate, step 10kpps.
96 | | [Tags] | 1_THREAD_NOHTT_RXQUEUES_1 | SINGLE_THREAD | NDR
97 | | ${framesize}= | Set Variable | 1518
98 | | ${min_rate}= | Set Variable | 10000
99 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
100 | | ${binary_min}= | Set Variable | ${min_rate}
101 | | ${binary_max}= | Set Variable | ${max_rate}
102 | | ${threshold}= | Set Variable | ${min_rate}
103 | | Given Add '1' worker threads and rxqueues '1' without HTT to all DUTs
104 | | And   Add all PCI devices to all DUTs
105 | | And   Add No Multi Seg to all DUTs
106 | | And   Apply startup configuration on all VPP DUTs
107 | | And   IPv6 forwarding initialized in a 3-node circular topology
108 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
109 | | ...                                       | ${binary_max} | 3-node-IPv6
110 | | ...                                       | ${min_rate} | ${max_rate}
111 | | ...                                       | ${threshold}
112
113 | TC04: 1518B PDR binary search - DUT IPv6 - 1thread 1core 1rxq
114 | | [Documentation]
115 | | ... | [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core, \
116 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte frames
117 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
118 | | [Tags] | 1_THREAD_NOHTT_RXQUEUES_1 | SINGLE_THREAD | PDR
119 | | ${framesize}= | Set Variable | 1518
120 | | ${min_rate}= | Set Variable | 10000
121 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
122 | | ${binary_min}= | Set Variable | ${min_rate}
123 | | ${binary_max}= | Set Variable | ${max_rate}
124 | | ${threshold}= | Set Variable | ${min_rate}
125 | | Given Add '1' worker threads and rxqueues '1' without HTT to all DUTs
126 | | And   Add all PCI devices to all DUTs
127 | | And   Add No Multi Seg to all DUTs
128 | | And   Apply startup configuration on all VPP DUTs
129 | | And   IPv6 forwarding initialized in a 3-node circular topology
130 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
131 | | ...                                       | ${binary_max} | 3-node-IPv6
132 | | ...                                       | ${min_rate} | ${max_rate}
133 | | ...                                       | ${threshold}
134 | | ...                                       | ${glob_loss_acceptance}
135 | | ...                                       | ${glob_loss_acceptance_type}
136
137 | TC05: 9000B NDR binary search - DUT IPv6 - 1thread 1core 1rxq
138 | | [Documentation]
139 | | ... | [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core, \
140 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 9000 Byte frames
141 | | ... | using binary search start at 10GE linerate, step 5kpps.
142 | | [Tags] | 1_THREAD_NOHTT_RXQUEUES_1 | SINGLE_THREAD | NDR
143 | | ${framesize}= | Set Variable | 9000
144 | | ${min_rate}= | Set Variable | 5000
145 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
146 | | ${binary_min}= | Set Variable | ${min_rate}
147 | | ${binary_max}= | Set Variable | ${max_rate}
148 | | ${threshold}= | Set Variable | ${min_rate}
149 | | Given Add '1' worker threads and rxqueues '1' without HTT to all DUTs
150 | | And   Add all PCI devices to all DUTs
151 | | And   Apply startup configuration on all VPP DUTs
152 | | And   IPv6 forwarding initialized in a 3-node circular topology
153 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
154 | | ...                                       | ${binary_max} | 3-node-IPv6
155 | | ...                                       | ${min_rate} | ${max_rate}
156 | | ...                                       | ${threshold}
157
158 | TC06: 9000B PDR binary search - DUT IPv6 - 1thread 1core 1rxq
159 | | [Documentation]
160 | | ... | [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core, \
161 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 9000 Byte frames
162 | | ... | using binary search start at 10GE linerate, step 5kpps, LT=0.5%.
163 | | [Tags] | 1_THREAD_NOHTT_RXQUEUES_1 | SINGLE_THREAD | PDR
164 | | ${framesize}= | Set Variable | 9000
165 | | ${min_rate}= | Set Variable | 5000
166 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
167 | | ${binary_min}= | Set Variable | ${min_rate}
168 | | ${binary_max}= | Set Variable | ${max_rate}
169 | | ${threshold}= | Set Variable | ${min_rate}
170 | | Given Add '1' worker threads and rxqueues '1' without HTT to all DUTs
171 | | And   Add all PCI devices to all DUTs
172 | | And   Apply startup configuration on all VPP DUTs
173 | | And   IPv6 forwarding initialized in a 3-node circular topology
174 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
175 | | ...                                       | ${binary_max} | 3-node-IPv6
176 | | ...                                       | ${min_rate} | ${max_rate}
177 | | ...                                       | ${threshold}
178 | | ...                                       | ${glob_loss_acceptance}
179 | | ...                                       | ${glob_loss_acceptance_type}
180
181 | TC07: 78B NDR binary search - DUT IPv6 - 2threads 2cores 1rxq
182 | | [Documentation]
183 | | ... | [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores, \
184 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 78 Byte frames
185 | | ... | using binary search start at 10GE linerate, step 100kpps.
186 | | [Tags] | 2_THREAD_NOHTT_RXQUEUES_1 | MULTI_THREAD | NDR
187 | | ${framesize}= | Set Variable | 78
188 | | ${min_rate}= | Set Variable | 100000
189 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_78B}
190 | | ${binary_min}= | Set Variable | ${min_rate}
191 | | ${binary_max}= | Set Variable | ${max_rate}
192 | | ${threshold}= | Set Variable | ${min_rate}
193 | | Given Add '2' worker threads and rxqueues '1' without HTT to all DUTs
194 | | And   Add all PCI devices to all DUTs
195 | | And   Add No Multi Seg to all DUTs
196 | | And   Apply startup configuration on all VPP DUTs
197 | | And   IPv6 forwarding initialized in a 3-node circular topology
198 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
199 | | ...                                       | ${binary_max} | 3-node-IPv6
200 | | ...                                       | ${min_rate} | ${max_rate}
201 | | ...                                       | ${threshold}
202
203 | TC08: 78B PDR binary search - DUT IPv6 - 2threads 2cores 1rxq
204 | | [Documentation]
205 | | ... | [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores, \
206 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 78 Byte frames
207 | | ... | using binary search start at 10GE linerate, step 100kpps, LT=0.5%.
208 | | [Tags] | 2_THREAD_NOHTT_RXQUEUES_1 | MULTI_THREAD | PDR
209 | | ${framesize}= | Set Variable | 78
210 | | ${min_rate}= | Set Variable | 100000
211 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_78B}
212 | | ${binary_min}= | Set Variable | ${min_rate}
213 | | ${binary_max}= | Set Variable | ${max_rate}
214 | | ${threshold}= | Set Variable | ${min_rate}
215 | | Given Add '2' worker threads and rxqueues '1' without HTT to all DUTs
216 | | And   Add all PCI devices to all DUTs
217 | | And   Add No Multi Seg to all DUTs
218 | | And   Apply startup configuration on all VPP DUTs
219 | | And   IPv6 forwarding initialized in a 3-node circular topology
220 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
221 | | ...                                       | ${binary_max} | 3-node-IPv6
222 | | ...                                       | ${min_rate} | ${max_rate}
223 | | ...                                       | ${threshold}
224 | | ...                                       | ${glob_loss_acceptance}
225 | | ...                                       | ${glob_loss_acceptance_type}
226
227 | TC09: 1518B NDR binary search - DUT IPv6 - 2threads 2cores 1rxq
228 | | [Documentation]
229 | | ... | [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores, \
230 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte frames
231 | | ... | using binary search start at 10GE linerate, step 10kpps.
232 | | [Tags] | 2_THREAD_NOHTT_RXQUEUES_1 | MULTI_THREAD | NDR
233 | | ${framesize}= | Set Variable | 1518
234 | | ${min_rate}= | Set Variable | 10000
235 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
236 | | ${binary_min}= | Set Variable | ${min_rate}
237 | | ${binary_max}= | Set Variable | ${max_rate}
238 | | ${threshold}= | Set Variable | ${min_rate}
239 | | Given Add '2' worker threads and rxqueues '1' without HTT to all DUTs
240 | | And   Add all PCI devices to all DUTs
241 | | And   Add No Multi Seg to all DUTs
242 | | And   Apply startup configuration on all VPP DUTs
243 | | And   IPv6 forwarding initialized in a 3-node circular topology
244 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
245 | | ...                                       | ${binary_max} | 3-node-IPv6
246 | | ...                                       | ${min_rate} | ${max_rate}
247 | | ...                                       | ${threshold}
248
249 | TC10: 1518B PDR binary search - DUT IPv6 - 2threads 2cores 1rxq
250 | | [Documentation]
251 | | ... | [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores, \
252 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte frames
253 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
254 | | [Tags] | 2_THREAD_NOHTT_RXQUEUES_1 | MULTI_THREAD | PDR
255 | | ${framesize}= | Set Variable | 1518
256 | | ${min_rate}= | Set Variable | 10000
257 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
258 | | ${binary_min}= | Set Variable | ${min_rate}
259 | | ${binary_max}= | Set Variable | ${max_rate}
260 | | ${threshold}= | Set Variable | ${min_rate}
261 | | Given Add '2' worker threads and rxqueues '1' without HTT to all DUTs
262 | | And   Add all PCI devices to all DUTs
263 | | And   Add No Multi Seg to all DUTs
264 | | And   Apply startup configuration on all VPP DUTs
265 | | And   IPv6 forwarding initialized in a 3-node circular topology
266 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
267 | | ...                                       | ${binary_max} | 3-node-IPv6
268 | | ...                                       | ${min_rate} | ${max_rate}
269 | | ...                                       | ${threshold}
270 | | ...                                       | ${glob_loss_acceptance}
271 | | ...                                       | ${glob_loss_acceptance_type}
272
273 | TC11: 9000B NDR binary search - DUT IPv6 - 2threads 2cores 1rxq
274 | | [Documentation]
275 | | ... | [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores, \
276 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 9000 Byte frames
277 | | ... | using binary search start at 10GE linerate, step 5kpps.
278 | | [Tags] | 2_THREAD_NOHTT_RXQUEUES_1 | MULTI_THREAD | NDR
279 | | ${framesize}= | Set Variable | 9000
280 | | ${min_rate}= | Set Variable | 5000
281 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
282 | | ${binary_min}= | Set Variable | ${min_rate}
283 | | ${binary_max}= | Set Variable | ${max_rate}
284 | | ${threshold}= | Set Variable | ${min_rate}
285 | | Given Add '2' worker threads and rxqueues '1' without HTT to all DUTs
286 | | And   Add all PCI devices to all DUTs
287 | | And   Apply startup configuration on all VPP DUTs
288 | | And   IPv6 forwarding initialized in a 3-node circular topology
289 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
290 | | ...                                       | ${binary_max} | 3-node-IPv6
291 | | ...                                       | ${min_rate} | ${max_rate}
292 | | ...                                       | ${threshold}
293
294 | TC12: 9000B PDR binary search - DUT IPv6 - 2threads 2cores 1rxq
295 | | [Documentation]
296 | | ... | [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores, \
297 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 9000 Byte frames
298 | | ... | using binary search start at 10GE linerate, step 5kpps, LT=0.5%.
299 | | [Tags] | 2_THREAD_NOHTT_RXQUEUES_1 | MULTI_THREAD | PDR
300 | | ${framesize}= | Set Variable | 9000
301 | | ${min_rate}= | Set Variable | 5000
302 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
303 | | ${binary_min}= | Set Variable | ${min_rate}
304 | | ${binary_max}= | Set Variable | ${max_rate}
305 | | ${threshold}= | Set Variable | ${min_rate}
306 | | Given Add '2' worker threads and rxqueues '1' without HTT to all DUTs
307 | | And   Add all PCI devices to all DUTs
308 | | And   Apply startup configuration on all VPP DUTs
309 | | And   IPv6 forwarding initialized in a 3-node circular topology
310 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
311 | | ...                                       | ${binary_max} | 3-node-IPv6
312 | | ...                                       | ${min_rate} | ${max_rate}
313 | | ...                                       | ${threshold}
314 | | ...                                       | ${glob_loss_acceptance}
315 | | ...                                       | ${glob_loss_acceptance_type}
316
317 | TC13: 78B NDR binary search - DUT IPv6 - 4threads 4cores 2rxq
318 | | [Documentation]
319 | | ... | [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores, \
320 | | ... | 2 receive queues per NIC port. [Ver] Find NDR for 78 Byte frames
321 | | ... | using binary search start at 10GE linerate, step 100kpps.
322 | | [Tags] | 4_THREAD_NOHTT_RXQUEUES_2 | MULTI_THREAD | NDR
323 | | ${framesize}= | Set Variable | 78
324 | | ${min_rate}= | Set Variable | 100000
325 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_78B}
326 | | ${binary_min}= | Set Variable | ${min_rate}
327 | | ${binary_max}= | Set Variable | ${max_rate}
328 | | ${threshold}= | Set Variable | ${min_rate}
329 | | Given Add '4' worker threads and rxqueues '2' without HTT to all DUTs
330 | | And   Add all PCI devices to all DUTs
331 | | And   Add No Multi Seg to all DUTs
332 | | And   Apply startup configuration on all VPP DUTs
333 | | And   IPv6 forwarding initialized in a 3-node circular topology
334 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
335 | | ...                                       | ${binary_max} | 3-node-IPv6
336 | | ...                                       | ${min_rate} | ${max_rate}
337 | | ...                                       | ${threshold}
338
339 | TC14: 78B PDR binary search - DUT IPv6 - 4threads 4cores 2rxq
340 | | [Documentation]
341 | | ... | [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores, \
342 | | ... | 2 receive queues per NIC port. [Ver] Find PDR for 78 Byte frames
343 | | ... | using binary search start at 10GE linerate, step 100kpps, LT=0.5%.
344 | | [Tags] | 4_THREAD_NOHTT_RXQUEUES_2 | MULTI_THREAD | PDR
345 | | ${framesize}= | Set Variable | 78
346 | | ${min_rate}= | Set Variable | 100000
347 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_78B}
348 | | ${binary_min}= | Set Variable | ${min_rate}
349 | | ${binary_max}= | Set Variable | ${max_rate}
350 | | ${threshold}= | Set Variable | ${min_rate}
351 | | Given Add '4' worker threads and rxqueues '2' without HTT to all DUTs
352 | | And   Add all PCI devices to all DUTs
353 | | And   Add No Multi Seg to all DUTs
354 | | And   Apply startup configuration on all VPP DUTs
355 | | And   IPv6 forwarding initialized in a 3-node circular topology
356 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
357 | | ...                                       | ${binary_max} | 3-node-IPv6
358 | | ...                                       | ${min_rate} | ${max_rate}
359 | | ...                                       | ${threshold}
360 | | ...                                       | ${glob_loss_acceptance}
361 | | ...                                       | ${glob_loss_acceptance_type}
362
363 | TC15: 1518B NDR binary search - DUT IPv6 - 4threads 4cores 2rxq
364 | | [Documentation]
365 | | ... | [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores, \
366 | | ... | 2 receive queues per NIC port. [Ver] Find NDR for 1518 Byte frames
367 | | ... | using binary search start at 10GE linerate, step 10kpps.
368 | | [Tags] | 4_THREAD_NOHTT_RXQUEUES_2 | MULTI_THREAD | NDR
369 | | ${framesize}= | Set Variable | 1518
370 | | ${min_rate}= | Set Variable | 10000
371 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
372 | | ${binary_min}= | Set Variable | ${min_rate}
373 | | ${binary_max}= | Set Variable | ${max_rate}
374 | | ${threshold}= | Set Variable | ${min_rate}
375 | | Given Add '4' worker threads and rxqueues '2' without HTT to all DUTs
376 | | And   Add all PCI devices to all DUTs
377 | | And   Add No Multi Seg to all DUTs
378 | | And   Apply startup configuration on all VPP DUTs
379 | | And   IPv6 forwarding initialized in a 3-node circular topology
380 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
381 | | ...                                       | ${binary_max} | 3-node-IPv6
382 | | ...                                       | ${min_rate} | ${max_rate}
383 | | ...                                       | ${threshold}
384
385 | TC16: 1518B PDR binary search - DUT IPv6 - 4threads 4cores 2rxq
386 | | [Documentation]
387 | | ... | [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores, \
388 | | ... | 2 receive queues per NIC port. [Ver] Find PDR for 1518 Byte frames
389 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
390 | | [Tags] | 4_THREAD_NOHTT_RXQUEUES_2 | MULTI_THREAD | PDR
391 | | ${framesize}= | Set Variable | 1518
392 | | ${min_rate}= | Set Variable | 10000
393 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
394 | | ${binary_min}= | Set Variable | ${min_rate}
395 | | ${binary_max}= | Set Variable | ${max_rate}
396 | | ${threshold}= | Set Variable | ${min_rate}
397 | | Given Add '4' worker threads and rxqueues '2' without HTT to all DUTs
398 | | And   Add all PCI devices to all DUTs
399 | | And   Add No Multi Seg to all DUTs
400 | | And   Apply startup configuration on all VPP DUTs
401 | | And   IPv6 forwarding initialized in a 3-node circular topology
402 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
403 | | ...                                       | ${binary_max} | 3-node-IPv6
404 | | ...                                       | ${min_rate} | ${max_rate}
405 | | ...                                       | ${threshold}
406 | | ...                                       | ${glob_loss_acceptance}
407 | | ...                                       | ${glob_loss_acceptance_type}
408
409 | TC17: 9000B NDR binary search - DUT IPv6 - 4threads 4cores 2rxq
410 | | [Documentation]
411 | | ... | [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores, \
412 | | ... | 2 receive queues per NIC port. [Ver] Find NDR for 9000 Byte frames
413 | | ... | using binary search start at 10GE linerate, step 5kpps.
414 | | [Tags] | 4_THREAD_NOHTT_RXQUEUES_2 | MULTI_THREAD | NDR
415 | | ${framesize}= | Set Variable | 9000
416 | | ${min_rate}= | Set Variable | 5000
417 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
418 | | ${binary_min}= | Set Variable | ${min_rate}
419 | | ${binary_max}= | Set Variable | ${max_rate}
420 | | ${threshold}= | Set Variable | ${min_rate}
421 | | Given Add '4' worker threads and rxqueues '2' without HTT to all DUTs
422 | | And   Add all PCI devices to all DUTs
423 | | And   Apply startup configuration on all VPP DUTs
424 | | And   IPv6 forwarding initialized in a 3-node circular topology
425 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
426 | | ...                                       | ${binary_max} | 3-node-IPv6
427 | | ...                                       | ${min_rate} | ${max_rate}
428 | | ...                                       | ${threshold}
429
430 | TC18: 9000B PDR binary search - DUT IPv6 - 4threads 4cores 2rxq
431 | | [Documentation]
432 | | ... | [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores, \
433 | | ... | 2 receive queues per NIC port. [Ver] Find PDR for 9000 Byte frames
434 | | ... | using binary search start at 10GE linerate, step 5kpps, LT=0.5%.
435 | | [Tags] | 4_THREAD_NOHTT_RXQUEUES_2 | MULTI_THREAD | PDR
436 | | ${framesize}= | Set Variable | 9000
437 | | ${min_rate}= | Set Variable | 5000
438 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
439 | | ${binary_min}= | Set Variable | ${min_rate}
440 | | ${binary_max}= | Set Variable | ${max_rate}
441 | | ${threshold}= | Set Variable | ${min_rate}
442 | | Given Add '4' worker threads and rxqueues '2' without HTT to all DUTs
443 | | And   Add all PCI devices to all DUTs
444 | | And   Apply startup configuration on all VPP DUTs
445 | | And   IPv6 forwarding initialized in a 3-node circular topology
446 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
447 | | ...                                       | ${binary_max} | 3-node-IPv6
448 | | ...                                       | ${min_rate} | ${max_rate}
449 | | ...                                       | ${threshold}
450 | | ...                                       | ${glob_loss_acceptance}
451 | | ...                                       | ${glob_loss_acceptance_type}