From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3F799A0352; Thu, 16 Jan 2020 08:24:42 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 04A421C0D5; Thu, 16 Jan 2020 08:24:42 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 0ECB11C0BF for ; Thu, 16 Jan 2020 08:24:40 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Jan 2020 23:24:40 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,325,1574150400"; d="scan'208";a="423911621" Received: from dpdk-moyufen06.sh.intel.com ([10.67.116.222]) by fmsmga005.fm.intel.com with ESMTP; 15 Jan 2020 23:24:39 -0800 From: yufengmx To: dts@dpdk.org, lijuan.tu@intel.com Cc: yufengmx Date: Thu, 16 Jan 2020 15:27:06 +0800 Message-Id: <20200116072719.23526-1-yufengx.mo@intel.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V3 0/13] l3fwd: refactor script X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" refactor script. v4: - rebase for merge conflict. - v3: - support one port testing topo for ixia. - add test case name in cfg file. - rename module l3fwd.py to l3fwd_base.py. - rename common_l3fwd.cfg to l3fwd_base.cfg. - rename verify method names. - rename test scripts suite name. - v2: - update script based on version 2 l3fwd test plan. - separate script into five suites for different testing scenario. - separate flows configuration in common_l3fwd.cfg. - add test result data check process as new test plan requirement. - save test results in json format file. - v1: - optimize packet creation time consumption. - separate LPM/EM mode packet creation process. - use new pktgen coding style to take the place of migration coding style. - unify rfc2544/throughput result data display table methods. - move test content configuration into cfg file, including flows/EM table/LPM table/framesizes/port configs. yufengmx (13): conf/l3fwd: l3fwd suite testing configuration conf/l3fwd_base: l3fwd base class flows configuration conf/l3fwd_em: suite testing configuration conf/l3fwd_lpm_ipv4_rfc2544: suite testing configuration conf/l3fwd_lpm_ipv4: l3fwd_lpm_ipv4 testing configuration conf/l3fwd_lpm_ipv6: suite testing configuration tests/l3fwd: upload automation script tests/l3fwd_em: upload automation script tests/l3fwd_lpm_ipv4_rfc2544: upload automation script tests/l3fwd_lpm_ipv4: upload automation script tests/l3fwd_lpm_ipv6: upload automation script tests/l3fwd_base: upload automation script framework/test_case: add wirespeed columbiaville nic conf/l3fwd.cfg | 400 ++++++++++++ conf/l3fwd_base.cfg | 103 +++ conf/l3fwd_em.cfg | 147 +++++ conf/l3fwd_lpm_ipv4.cfg | 105 +++ conf/l3fwd_lpm_ipv4_rfc2544.cfg | 105 +++ conf/l3fwd_lpm_ipv6.cfg | 105 +++ framework/test_case.py | 4 + tests/TestSuite_l3fwd.py | 370 ++--------- tests/TestSuite_l3fwd_em.py | 258 +------- tests/TestSuite_l3fwd_lpm_ipv4.py | 86 +++ tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py | 86 +++ tests/TestSuite_l3fwd_lpm_ipv6.py | 85 +++ tests/l3fwd_base.py | 744 ++++++++++++++++++++++ 13 files changed, 2044 insertions(+), 554 deletions(-) create mode 100644 conf/l3fwd.cfg create mode 100644 conf/l3fwd_base.cfg create mode 100644 conf/l3fwd_em.cfg create mode 100644 conf/l3fwd_lpm_ipv4.cfg create mode 100644 conf/l3fwd_lpm_ipv4_rfc2544.cfg create mode 100644 conf/l3fwd_lpm_ipv6.cfg create mode 100644 tests/TestSuite_l3fwd_lpm_ipv4.py create mode 100644 tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py create mode 100644 tests/TestSuite_l3fwd_lpm_ipv6.py create mode 100644 tests/l3fwd_base.py -- 2.21.0