X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FDPDK%2FDPDKTools.py;h=25d221772cfc74fa19928184f484d6ceb3259a95;hb=da799981f5373b09398319df12e77e2efc75caa6;hp=e7fa2f4e769c1ee75c0d232dca2584418ebf629a;hpb=b633f4ebf7878ae968e27b71da69b6cde0265904;p=csit.git diff --git a/resources/libraries/python/DPDK/DPDKTools.py b/resources/libraries/python/DPDK/DPDKTools.py index e7fa2f4e76..25d221772c 100644 --- a/resources/libraries/python/DPDK/DPDKTools.py +++ b/resources/libraries/python/DPDK/DPDKTools.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016 Cisco and/or its affiliates. +# Copyright (c) 2018 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -12,16 +12,18 @@ # limitations under the License. -""" -This module exists to provide the init DPDK. -""" +"""This module implements initialization and cleanup of DPDK environment.""" from resources.libraries.python.ssh import SSH -from resources.libraries.python.constants import Constants as con -from resources.libraries.python.topology import Topology +from resources.libraries.python.Constants import Constants +from resources.libraries.python.topology import NodeType, Topology + class DPDKTools(object): - """Test the DPDK l2fwd performance.""" + """This class implements: + - Initialization of DPDK environment, + - Cleanup of DPDK environment. + """ @staticmethod def initialize_dpdk_environment(dut_node, dut_if1, dut_if2): @@ -35,21 +37,27 @@ class DPDKTools(object): :type dut_node: dict :type dut_if1: str :type dut_if2: str - :returns: none + :raises RuntimeError: If it fails to bind the interfaces to igb_uio. """ - pci_address1 = Topology.get_interface_pci_addr(dut_node, dut_if1) - pci_address2 = Topology.get_interface_pci_addr(dut_node, dut_if2) + if dut_node['type'] == NodeType.DUT: + pci_address1 = Topology.get_interface_pci_addr(dut_node, dut_if1) + pci_address2 = Topology.get_interface_pci_addr(dut_node, dut_if2) - ssh = SSH() - ssh.connect(dut_node) + ssh = SSH() + ssh.connect(dut_node) - cmd = 'cd {0}/dpdk-tests/dpdk_scripts/ && sudo ./init_dpdk.sh {1} {2}' \ - .format(con.REMOTE_FW_DIR, pci_address1, pci_address2) + arch = Topology.get_node_arch(dut_node) + cmd = '{fwdir}/tests/dpdk/dpdk_scripts/init_dpdk.sh '\ + '{pci1} {pci2} {arch}'.format(fwdir=Constants.REMOTE_FW_DIR, + pci1=pci_address1, + pci2=pci_address2, + arch=arch) - (ret_code, _, _) = ssh.exec_command(cmd, timeout=600) - if ret_code != 0: - raise Exception('Failed to bind the interfaces to igb_uio ' \ - 'at node {0}'.format(dut_node['host'])) + ret_code, _, _ = ssh.exec_command_sudo(cmd, timeout=600) + if ret_code != 0: + raise RuntimeError('Failed to bind the interfaces to igb_uio ' + 'at node {name}'.\ + format(name=dut_node['host'])) @staticmethod def cleanup_dpdk_environment(dut_node, dut_if1, dut_if2): @@ -63,21 +71,58 @@ class DPDKTools(object): :type dut_node: dict :type dut_if1: str :type dut_if2: str - :returns: none + :raises RuntimeError: If it fails to cleanup the dpdk. + """ + if dut_node['type'] == NodeType.DUT: + pci_address1 = Topology.get_interface_pci_addr(dut_node, dut_if1) + if1_driver = Topology.get_interface_driver(dut_node, dut_if1) + pci_address2 = Topology.get_interface_pci_addr(dut_node, dut_if2) + if2_driver = Topology.get_interface_driver(dut_node, dut_if2) + + ssh = SSH() + ssh.connect(dut_node) + + cmd = '{fwdir}/tests/dpdk/dpdk_scripts/cleanup_dpdk.sh ' \ + '{drv1} {pci1} {drv2} {pci2}'.\ + format(fwdir=Constants.REMOTE_FW_DIR, drv1=if1_driver, + pci1=pci_address1, drv2=if2_driver, pci2=pci_address2) + + ret_code, _, _ = ssh.exec_command_sudo(cmd, timeout=600) + if ret_code != 0: + raise RuntimeError('Failed to cleanup the dpdk at node {name}'. + format(name=dut_node['host'])) + + @staticmethod + def install_dpdk_test(node): + """ + Prepare the DPDK test environment + + :param node: Dictionary created from topology + :type node: dict + :returns: nothing + :raises RuntimeError: If command returns nonzero return code. """ - pci_address1 = Topology.get_interface_pci_addr(dut_node, dut_if1) - if1_driver = Topology.get_interface_driver(dut_node, dut_if1) - pci_address2 = Topology.get_interface_pci_addr(dut_node, dut_if2) - if2_driver = Topology.get_interface_driver(dut_node, dut_if2) + arch = Topology.get_node_arch(node) ssh = SSH() - ssh.connect(dut_node) + ssh.connect(node) - cmd = 'cd {0}/dpdk-tests/dpdk_scripts/ && sudo ./cleanup_dpdk.sh ' \ - '{1} {2} {3} {4}'.format(con.REMOTE_FW_DIR, if1_driver, \ - pci_address1, if2_driver, pci_address2) + ret_code, _, _ = ssh.exec_command( + '{fwdir}/tests/dpdk/dpdk_scripts/install_dpdk.sh {arch}'. + format(fwdir=Constants.REMOTE_FW_DIR, arch=arch), timeout=600) - (ret_code, _, _) = ssh.exec_command(cmd, timeout=600) if ret_code != 0: - raise Exception('Failed to cleanup the dpdk at node {0}' - .format(dut_node['host'])) + raise RuntimeError('Install the DPDK failed') + + @staticmethod + def install_dpdk_test_on_all_duts(nodes): + """ + Prepare the DPDK test environment on all DUTs. + + :param nodes: Nodes from topology file. + :type nodes: dict + :returns: nothing + """ + for node in nodes.values(): + if node['type'] == NodeType.DUT: + DPDKTools.install_dpdk_test(node)