From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4AE49A0524; Tue, 13 Apr 2021 03:39:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 09D1216097A; Tue, 13 Apr 2021 03:39:03 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id CE363160979 for ; Tue, 13 Apr 2021 03:39:00 +0200 (CEST) IronPort-SDR: pywP8l4LWZc1tt1GqpZsTpW6KWJk4EFS6PQlB39Q2UNyuwY/bXD9yhK7qGyJ4dVM+5eJpMk4EG o1z916fxzhIw== X-IronPort-AV: E=McAfee;i="6200,9189,9952"; a="258289135" X-IronPort-AV: E=Sophos;i="5.82,216,1613462400"; d="scan'208";a="258289135" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Apr 2021 18:38:59 -0700 IronPort-SDR: pwDHZuxU5aiRG1MJJj/jfiJXjXYeMycBRm6tEUPuMOQzBuM0sRKEAAiuURCIMkHR4mOSFkfoCK vTIfvBAiFJ/g== X-IronPort-AV: E=Sophos;i="5.82,216,1613462400"; d="scan'208";a="417644833" Received: from unknown (HELO dpdk-zhaohy-t.sh.intel.com) ([10.240.183.68]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Apr 2021 18:38:57 -0700 From: Xiang An To: dts@dpdk.org Cc: Xiang An Date: Tue, 13 Apr 2021 09:47:53 +0800 Message-Id: <1618278474-83948-2-git-send-email-xiangx.an@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1618278474-83948-1-git-send-email-xiangx.an@intel.com> References: <1618278474-83948-1-git-send-email-xiangx.an@intel.com> Subject: [dts] [PATCH V2 1/2] tests/cvl_advanced_rss_gtpogre: add a new case ... X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" Add a new case: test_parse_pfcp_over_gre_packet Signed-off-by: Xiang An --- tests/TestSuite_cvl_advanced_rss_gtpogre.py | 52 +++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/tests/TestSuite_cvl_advanced_rss_gtpogre.py b/tests/TestSuite_cvl_advanced_rss_gtpogre.py index 4a889ea..d202509 100755 --- a/tests/TestSuite_cvl_advanced_rss_gtpogre.py +++ b/tests/TestSuite_cvl_advanced_rss_gtpogre.py @@ -3503,7 +3503,59 @@ class TestCVLAdvancedRSSGTPoGRE(TestCase): self.switch_testpmd(enable_rss=True) self.rssprocess.handle_rss_distribute_cases(cases_info=inner_l4_protocal_hash) + def change_dpdk_code(self): + """ + change dpdk's code to show the PFCP ptype + """ + file_location = "drivers/net/ice/ice_rxtx.c" + match1 = "rte_le_to_cpu_16(rxdp\[j\].wb.ptype_flex_flags0)\];" + match2 = "ice_set_rx_function(struct rte_eth_dev \*dev)" + insert1 = "printf(\"ptype: %3d\\\\n\", ICE_RX_FLEX_DESC_PTYPE_M & rte_le_to_cpu_16(rxdp\[j\].wb.ptype_flex_flags0));" + insert2 = "#endif" + insert3 = "#if 0" + + self.dut.send_expect("rm -rf drivers/net/ice/ice_rxtx.c_bak", "# ") + self.dut.send_expect("cp -rf drivers/net/ice/ice_rxtx.c drivers/net/ice/ice_rxtx.c_bak", "# ") + self.dut.send_expect("sed -i '/%s/a\%s' %s"%(match1,insert1,file_location), "# ") + self.dut.send_expect("sed -i '/%s/{n;n;n;n;n;s|$|\\n%s|}' %s" % (match2, insert2, file_location), "# ") + self.dut.send_expect("sed -i '/%s/{n;n;n;n;n;n;s|$|\\n%s|}' %s" % (match2, insert3, file_location), "# ") + + def recovery_dpdk_code(self): + """ + Recovery dpdk's code after the case finished + """ + self.dut.send_expect("rm -rf drivers/net/ice/ice_rxtx.c", "# ") + self.dut.send_expect("cp -rf drivers/net/ice/ice_rxtx.c_bak drivers/net/ice/ice_rxtx.c", "# ") + + def test_parse_pfcp_over_gre_packet(self): + self.pmd_output.quit() + self.change_dpdk_code() + self.dut.build_install_dpdk(self.dut.target) + + pkt1 = 'Ether(dst="00:11:22:33:44:55")/IP(proto=0x2F)/GRE(proto=0x0800)/IP()/UDP(sport=22, dport=8805)/PFCP(S=0)' + pkt2 = 'Ether(dst="00:11:22:33:44:55")/IP(proto=0x2F)/GRE(proto=0x0800)/IP()/UDP(sport=22, dport=8805)/PFCP(S=1, seid=123)' + pkt3 = 'Ether(dst="00:11:22:33:44:55")/IPv6(nh=0x2F)/GRE(proto=0x86dd)/IPv6()/UDP(sport=22, dport=8805)/PFCP(S=0)' + pkt4 = 'Ether(dst="00:11:22:33:44:55")/IPv6(nh=0x2F)/GRE(proto=0x86dd)/IPv6()/UDP(sport=22, dport=8805)/PFCP(S=1, seid=256)' + pkts = [pkt1, pkt2, pkt3, pkt4] + p = Packet() + for i in pkts: + p.append_pkt(i) + self.switch_testpmd(enable_rss=True) + p.send_pkt(self.tester, tx_port=self.tester_iface0) + out = self.pmd_output.get_output(timeout=1) + + self.verify('ptype: 351' in out,'some subcase failed') + self.verify('ptype: 352' in out,'some subcase failed') + self.verify('ptype: 353' in out,'some subcase failed') + self.verify('ptype: 354' in out,'some subcase failed') + def tear_down(self): + #Judge the currently running case + if self.running_case == "test_parse_pfcp_over_gre_packet" : + self.pmd_output.quit() + self.recovery_dpdk_code() + self.dut.build_install_dpdk(self.dut.target) + self.switch_testpmd(enable_rss=False) # destroy all flow rule on port 0 self.dut.send_command("flow flush 0", timeout=1) self.dut.send_command("clear port stats all", timeout=1) -- 1.8.3.1