fix: start testpmd and l3fwd in 3 cycles
[csit.git] / tests / dpdk / perf / 10ge2p1x710-ethip4-ip4base-l3fwd-ndrpdr.robot
1 # Copyright (c) 2022 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/shared/default.robot
16 | Library | resources.libraries.python.DPDK.DPDKTools
17 | Library | resources.libraries.python.DPDK.L3fwdTest
18 |
19 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | PERFTEST | HW_ENV | NDRPDR | 1NUMA
20 | ... | NIC_Intel-X710 | DPDK | IP4FWD | BASE | ETH
21 | ... | DRV_VFIO_PCI
22 | ... | RXQ_SIZE_1024 | TXQ_SIZE_1024
23 | ... | ethip4-ip4base-l3fwd
24 |
25 | Suite Setup | Setup suite topology interfaces | performance | dpdk
26 | Suite Teardown | Tear down suite | performance | dpdk
27 | Test Setup | Start Test Export
28 | Test Teardown | Finalize Test Export
29 |
30 | Test Template | Local Template
31 |
32 | Documentation | **Raw results IPv4 routing test cases**
33 | ... |
34 | ... | - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular \
35 | ... | topology with single links between nodes.
36 | ... |
37 | ... | - **[Enc] Packet Encapsulations:** Eth-IPv4 for L3 IPv4 routing.
38 | ... |
39 | ... | - **[Cfg] DUT configuration:** DUT1 and DUT2 run the DPDK l3fwd \
40 | ... | application. DUT1 and DUT2 are tested with ${nic_name}.
41 | ... |
42 | ... | - **[Ver] TG verification:** TG finds and reports throughput NDR (Non \
43 | ... | Drop Rate) with zero packet loss tolerance and throughput PDR \
44 | ... | (Partial Drop Rate) with non-zero packet loss tolerance (LT) \
45 | ... | expressed in percentage of packets transmitted. NDR and PDR are \
46 | ... | discovered for different Ethernet L2 frame sizes using MLRsearch \
47 | ... | library.
48 | ... | Test packets are generated by TG on \
49 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups \
50 | ... | (flow-group per direction, 253 flows per flow-group) with all packets \
51 | ... | containing Ethernet header, IPv4 header with IP protocol=61 and static \
52 | ... | payload. MAC addresses are matching MAC addresses of the TG node \
53 | ... | interfaces.
54
55 *** Variables ***
56 | ${crypto_type}= | ${None}
57 | ${nic_name}= | Intel-X710
58 | ${nic_driver}= | vfio-pci
59 | ${nic_rxq_size}= | 1024
60 | ${nic_txq_size}= | 1024
61 | ${nic_pfs}= | 2
62 | ${nic_vfs}= | 0
63 | ${osi_layer}= | L3
64 | ${overhead}= | ${0}
65 # Traffic profile:
66 | ${traffic_profile}= | trex-stl-3n-ethip4-ip4dst253_l3fwd
67
68 *** Keywords ***
69 | Local Template
70 | | [Documentation]
71 | | ... | - **[Cfg]** DUT runs L3 IPv4 routing config. \
72 | | ... | Each DUT uses ${phy_cores} physical core(s) for worker threads.
73 | | ... | - **[Ver]** Measure NDR and PDR values using MLRsearch algorithm.
74 | |
75 | | [Arguments] | ${frame_size} | ${phy_cores} | ${rxq}=${None}
76 | |
77 | | Set Test Variable | \${frame_size}
78 | |
79 | | Given Set Max Rate And Jumbo
80 | | And Pre-initialize layer driver | ${nic_driver}
81 | | When Start l3fwd on all DUTs | ${nodes} | ${topology_info}
82 | | ... | ${phy_cores} | ${rxq} | ${jumbo}
83 | | Then Find NDR and PDR intervals using optimized search
84
85 *** Test Cases ***
86 | 64B-1c-ethip4-ip4base-l3fwd-ndrpdr
87 | | [Tags] | 64B | 1C
88 | | frame_size=${64} | phy_cores=${1}
89
90 | 64B-2c-ethip4-ip4base-l3fwd-ndrpdr
91 | | [Tags] | 64B | 2C
92 | | frame_size=${64} | phy_cores=${2}
93
94 | 64B-4c-ethip4-ip4base-l3fwd-ndrpdr
95 | | [Tags] | 64B | 4C
96 | | frame_size=${64} | phy_cores=${4}
97
98 | 1518B-1c-ethip4-ip4base-l3fwd-ndrpdr
99 | | [Tags] | 1518B | 1C
100 | | frame_size=${1518} | phy_cores=${1}
101
102 | 1518B-2c-ethip4-ip4base-l3fwd-ndrpdr
103 | | [Tags] | 1518B | 2C
104 | | frame_size=${1518} | phy_cores=${2}
105
106 | 1518B-4c-ethip4-ip4base-l3fwd-ndrpdr
107 | | [Tags] | 1518B | 4C
108 | | frame_size=${1518} | phy_cores=${4}
109
110 | 9000B-1c-ethip4-ip4base-l3fwd-ndrpdr
111 | | [Tags] | 9000B | 1C
112 | | frame_size=${9000} | phy_cores=${1}
113
114 | 9000B-2c-ethip4-ip4base-l3fwd-ndrpdr
115 | | [Tags] | 9000B | 2C
116 | | frame_size=${9000} | phy_cores=${2}
117
118 | 9000B-4c-ethip4-ip4base-l3fwd-ndrpdr
119 | | [Tags] | 9000B | 4C
120 | | frame_size=${9000} | phy_cores=${4}
121
122 | IMIX-1c-ethip4-ip4base-l3fwd-ndrpdr
123 | | [Tags] | IMIX | 1C
124 | | frame_size=IMIX_v4_1 | phy_cores=${1}
125
126 | IMIX-2c-ethip4-ip4base-l3fwd-ndrpdr
127 | | [Tags] | IMIX | 2C
128 | | frame_size=IMIX_v4_1 | phy_cores=${2}
129
130 | IMIX-4c-ethip4-ip4base-l3fwd-ndrpdr
131 | | [Tags] | IMIX | 4C
132 | | frame_size=IMIX_v4_1 | phy_cores=${4}