[dts] [PATCH] add the cryptodev unit-test suite and conf

Xinfeng Zhao xinfengx.zhao at intel.com
Mon Mar 4 18:20:17 CET 2019


Signed-off-by: Xinfeng Zhao <xinfengx.zhao at intel.com>
---
 conf/unit_tests_cryptodev_func.cfg           |   8 ++
 tests/TestSuite_unit_tests_cryptodev.py      | 170 ---------------------------
 tests/TestSuite_unit_tests_cryptodev_func.py | 137 +++++++++++++++++++++
 3 files changed, 145 insertions(+), 170 deletions(-)
 create mode 100644 conf/unit_tests_cryptodev_func.cfg
 delete mode 100644 tests/TestSuite_unit_tests_cryptodev.py
 create mode 100644 tests/TestSuite_unit_tests_cryptodev_func.py

diff --git a/conf/unit_tests_cryptodev_func.cfg b/conf/unit_tests_cryptodev_func.cfg
new file mode 100644
index 0000000..9b80025
--- /dev/null
+++ b/conf/unit_tests_cryptodev_func.cfg
@@ -0,0 +1,8 @@
+[suite]
+# Cryptodev common options qat device id
+crypto_dev_id="37c9"
+
+# eal config
+l="9,10,66"
+socket-mem="2048,0 --legacy-mem"
+n=6
\ No newline at end of file
diff --git a/tests/TestSuite_unit_tests_cryptodev.py b/tests/TestSuite_unit_tests_cryptodev.py
deleted file mode 100644
index db6552e..0000000
--- a/tests/TestSuite_unit_tests_cryptodev.py
+++ /dev/null
@@ -1,170 +0,0 @@
-# BSD LICENSE
-#
-# Copyright(c) 2016-2017 Intel Corporation. All rights reserved.
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-#   * Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-#   * Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in
-#     the documentation and/or other materials provided with the
-#     distribution.
-#   * Neither the name of Intel Corporation nor the names of its
-#     contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import utils
-from test_case import TestCase
-
-
-class UnitTestsCryptodev(TestCase):
-
-    def set_up_all(self):
-
-        self.core_config = "1S/2C/1T"
-        self.number_of_ports = 1
-        self.dut_ports = self.dut.get_ports(self.nic)
-        self.verify(len(self.dut_ports) >= self.number_of_ports,
-                    "Not enough ports for " + self.nic)
-        self.ports_socket = self.dut.get_numa_id(self.dut_ports[0])
-
-        self.logger.info("core config = " + self.core_config)
-        self.logger.info("number of ports = " + str(self.number_of_ports))
-        self.logger.info("dut ports = " + str(self.dut_ports))
-        self.logger.info("ports_socket = " + str(self.ports_socket))
-
-        self.core_mask = utils.create_mask(self.dut.get_core_list(
-            self.core_config,
-            socket=self.ports_socket))
-        self.port_mask = utils.create_mask([self.dut_ports[0]])
-
-        self.tx_port = self.tester.get_local_port(self.dut_ports[0])
-        self.rx_port = self.tester.get_local_port(self.dut_ports[0])
-
-        self.tx_interface = self.tester.get_interface(self.tx_port)
-        self.rx_interface = self.tester.get_interface(self.rx_port)
-
-        self.logger.info("core mask = " + self.core_mask)
-        self.logger.info("port mask = " + self.port_mask)
-        self.logger.info("tx interface = " + self.tx_interface)
-        self.logger.info("rx interface = " + self.rx_interface)
-
-        # Rebuild the dpdk with cryptodev pmds CONFIG_RTE_LIBRTE_PMD_ZUC=n
-        self.dut.send_expect("export AESNI_MULTI_BUFFER_LIB_PATH=/root/ipsec_043/code/", "#")
-        self.dut.send_expect("export LIBSSO_SNOW3G_PATH=/root/libsso_snow3g/snow3g/", "#")
-        self.dut.send_expect("export LIBSSO_ZUC_PATH=/root/libsso_zuc.1.0.1.1-8/zuc", "#")
-        self.dut.send_expect("export LIBSSO_KASUMI_PATH=/root/LibSSO_0_3_1/isg_cid-wireless_libs/ciphers/kasumi/", "#")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_QAT=n$/CONFIG_RTE_LIBRTE_PMD_QAT=y/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=n$/CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=y/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=n$/CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=y/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_SNOW3G=n$/CONFIG_RTE_LIBRTE_PMD_SNOW3G=y/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_KASUMI=n$/CONFIG_RTE_LIBRTE_PMD_KASUMI=y/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_OPENSSL=n$/CONFIG_RTE_LIBRTE_PMD_OPENSSL=y/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n$/CONFIG_RTE_LIBRTE_PMD_AESNI_MB=y/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_ZUC=n$/CONFIG_RTE_LIBRTE_PMD_ZUC=y/' config/common_base", "# ")
-        self.dut.skip_setup = False
-        self.dut.build_install_dpdk(self.dut.target)
-
-        # Bind QAT VF devices
-        out = self.dut.send_expect("lspci -d:443|awk '{print $1}'", "# ", 10)
-        self.dut.send_expect('echo "8086 0443" > /sys/bus/pci/drivers/igb_uio/new_id', "# ", 10)
-        for line in out.replace("\r", "\n").replace("\n\n", "\n").split("\n"):
-            cmd = "echo 0000:{} > /sys/bus/pci/devices/0000\:{}/driver/unbind".format(line, line.replace(":", "\:"))
-            self.dut.send_expect(cmd, "# ", 10)
-            cmd = "echo 0000:{} > /sys/bus/pci/drivers/igb_uio/bind".format(line)
-            self.dut.send_expect(cmd, "# ", 10)
-
-    def set_up(self):
-        pass
-
-    def tear_down(self):
-        self.dut.kill_all()
-
-    def tear_down_all(self):
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_QAT=y$/CONFIG_RTE_LIBRTE_PMD_QAT=n/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=y$/CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=n/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=y$/CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=n/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_SNOW3G=y$/CONFIG_RTE_LIBRTE_PMD_SNOW3G=n/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_KASUMI=y$/CONFIG_RTE_LIBRTE_PMD_KASUMI=n/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_OPENSSL=y$/CONFIG_RTE_LIBRTE_PMD_OPENSSL=n/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_AESNI_MB=y$/CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n/' config/common_base", "# ")
-        self.dut.send_expect("sed -i 's/CONFIG_RTE_LIBRTE_PMD_ZUC=y$/CONFIG_RTE_LIBRTE_PMD_ZUC=n/' config/common_base", "# ")
-        self.dut.build_install_dpdk(self.dut.target)
-
-    def test_cryptodev_qat_autotest(self):
-        self.__run_unit_test("cryptodev_qat_autotest")
-
-    def test_cryptodev_qat_perftest(self):
-        self.__run_unit_test("cryptodev_qat_perftest")
-
-    def test_cryptodev_aesni_mb_perftest(self):
-        self.__run_unit_test("cryptodev_aesni_mb_perftest")
-
-    def test_cryptodev_sw_snow3g_perftest(self):
-        self.__run_unit_test("cryptodev_sw_snow3g_perftest")
-
-    def test_cryptodev_qat_snow3g_perftest(self):
-        self.__run_unit_test("cryptodev_qat_snow3g_perftest")
-
-    def test_cryptodev_aesni_gcm_perftest(self):
-        self.__run_unit_test("cryptodev_aesni_gcm_perftest")
-
-    def test_cryptodev_openssl_perftest(self):
-        self.__run_unit_test("cryptodev_openssl_perftest")
-
-    def test_cryptodev_qat_continual_perftest(self):
-        self.__run_unit_test("cryptodev_qat_continual_perftest")
-
-    def test_cryptodev_aesni_mb_autotest(self):
-        self.__run_unit_test("cryptodev_aesni_mb_autotest")
-
-    def test_cryptodev_openssl_autotest(self):
-        self.__run_unit_test("cryptodev_openssl_autotest")
-
-    def test_cryptodev_aesni_gcm_autotest(self):
-        self.__run_unit_test("cryptodev_aesni_gcm_autotest")
-
-    def test_cryptodev_null_autotest(self):
-        self.__run_unit_test("cryptodev_null_autotest")
-
-    def test_cryptodev_sw_snow3g_autotest(self):
-        self.__run_unit_test("cryptodev_sw_snow3g_autotest")
-
-    def test_cryptodev_sw_kasumi_autotest(self):
-        self.__run_unit_test("cryptodev_sw_kasumi_autotest")
-
-    def test_cryptodev_sw_zuc_autotest(self):
-        self.__run_unit_test("cryptodev_sw_zuc_autotest")
-
-    def __run_unit_test(self, testsuite, timeout=600):
-        self.logger.info("STEP_TEST: " + testsuite)
-        self.dut.send_expect("dmesg -C", "# ", 30)
-        self.dut.send_expect("./{target}/app/test -n 1 -c 0xf".format(target=self.dut.target), "RTE>>", 30)
-        out = ""
-        try:
-            out = self.dut.send_expect(testsuite, "RTE>>", timeout)
-            self.dut.send_expect("quit", "# ", 30)
-        except Exception, ex:
-            self.logger.error("Cryptodev Unit Tests Exception")
-            dmesg = self.dut.alt_session.send_expect("dmesg", "# ", 30)
-            self.logger.error("dmesg info:")
-            self.logger.error(dmesg)
-
-        self.logger.info(out)
-        self.verify("Test OK" in out, "Test Failed")
diff --git a/tests/TestSuite_unit_tests_cryptodev_func.py b/tests/TestSuite_unit_tests_cryptodev_func.py
new file mode 100644
index 0000000..3b62e04
--- /dev/null
+++ b/tests/TestSuite_unit_tests_cryptodev_func.py
@@ -0,0 +1,137 @@
+# BSD LICENSE
+#
+# Copyright(c) 2016-2017 Intel Corporation. All rights reserved.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+#
+#   * Redistributions of source code must retain the above copyright
+#     notice, this list of conditions and the following disclaimer.
+#   * Redistributions in binary form must reproduce the above copyright
+#     notice, this list of conditions and the following disclaimer in
+#     the documentation and/or other materials provided with the
+#     distribution.
+#   * Neither the name of Intel Corporation nor the names of its
+#     contributors may be used to endorse or promote products derived
+#     from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+import json
+import utils
+from test_case import TestCase
+
+import cryptodev_common as cc
+
+
+class UnitTestsCryptodev(TestCase):
+
+    def set_up_all(self):
+        self._app_path = "./{target}/app/test".format(target=self.dut.target)
+        if not cc.is_build_skip(self):
+            cc.build_dpdk_with_cryptodev(self)
+        cc.bind_qat_device(self, "vfio-pci")
+
+    def set_up(self):
+        pass
+
+    def tear_down(self):
+        self.dut.kill_all()
+
+    def tear_down_all(self):
+        cc.clear_dpdk_config(self)
+
+    def test_cryptodev_qat_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_qat_autotest", eal_opt_str)
+
+    def _test_cryptodev_qat_perftest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_qat_perftest", eal_opt_str)
+
+    def _test_cryptodev_qat_continual_perftest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_qat_continual_perftest", eal_opt_str)
+
+    def _test_cryptodev_qat_snow3g_perftest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_qat_snow3g_perftest", eal_opt_str)
+
+    def test_cryptodev_aesni_mb_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_aesni_mb_autotest", eal_opt_str)
+
+    def _test_cryptodev_aesni_mb_perftest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_aesni_mb_perftest", eal_opt_str)
+
+    def test_cryptodev_aesni_gcm_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_aesni_gcm_autotest", eal_opt_str)
+
+    def _test_cryptodev_aesni_gcm_perftest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_aesni_gcm_perftest", eal_opt_str)
+
+    def test_cryptodev_sw_snow3g_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_sw_snow3g_autotest", eal_opt_str)
+
+    def _test_cryptodev_sw_snow3g_perftest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_sw_snow3g_perftest", eal_opt_str)
+
+    def test_cryptodev_sw_kasumi_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_sw_kasumi_autotest", eal_opt_str)
+
+    def test_cryptodev_sw_zuc_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_sw_zuc_autotest", eal_opt_str)
+
+    def test_cryptodev_null_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_null_autotest", eal_opt_str)
+
+    def test_cryptodev_openssl_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_openssl_autotest", eal_opt_str)
+
+    def _test_cryptodev_openssl_perftest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_openssl_perftest", eal_opt_str)
+
+    def test_cryptodev_scheduler_autotest(self):
+        eal_opt_str = cc.get_eal_opt_str(self)
+        self.__run_unit_test("cryptodev_scheduler_autotest", eal_opt_str)
+
+    def __run_unit_test(self, testsuite, eal_opt_str, timeout=600):
+        self.logger.info("STEP_TEST: " + testsuite)
+        self.dut.send_expect("dmesg -C", "# ", 30)
+        cmd_str = cc.get_dpdk_app_cmd_str(self._app_path, eal_opt_str)
+        self.dut.send_expect(cmd_str, "RTE>>", 30)
+
+        out = ""
+        try:
+            out = self.dut.send_expect(testsuite, "RTE>>", timeout)
+            self.dut.send_expect("quit", "# ", 30)
+        except Exception, ex:
+            self.logger.error("Cryptodev Unit Tests Exception")
+            dmesg = self.dut.alt_session.send_expect("dmesg", "# ", 30)
+            self.logger.error("dmesg info:")
+            self.logger.error(dmesg)
+
+        self.logger.info(out)
+        self.verify("Test OK" in out, "Test Failed")
-- 
2.7.4



More information about the dts mailing list