CSIT-128: Remove EXPECTED_FAILING tag from VXLAN over IPv6 test cases
[csit.git] / tests / suites / performance / Long_Xconnect_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 | Library | resources.libraries.python.InterfaceUtil
17 | Library | resources.libraries.python.NodePath
18 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | PERFTEST | HW_ENV | PERFTEST_LONG
19 | ...        | NIC_Intel-X520-DA2
20 | Suite Setup | 3-node Performance Suite Setup with DUT's NIC model
21 | ... | L2 | Intel-X520-DA2
22 | Suite Teardown | 3-node Performance Suite Teardown
23 | Test Setup | Setup all DUTs before test
24 | Test Teardown | Run Keyword | Remove startup configuration of VPP from all DUTs
25 | Documentation | *Throughput search suite (based on RFC2544).*
26 | ...
27 | ... | Test suite uses 3-node topology TG - DUT1 - DUT2 - TG, with one link
28 | ... | between nodes. Traffic profile contain 2 L2 streams (1 stream per
29 | ... | direction). Packets contain Ethernet header, IPv4 header,
30 | ... | IP protocol=61 and random payload. Ethernet header MAC addresses are
31 | ... | matching MAC addresses of the TG node.
32
33 *** Test Cases ***
34 | Find NDR by using RFC2544 binary search and 64B frames through L2 cross connect in 3-node topology
35 | | [Documentation]
36 | | ... | Find throughput with non drop rate for 64B frames by using
37 | | ... | binary search with threshold 0.1Mpps.
38 | | [Tags] | 1_THREAD_NOHTT_RSS_1 | SINGLE_THREAD | NDR
39 | | ${framesize}= | Set Variable | 64
40 | | ${min_rate}= | Set Variable | 100000
41 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_64B}
42 | | ${binary_min}= | Set Variable | ${min_rate}
43 | | ${binary_max}= | Set Variable | ${max_rate}
44 | | ${threshold}= | Set Variable | ${min_rate}
45 | | Given Add '1' worker threads and rss '1' without HTT to all DUTs
46 | | And   Add all PCI devices to all DUTs
47 | | And   Add No Multi Seg to all DUTs
48 | | And   Apply startup configuration on all VPP DUTs
49 | | And   L2 xconnect initialized in a 3-node circular topology
50 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
51 | | ...                                       | ${binary_max} | 3-node-xconnect
52 | | ...                                       | ${min_rate} | ${max_rate}
53 | | ...                                       | ${threshold}
54
55 | Find PDR by using RFC2544 binary search and 64B frames through L2 cross connect in 3-node topology
56 | | [Documentation]
57 | | ... | Find throughput with partial drop rate for 64B frames by using
58 | | ... | binary search with threshold 0.1Mpps. Loss acceptance is set to 0.5
59 | | ... | percent of transmitted packets.
60 | | [Tags] | 1_THREAD_NOHTT_RSS_1 | SINGLE_THREAD | PDR
61 | | ${framesize}= | Set Variable | 64
62 | | ${min_rate}= | Set Variable | 100000
63 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_64B}
64 | | ${binary_min}= | Set Variable | ${min_rate}
65 | | ${binary_max}= | Set Variable | ${max_rate}
66 | | ${threshold}= | Set Variable | ${min_rate}
67 | | Given Add '1' worker threads and rss '1' without HTT to all DUTs
68 | | And   Add all PCI devices to all DUTs
69 | | And   Add No Multi Seg to all DUTs
70 | | And   Apply startup configuration on all VPP DUTs
71 | | And   L2 xconnect initialized in a 3-node circular topology
72 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
73 | | ...                                       | ${binary_max} | 3-node-xconnect
74 | | ...                                       | ${min_rate} | ${max_rate}
75 | | ...                                       | ${threshold}
76 | | ...                                       | ${glob_loss_acceptance}
77 | | ...                                       | ${glob_loss_acceptance_type}
78
79 | Find NDR by using RFC2544 binary search and 1518B frames through L2 cross connect in 3-node topology
80 | | [Documentation]
81 | | ... | Find throughput with non drop rate for 1518B frames by using
82 | | ... | binary search with threshold 10,000pps.
83 | | [Tags] | 1_THREAD_NOHTT_RSS_1 | SINGLE_THREAD | NDR
84 | | ${framesize}= | Set Variable | 1518
85 | | ${min_rate}= | Set Variable | 10000
86 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
87 | | ${binary_min}= | Set Variable | ${min_rate}
88 | | ${binary_max}= | Set Variable | ${max_rate}
89 | | ${threshold}= | Set Variable | ${min_rate}
90 | | Given Add '1' worker threads and rss '1' without HTT to all DUTs
91 | | And   Add all PCI devices to all DUTs
92 | | And   Add No Multi Seg to all DUTs
93 | | And   Apply startup configuration on all VPP DUTs
94 | | And   L2 xconnect initialized in a 3-node circular topology
95 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
96 | | ...                                       | ${binary_max} | 3-node-xconnect
97 | | ...                                       | ${min_rate} | ${max_rate}
98 | | ...                                       | ${threshold}
99
100 | Find PDR by using RFC2544 binary search and 1518B frames through L2 cross connect in 3-node topology
101 | | [Documentation]
102 | | ... | Find throughput with partial drop rate for 1518B frames by using
103 | | ... | binary search with threshold 10,000pps. Loss acceptance is set to 0.5
104 | | ... | percent of transmitted packets.
105 | | [Tags] | 1_THREAD_NOHTT_RSS_1 | SINGLE_THREAD | PDR
106 | | ${framesize}= | Set Variable | 1518
107 | | ${min_rate}= | Set Variable | 10000
108 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
109 | | ${binary_min}= | Set Variable | ${min_rate}
110 | | ${binary_max}= | Set Variable | ${max_rate}
111 | | ${threshold}= | Set Variable | ${min_rate}
112 | | Given Add '1' worker threads and rss '1' without HTT to all DUTs
113 | | And   Add all PCI devices to all DUTs
114 | | And   Add No Multi Seg to all DUTs
115 | | And   Apply startup configuration on all VPP DUTs
116 | | And   L2 xconnect initialized in a 3-node circular topology
117 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
118 | | ...                                       | ${binary_max} | 3-node-xconnect
119 | | ...                                       | ${min_rate} | ${max_rate}
120 | | ...                                       | ${threshold}
121 | | ...                                       | ${glob_loss_acceptance}
122 | | ...                                       | ${glob_loss_acceptance_type}
123
124 | Find NDR by using RFC2544 binary search and 9000B frames through L2 cross connect in 3-node topology
125 | | [Documentation]
126 | | ... | Find throughput with non drop rate for 9000B frames by using
127 | | ... | binary search with threshold 5000pps.
128 | | [Tags] | 1_THREAD_NOHTT_RSS_1 | SINGLE_THREAD | NDR
129 | | ${framesize}= | Set Variable | 9000
130 | | ${min_rate}= | Set Variable | 5000
131 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
132 | | ${binary_min}= | Set Variable | ${min_rate}
133 | | ${binary_max}= | Set Variable | ${max_rate}
134 | | ${threshold}= | Set Variable | ${min_rate}
135 | | Given Add '1' worker threads and rss '1' without HTT to all DUTs
136 | | And   Add all PCI devices to all DUTs
137 | | And   Apply startup configuration on all VPP DUTs
138 | | And   L2 xconnect initialized in a 3-node circular topology
139 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
140 | | ...                                       | ${binary_max} | 3-node-xconnect
141 | | ...                                       | ${min_rate} | ${max_rate}
142 | | ...                                       | ${threshold}
143
144 | Find PDR by using RFC2544 binary search and 9000B frames through L2 cross connect in 3-node topology
145 | | [Documentation]
146 | | ... | Find throughput with partial drop rate for 9000B frames by using
147 | | ... | binary search with threshold of 5,000pps. Loss acceptance is set to
148 | | ... | 0.5 percent of transmitted packets.
149 | | [Tags] | 1_THREAD_NOHTT_RSS_1 | SINGLE_THREAD | PDR
150 | | ${framesize}= | Set Variable | 9000
151 | | ${min_rate}= | Set Variable | 5000
152 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
153 | | ${binary_min}= | Set Variable | ${min_rate}
154 | | ${binary_max}= | Set Variable | ${max_rate}
155 | | ${threshold}= | Set Variable | ${min_rate}
156 | | Given Add '1' worker threads and rss '1' without HTT to all DUTs
157 | | And   Add all PCI devices to all DUTs
158 | | And   Apply startup configuration on all VPP DUTs
159 | | And   L2 xconnect initialized in a 3-node circular topology
160 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
161 | | ...                                       | ${binary_max} | 3-node-xconnect
162 | | ...                                       | ${min_rate} | ${max_rate}
163 | | ...                                       | ${threshold}
164 | | ...                                       | ${glob_loss_acceptance}
165 | | ...                                       | ${glob_loss_acceptance_type}
166
167 | Find NDR with 2 cores and rss 1 by using RFC2544 binary search and 64B frames through L2 cross connect in 3-node topology
168 | | [Documentation]
169 | | ... | Find throughput on 2 cores with non drop rate for 64B frames by using
170 | | ... | binary search with threshold 0.1Mpps.
171 | | [Tags] | 2_THREAD_NOHTT_RSS_1 | MULTI_THREAD | NDR
172 | | ${framesize}= | Set Variable | 64
173 | | ${min_rate}= | Set Variable | 100000
174 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_64B}
175 | | ${binary_min}= | Set Variable | ${min_rate}
176 | | ${binary_max}= | Set Variable | ${max_rate}
177 | | ${threshold}= | Set Variable | ${min_rate}
178 | | Given Add '2' worker threads and rss '1' without HTT to all DUTs
179 | | And   Add all PCI devices to all DUTs
180 | | And   Add No Multi Seg to all DUTs
181 | | And   Apply startup configuration on all VPP DUTs
182 | | And   L2 xconnect initialized in a 3-node circular topology
183 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
184 | | ...                                       | ${binary_max} | 3-node-xconnect
185 | | ...                                       | ${min_rate} | ${max_rate}
186 | | ...                                       | ${threshold}
187
188 | Find PDR with 2 cores and rss 1 by using RFC2544 binary search and 64B frames through L2 cross connect in 3-node topology
189 | | [Documentation]
190 | | ... | Find throughput on 2 cores with partial drop rate for 64B frames by
191 | | ... | using binary search with threshold 0.1Mpps. Loss acceptance is set to
192 | | ... | 0.5 percent of transmitted packets.
193 | | [Tags] | 2_THREAD_NOHTT_RSS_1 | MULTI_THREAD | PDR
194 | | ${framesize}= | Set Variable | 64
195 | | ${min_rate}= | Set Variable | 100000
196 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_64B}
197 | | ${binary_min}= | Set Variable | ${min_rate}
198 | | ${binary_max}= | Set Variable | ${max_rate}
199 | | ${threshold}= | Set Variable | ${min_rate}
200 | | Given Add '2' worker threads and rss '1' without HTT to all DUTs
201 | | And   Add all PCI devices to all DUTs
202 | | And   Add No Multi Seg to all DUTs
203 | | And   Apply startup configuration on all VPP DUTs
204 | | And   L2 xconnect initialized in a 3-node circular topology
205 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
206 | | ...                                       | ${binary_max} | 3-node-xconnect
207 | | ...                                       | ${min_rate} | ${max_rate}
208 | | ...                                       | ${threshold}
209 | | ...                                       | ${glob_loss_acceptance}
210 | | ...                                       | ${glob_loss_acceptance_type}
211
212 | Find NDR with 2 cores and rss 1 by using RFC2544 binary search and 1518B frames through L2 cross connect in 3-node topology
213 | | [Documentation]
214 | | ... | Find throughput on 2 cores with non drop rate for 1518B frames by
215 | | ... | using binary search with threshold 10,000pps.
216 | | [Tags] | 2_THREAD_NOHTT_RSS_1 | MULTI_THREAD | NDR
217 | | ${framesize}= | Set Variable | 1518
218 | | ${min_rate}= | Set Variable | 10000
219 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
220 | | ${binary_min}= | Set Variable | ${min_rate}
221 | | ${binary_max}= | Set Variable | ${max_rate}
222 | | ${threshold}= | Set Variable | ${min_rate}
223 | | Given Add '2' worker threads and rss '1' without HTT to all DUTs
224 | | And   Add all PCI devices to all DUTs
225 | | And   Add No Multi Seg to all DUTs
226 | | And   Apply startup configuration on all VPP DUTs
227 | | And   L2 xconnect initialized in a 3-node circular topology
228 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
229 | | ...                                       | ${binary_max} | 3-node-xconnect
230 | | ...                                       | ${min_rate} | ${max_rate}
231 | | ...                                       | ${threshold}
232
233 | Find PDR with 2 cores and rss 1 by using RFC2544 binary search and 1518B frames through L2 cross connect in 3-node topology
234 | | [Documentation]
235 | | ... | Find throughput on 2 cores with partial drop rate for 1518B frames by
236 | | ... | using binary search with threshold 10,000pps. Loss acceptance is set
237 | | ... | to 0.5 percent of transmitted packets.
238 | | [Tags] | 2_THREAD_NOHTT_RSS_1 | MULTI_THREAD | PDR
239 | | ${framesize}= | Set Variable | 1518
240 | | ${min_rate}= | Set Variable | 10000
241 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
242 | | ${binary_min}= | Set Variable | ${min_rate}
243 | | ${binary_max}= | Set Variable | ${max_rate}
244 | | ${threshold}= | Set Variable | ${min_rate}
245 | | Given Add '2' worker threads and rss '1' without HTT to all DUTs
246 | | And   Add all PCI devices to all DUTs
247 | | And   Add No Multi Seg to all DUTs
248 | | And   Apply startup configuration on all VPP DUTs
249 | | And   L2 xconnect initialized in a 3-node circular topology
250 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
251 | | ...                                       | ${binary_max} | 3-node-xconnect
252 | | ...                                       | ${min_rate} | ${max_rate}
253 | | ...                                       | ${threshold}
254 | | ...                                       | ${glob_loss_acceptance}
255 | | ...                                       | ${glob_loss_acceptance_type}
256
257 | Find NDR with 2 cores and rss 1 by using RFC2544 binary search and 9000B frames through L2 cross connect in 3-node topology
258 | | [Documentation]
259 | | ... | Find throughput on 2 cores with non drop rate for 9000B frames by
260 | | ... | using binary search with threshold 5,000pps.
261 | | [Tags] | 2_THREAD_NOHTT_RSS_1 | MULTI_THREAD | NDR
262 | | ${framesize}= | Set Variable | 9000
263 | | ${min_rate}= | Set Variable | 5000
264 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
265 | | ${binary_min}= | Set Variable | ${min_rate}
266 | | ${binary_max}= | Set Variable | ${max_rate}
267 | | ${threshold}= | Set Variable | ${min_rate}
268 | | Given Add '2' worker threads and rss '1' without HTT to all DUTs
269 | | And   Add all PCI devices to all DUTs
270 | | And   Apply startup configuration on all VPP DUTs
271 | | And   L2 xconnect initialized in a 3-node circular topology
272 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
273 | | ...                                       | ${binary_max} | 3-node-xconnect
274 | | ...                                       | ${min_rate} | ${max_rate}
275 | | ...                                       | ${threshold}
276
277 | Find PDR with 2 cores and rss 1 by using RFC2544 binary search and 9000B frames through L2 cross connect in 3-node topology
278 | | [Documentation]
279 | | ... | Find throughput on 2 cores with partial drop rate for 9000B frames by
280 | | ... | using binary search with threshold 5,000pps. Loss acceptance is set
281 | | ... | to 0.5 percent of transmitted packets.
282 | | [Tags] | 2_THREAD_NOHTT_RSS_1 | MULTI_THREAD | PDR
283 | | ${framesize}= | Set Variable | 9000
284 | | ${min_rate}= | Set Variable | 5000
285 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
286 | | ${binary_min}= | Set Variable | ${min_rate}
287 | | ${binary_max}= | Set Variable | ${max_rate}
288 | | ${threshold}= | Set Variable | ${min_rate}
289 | | Given Add '2' worker threads and rss '1' without HTT to all DUTs
290 | | And   Add all PCI devices to all DUTs
291 | | And   Apply startup configuration on all VPP DUTs
292 | | And   L2 xconnect initialized in a 3-node circular topology
293 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
294 | | ...                                       | ${binary_max} | 3-node-xconnect
295 | | ...                                       | ${min_rate} | ${max_rate}
296 | | ...                                       | ${threshold}
297 | | ...                                       | ${glob_loss_acceptance}
298 | | ...                                       | ${glob_loss_acceptance_type}
299
300 | Find NDR with 4 cores and rss 2 by using RFC2544 binary search and 64B frames through L2 cross connect in 3-node topology
301 | | [Documentation]
302 | | ... | Find throughput on 4 cores and rss 2 with non drop rate for 64B
303 | | ... | frames by using binary search with threshold 0.1Mpps.
304 | | [Tags] | 4_THREAD_NOHTT_RSS_2 | MULTI_THREAD | NDR
305 | | ${framesize}= | Set Variable | 64
306 | | ${min_rate}= | Set Variable | 100000
307 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_64B}
308 | | ${binary_min}= | Set Variable | ${min_rate}
309 | | ${binary_max}= | Set Variable | ${max_rate}
310 | | ${threshold}= | Set Variable | ${min_rate}
311 | | Given Add '4' worker threads and rss '2' without HTT to all DUTs
312 | | And   Add all PCI devices to all DUTs
313 | | And   Add No Multi Seg to all DUTs
314 | | And   Apply startup configuration on all VPP DUTs
315 | | And   L2 xconnect initialized in a 3-node circular topology
316 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
317 | | ...                                       | ${binary_max} | 3-node-xconnect
318 | | ...                                       | ${min_rate} | ${max_rate}
319 | | ...                                       | ${threshold}
320
321 | Find PDR with 4 cores and rss 2 by using RFC2544 binary search and 64B frames through L2 cross connect in 3-node topology
322 | | [Documentation]
323 | | ... | Find throughput on 4 cores and rss 2 with partial drop rate for 64B
324 | | ... | frames by using binary search with threshold 0.1Mpps. Loss acceptance
325 | | ... | is set to 0.5 percent of transmitted packets.
326 | | [Tags] | 4_THREAD_NOHTT_RSS_2 | MULTI_THREAD | PDR
327 | | ${framesize}= | Set Variable | 64
328 | | ${min_rate}= | Set Variable | 100000
329 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_64B}
330 | | ${binary_min}= | Set Variable | ${min_rate}
331 | | ${binary_max}= | Set Variable | ${max_rate}
332 | | ${threshold}= | Set Variable | ${min_rate}
333 | | Given Add '4' worker threads and rss '2' without HTT to all DUTs
334 | | And   Add all PCI devices to all DUTs
335 | | And   Add No Multi Seg to all DUTs
336 | | And   Apply startup configuration on all VPP DUTs
337 | | And   L2 xconnect initialized in a 3-node circular topology
338 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
339 | | ...                                       | ${binary_max} | 3-node-xconnect
340 | | ...                                       | ${min_rate} | ${max_rate}
341 | | ...                                       | ${threshold}
342 | | ...                                       | ${glob_loss_acceptance}
343 | | ...                                       | ${glob_loss_acceptance_type}
344
345 | Find NDR with 4 cores and rss 2 by using RFC2544 binary search and 1518B frames through L2 cross connect in 3-node topology
346 | | [Documentation]
347 | | ... | Find throughput on 4 cores and rss 2 with non drop rate for 1518B
348 | | ... | frames by using binary search with threshold 10,000pps.
349 | | [Tags] | 4_THREAD_NOHTT_RSS_2 | MULTI_THREAD | NDR
350 | | ${framesize}= | Set Variable | 1518
351 | | ${min_rate}= | Set Variable | 10000
352 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
353 | | ${binary_min}= | Set Variable | ${min_rate}
354 | | ${binary_max}= | Set Variable | ${max_rate}
355 | | ${threshold}= | Set Variable | ${min_rate}
356 | | Given Add '4' worker threads and rss '2' without HTT to all DUTs
357 | | And   Add all PCI devices to all DUTs
358 | | And   Add No Multi Seg to all DUTs
359 | | And   Apply startup configuration on all VPP DUTs
360 | | And   L2 xconnect initialized in a 3-node circular topology
361 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
362 | | ...                                       | ${binary_max} | 3-node-xconnect
363 | | ...                                       | ${min_rate} | ${max_rate}
364 | | ...                                       | ${threshold}
365
366 | Find PDR with 4 cores and rss 2 by using RFC2544 binary search and 1518B frames through L2 cross connect in 3-node topology
367 | | [Documentation]
368 | | ... | Find throughput on 4 cores and rss 2 with partial drop rate for 1518B
369 | | ... | frames by using binary search with threshold 10,000pps. Loss
370 | | ... | acceptance is set to 0.5 percent of transmitted packets.
371 | | [Tags] | 4_THREAD_NOHTT_RSS_2 | MULTI_THREAD | PDR
372 | | ${framesize}= | Set Variable | 1518
373 | | ${min_rate}= | Set Variable | 10000
374 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_1518B}
375 | | ${binary_min}= | Set Variable | ${min_rate}
376 | | ${binary_max}= | Set Variable | ${max_rate}
377 | | ${threshold}= | Set Variable | ${min_rate}
378 | | Given Add '4' worker threads and rss '2' without HTT to all DUTs
379 | | And   Add all PCI devices to all DUTs
380 | | And   Add No Multi Seg to all DUTs
381 | | And   Apply startup configuration on all VPP DUTs
382 | | And   L2 xconnect initialized in a 3-node circular topology
383 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
384 | | ...                                       | ${binary_max} | 3-node-xconnect
385 | | ...                                       | ${min_rate} | ${max_rate}
386 | | ...                                       | ${threshold}
387 | | ...                                       | ${glob_loss_acceptance}
388 | | ...                                       | ${glob_loss_acceptance_type}
389
390 | Find NDR with 4 cores and rss 2 by using RFC2544 binary search and 9000B frames through L2 cross connect in 3-node topology
391 | | [Documentation]
392 | | ... | Find throughput on 4 cores and rss 2 with non drop rate for 9000B frames by
393 | | ... | using binary search with threshold 5,000pps.
394 | | [Tags] | 4_THREAD_NOHTT_RSS_2 | MULTI_THREAD | NDR
395 | | ${framesize}= | Set Variable | 9000
396 | | ${min_rate}= | Set Variable | 5000
397 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
398 | | ${binary_min}= | Set Variable | ${min_rate}
399 | | ${binary_max}= | Set Variable | ${max_rate}
400 | | ${threshold}= | Set Variable | ${min_rate}
401 | | Given Add '4' worker threads and rss '2' without HTT to all DUTs
402 | | And   Add all PCI devices to all DUTs
403 | | And   Apply startup configuration on all VPP DUTs
404 | | And   L2 xconnect initialized in a 3-node circular topology
405 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
406 | | ...                                       | ${binary_max} | 3-node-xconnect
407 | | ...                                       | ${min_rate} | ${max_rate}
408 | | ...                                       | ${threshold}
409
410 | Find PDR with 4 cores and rss 2 by using RFC2544 binary search and 9000B frames through L2 cross connect in 3-node topology
411 | | [Documentation]
412 | | ... | Find throughput on 4 cores and rss 2 with partial drop rate for 9000B
413 | | ... | frames by using binary search with threshold 5,000pps. Loss
414 | | ... | acceptance is set to 0.5 percent of transmitted packets.
415 | | [Tags] | 4_THREAD_NOHTT_RSS_2 | MULTI_THREAD | PDR
416 | | ${framesize}= | Set Variable | 9000
417 | | ${min_rate}= | Set Variable | 5000
418 | | ${max_rate}= | Set Variable | ${10Ge_linerate_pps_9000B}
419 | | ${binary_min}= | Set Variable | ${min_rate}
420 | | ${binary_max}= | Set Variable | ${max_rate}
421 | | ${threshold}= | Set Variable | ${min_rate}
422 | | Given Add '4' worker threads and rss '2' without HTT to all DUTs
423 | | And   Add all PCI devices to all DUTs
424 | | And   Apply startup configuration on all VPP DUTs
425 | | And   L2 xconnect initialized in a 3-node circular topology
426 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
427 | | ...                                       | ${binary_max} | 3-node-xconnect
428 | | ...                                       | ${min_rate} | ${max_rate}
429 | | ...                                       | ${threshold}
430 | | ...                                       | ${glob_loss_acceptance}
431 | | ...                                       | ${glob_loss_acceptance_type}