test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts][PATCH V1] test_plans/pmd_test_plan: supplement the test plan
@ 2022-11-29  1:14 Hongbo Li
  0 siblings, 0 replies; 3+ messages in thread
From: Hongbo Li @ 2022-11-29  1:14 UTC (permalink / raw)
  To: dts; +Cc: Hongbo Li

the case of pmd/checksum_checking only cover in testcase not in test plan. so supplement the test plan.

Signed-off-by: Hongbo Li <hongbox.li@intel.com>
---
 test_plans/pmd_test_plan.rst | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/test_plans/pmd_test_plan.rst b/test_plans/pmd_test_plan.rst
index c371edb1..4d3c1cb7 100644
--- a/test_plans/pmd_test_plan.rst
+++ b/test_plans/pmd_test_plan.rst
@@ -73,6 +73,24 @@ Test Case: Packet Checking
    which will be forwarded by the DUT. The test checks if the packets are correctly forwarded and
    if both RX and TX packet sizes match by `show port all stats`
 
+Test Case: Checksum checking
+==========================
+
+1. Start testpmd with rxfreet=0 and set forward mode to csum::
+
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1-2 -n 4 -a 0000:18:00.0 -a 0000:1b:00.0 --file-prefix=dpdk_2179994_20221121150432    -- -i --portmask=0x3 --enable-rx-cksum --disable-rss --rxd=1024 --txd=1024 --rxfreet=0
+    testpmd> set fwd csum
+    testpmd> start
+
+2. The tester sends 4 messages with error checksum, and check whether the message is correctly forwarded by DUT::
+
+    sendp([Ether(dst=00:11:22:33:44:55, src="52:00:00:00:00:00")/IP(len=46)/UDP(chksum=0x1)/Raw(load="P"*18)], iface="ens9", count=4)
+
+3. Stop testpmd and check whether the l4 checksum error reported by the Rx port is equal to 4.
+
+4. change the value of "rxfreet"(0, 8, 16, 32, 64, 128), and start testpmd, repeat step 1-3, check the result is same.
+
+
 Test Case: Packet Checking in scalar mode
 =========================================
 
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [dts][PATCH V1] test_plans/pmd_test_plan: supplement the test plan
  2022-11-29  1:58 Hongbo Li
@ 2022-12-06  2:18 ` Huang, ZhiminX
  0 siblings, 0 replies; 3+ messages in thread
From: Huang, ZhiminX @ 2022-12-06  2:18 UTC (permalink / raw)
  To: Li, HongboX, dts; +Cc: Li, HongboX

> -----Original Message-----
> From: Hongbo Li <hongbox.li@intel.com>
> Sent: Tuesday, November 29, 2022 9:58 AM
> To: dts@dpdk.org
> Cc: Li, HongboX <hongbox.li@intel.com>
> Subject: [dts][PATCH V1] test_plans/pmd_test_plan: supplement the test plan
> 
> the case of pmd/checksum_checking only cover in testcase not in test plan. so
> supplement the test plan.
> 
> Signed-off-by: Hongbo Li <hongbox.li@intel.com>
> ---
>  test_plans/pmd_test_plan.rst | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
> 
> diff --git a/test_plans/pmd_test_plan.rst b/test_plans/pmd_test_plan.rst index
> c371edb1..c1760c97 100644
> --- a/test_plans/pmd_test_plan.rst
> +++ b/test_plans/pmd_test_plan.rst
> @@ -73,6 +73,24 @@ Test Case: Packet Checking
>     which will be forwarded by the DUT. The test checks if the packets are
> correctly forwarded and
>     if both RX and TX packet sizes match by `show port all stats`
> 
> +Test Case: Checksum checking
> +============================
> +
> +1. Start testpmd with rxfreet=0 and set forward mode to csum::
> +
> +    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1-2 -n 4 -a
> 0000:18:00.0 -a 0000:1b:00.0 --file-prefix=dpdk_2179994_20221121150432
> -- -i --portmask=0x3 --enable-rx-cksum --disable-rss --rxd=1024 --txd=1024
> --rxfreet=0
> +    testpmd> set fwd csum
> +    testpmd> start
> +
> +2. The tester sends 4 messages with error checksum, and check whether the
> message is correctly forwarded by DUT::
> +
> +    sendp([Ether(dst=00:11:22:33:44:55,
> + src="52:00:00:00:00:00")/IP(len=46)/UDP(chksum=0x1)/Raw(load="P"*18)],
> + iface="ens9", count=4)
> +
> +3. Stop testpmd and check whether the l4 checksum error reported by the Rx
> port is equal to 4.

Could you add the expected results at step 3?

> +
> +4. change the value of "rxfreet"(0, 8, 16, 32, 64, 128), and start testpmd,
> repeat step 1-3, check the result is same.
> +
> +
>  Test Case: Packet Checking in scalar mode
> =========================================
> 
> --
> 2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [dts][PATCH V1] test_plans/pmd_test_plan: supplement the test plan
@ 2022-11-29  1:58 Hongbo Li
  2022-12-06  2:18 ` Huang, ZhiminX
  0 siblings, 1 reply; 3+ messages in thread
From: Hongbo Li @ 2022-11-29  1:58 UTC (permalink / raw)
  To: dts; +Cc: Hongbo Li

the case of pmd/checksum_checking only cover in testcase not in test plan. so supplement the test plan.

Signed-off-by: Hongbo Li <hongbox.li@intel.com>
---
 test_plans/pmd_test_plan.rst | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/test_plans/pmd_test_plan.rst b/test_plans/pmd_test_plan.rst
index c371edb1..c1760c97 100644
--- a/test_plans/pmd_test_plan.rst
+++ b/test_plans/pmd_test_plan.rst
@@ -73,6 +73,24 @@ Test Case: Packet Checking
    which will be forwarded by the DUT. The test checks if the packets are correctly forwarded and
    if both RX and TX packet sizes match by `show port all stats`
 
+Test Case: Checksum checking
+============================
+
+1. Start testpmd with rxfreet=0 and set forward mode to csum::
+
+    ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 1-2 -n 4 -a 0000:18:00.0 -a 0000:1b:00.0 --file-prefix=dpdk_2179994_20221121150432    -- -i --portmask=0x3 --enable-rx-cksum --disable-rss --rxd=1024 --txd=1024 --rxfreet=0
+    testpmd> set fwd csum
+    testpmd> start
+
+2. The tester sends 4 messages with error checksum, and check whether the message is correctly forwarded by DUT::
+
+    sendp([Ether(dst=00:11:22:33:44:55, src="52:00:00:00:00:00")/IP(len=46)/UDP(chksum=0x1)/Raw(load="P"*18)], iface="ens9", count=4)
+
+3. Stop testpmd and check whether the l4 checksum error reported by the Rx port is equal to 4.
+
+4. change the value of "rxfreet"(0, 8, 16, 32, 64, 128), and start testpmd, repeat step 1-3, check the result is same.
+
+
 Test Case: Packet Checking in scalar mode
 =========================================
 
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-12-06  2:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-29  1:14 [dts][PATCH V1] test_plans/pmd_test_plan: supplement the test plan Hongbo Li
2022-11-29  1:58 Hongbo Li
2022-12-06  2:18 ` Huang, ZhiminX

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).