15e656af0744b24ae49d6996790814bd25222af8
[csit.git] / resources / libraries / python / DPDK / L3fwdTest.py
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 """
15 This module exists to provide the l3fwd test for DPDK on topology nodes.
16 """
17
18 from resources.libraries.python.ssh import SSH
19 from resources.libraries.python.constants import Constants
20 from resources.libraries.python.topology import NodeType, Topology
21
22 class L3fwdTest(object):
23     """Test the DPDK l3fwd performance."""
24
25     @staticmethod
26     def start_the_l3fwd_test(nodes_info, dut_node, dut_if1, dut_if2,
27                              nb_cores, lcores_list, queue_nums, jumbo_frames):
28         """
29         Execute the l3fwd on the dut_node.
30
31         :param nodes_info: All the nodes info in the topology file.
32         :param dut_node: Will execute the l3fwd on this node
33         :param dut_if1: The test link interface 1.
34         :param dut_if2: The test link interface 2.
35         :param nb_cores: The cores number for the forwarding
36         :param lcores_list: The lcore list string for the l3fwd routing
37         :param queue_nums: The queues number for the NIC
38         :param jumbo_frames: Is jumbo frames or not. Accepted: yes / no
39         :type nodes_info: dict
40         :type dut_node: dict
41         :type dut_if1: str
42         :type dut_if2: str
43         :type nb_cores: str
44         :type lcores_list: str
45         :type queue_nums: str
46         :type jumbo_frames: str
47         """
48         if dut_node['type'] == NodeType.DUT:
49             adj_mac0, adj_mac1 = L3fwdTest.get_adj_mac(nodes_info, dut_node,
50                                                        dut_if1, dut_if2)
51
52             list_cores = lcores_list.split(',')
53
54             # prepare the port config param
55             index = 0
56             port_config = ''
57             for port in range(0, 2):
58                 for queue in range(0, int(queue_nums)):
59                     if int(nb_cores) == 1:
60                         index = 0
61                         temp_str = '({port}, {queue}, {core}),'.\
62                         format(port=port, queue=queue,
63                                core=int(list_cores[index]))
64                     else:
65                         temp_str = '({port}, {queue}, {core}),'.\
66                         format(port=port, queue=queue,
67                                core=int(list_cores[index]))
68
69                     port_config += temp_str
70                     index = index + 1
71
72             ssh = SSH()
73             ssh.connect(dut_node)
74
75             cmd = '{fwdir}/tests/dpdk/dpdk_scripts/run_l3fwd.sh ' \
76                   '"{lcores}" "{ports}" {mac1} {mac2} {jumbo}'.\
77                   format(fwdir=Constants.REMOTE_FW_DIR, lcores=lcores_list,
78                          ports=port_config.rstrip(','), mac1=adj_mac0,
79                          mac2=adj_mac1, jumbo=jumbo_frames)
80
81             ret_code, _, _ = ssh.exec_command_sudo(cmd, timeout=600)
82             if ret_code != 0:
83                 raise Exception('Failed to execute l3fwd test at node {name}'
84                                 .format(name=dut_node['host']))
85
86     @staticmethod
87     def get_adj_mac(nodes_info, dut_node, dut_if1, dut_if2):
88         """
89         Get adjacency MAC addresses of the DUT node.
90
91         :param nodes_info: All the nodes info in the topology file.
92         :param dut_node: Will execute the l3fwd on this node
93         :param dut_if1: The test link interface 1.
94         :param dut_if2: The test link interface 2.
95         :type nodes_info: dict
96         :type dut_node: dict
97         :type dut_if1: str
98         :type dut_if2: str
99         :returns: Returns MAC addresses of adjacency DUT nodes.
100         :rtype: str
101         """
102         if_key0 = dut_if1
103         if_key1 = dut_if2
104         if_pci0 = Topology.get_interface_pci_addr(dut_node, if_key0)
105         if_pci1 = Topology.get_interface_pci_addr(dut_node, if_key1)
106
107         # detect which is the port 0
108         if min(if_pci0, if_pci1) != if_pci0:
109             if_key0, if_key1 = if_key1, if_key0
110
111         adj_node0, adj_if_key0 = Topology.get_adjacent_node_and_interface( \
112                                  nodes_info, dut_node, if_key0)
113         adj_node1, adj_if_key1 = Topology.get_adjacent_node_and_interface( \
114                                  nodes_info, dut_node, if_key1)
115
116         adj_mac0 = Topology.get_interface_mac(adj_node0, adj_if_key0)
117         adj_mac1 = Topology.get_interface_mac(adj_node1, adj_if_key1)
118
119         return adj_mac0, adj_mac1