From patchwork Thu Oct 14 08:10:23 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 101561 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A75EFA0C4C; Thu, 14 Oct 2021 09:56:53 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 741E140042; Thu, 14 Oct 2021 09:56:53 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 8346940041 for ; Thu, 14 Oct 2021 09:56:51 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10136"; a="214783873" X-IronPort-AV: E=Sophos;i="5.85,372,1624345200"; d="scan'208";a="214783873" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2021 00:56:50 -0700 X-IronPort-AV: E=Sophos;i="5.85,372,1624345200"; d="scan'208";a="442008109" Received: from unknown (HELO dpdk-zhaohy-t.sh.intel.com) ([10.240.183.68]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2021 00:56:49 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Date: Thu, 14 Oct 2021 16:10:23 +0800 Message-Id: <1634199023-65745-1-git-send-email-songx.jiale@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V2] tests/rteflow_priority: update case code for dpdk code change 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" when dpdk fixed a bug, the code design changed, so in order to test the fdir rule, need to add "mark" to the rule Signed-off-by: Jiale Song --- test_plans/rteflow_priority_test_plan.rst | 4 ++-- tests/TestSuite_rteflow_priority.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test_plans/rteflow_priority_test_plan.rst b/test_plans/rteflow_priority_test_plan.rst index b1815ce..4ca1c22 100644 --- a/test_plans/rteflow_priority_test_plan.rst +++ b/test_plans/rteflow_priority_test_plan.rst @@ -77,14 +77,14 @@ Patterns in this case: #. Create a rule with priority 0, Check the flow can be created but it will map to fdir filter:: - testpmd> flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end + testpmd> flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end ice_interrupt_handler(): OICR: MDD event ice_flow_create(): Succeeded to create (1) flow Flow rule #0 created #. Create a rule with priority 1, check the flow can not be created for the vallue of priority is 0 in non-pipeline mode:: - testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end + testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end ice_flow_create(): Failed to create flow Caught error type 4 (priority field): cause: 0x7ffe24e65738, Not support priority.: Invalid argument diff --git a/tests/TestSuite_rteflow_priority.py b/tests/TestSuite_rteflow_priority.py index 23aea82..61607c1 100755 --- a/tests/TestSuite_rteflow_priority.py +++ b/tests/TestSuite_rteflow_priority.py @@ -204,9 +204,9 @@ class TestRteflowPriority(TestCase): out = self.dut.send_expect(command, "testpmd> ", 120) self.logger.debug(out) - out=self.dut.send_expect("flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end", "testpmd>", 15) + out=self.dut.send_expect("flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end", "testpmd>", 15) self.verify( "Successed" and "(1)" in out, "failed: rule can't be created to fdir") - out=self.dut.send_expect("flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end", "testpmd>", 15) + out=self.dut.send_expect("flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end", "testpmd>", 15) self.verify( "Failed" in out, "failed: default value of priority is 0 in non-pipeline mode") self.dut.send_expect("flow flush 0", "testpmd>", 20) self.dut.send_expect("quit", "#", 50) @@ -216,9 +216,9 @@ class TestRteflowPriority(TestCase): out = self.dut.send_expect(command, "testpmd> ", 120) self.logger.debug(out) - out=self.dut.send_expect("flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end", "testpmd>", 15) + out=self.dut.send_expect("flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end", "testpmd>", 15) self.verify( "Successed" and "(1)" in out, "failed: rule can't be created to fdir") - out=self.dut.send_expect("flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end", "testpmd>", 15) + out=self.dut.send_expect("flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end", "testpmd>", 15) self.verify( "Failed" in out, "failed: default value of priority is 0 in non-pipeline mode") self.dut.send_expect("flow flush 0", "testpmd>", 20) self.dut.send_expect("quit", "#", 50)