* [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite
@ 2015-05-28 8:36 Jingguo Fu
2015-05-28 8:36 ` [dts] [DTS][PATCH V2 2/2] scatter: add scatter test plan Jingguo Fu
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jingguo Fu @ 2015-05-28 8:36 UTC (permalink / raw)
To: dts; +Cc: Jingguo Fu
Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
---
tests/TestSuite_scatter.py | 132 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 132 insertions(+)
create mode 100644 tests/TestSuite_scatter.py
diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
new file mode 100644
index 0000000..2ce5965
--- /dev/null
+++ b/tests/TestSuite_scatter.py
@@ -0,0 +1,132 @@
+# BSD LICENSE
+#
+# Copyright(c) 2010-2014 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.
+
+"""
+DPDK Test suite.
+Test Scattered Packets.
+"""
+import dts
+from test_case import TestCase
+from pmd_output import PmdOutput
+
+EHTERNET_HEADER = 18
+IP_HEADER = 20
+DEFAULT_MBUF_SIZE = 2048
+JUMBO_FRAME_MTU = 9000
+STANDARD_MTU = 1500
+#
+#
+# Test class.
+#
+class TestScatter(TestCase):
+ #
+ #
+ #
+ # Test cases.
+ #
+ def set_up_all(self):
+ """
+ Run at the start of each test suite.
+ Scatter Prerequistites
+ """
+ dutPorts = self.dut.get_ports(self.nic)
+ # Verify that enough ports are available
+ self.verify(len(dutPorts) >= 2, "Insufficient ports")
+ self.pmdout = PmdOutput(self.dut)
+
+ def scatter_pktgen_send_packet(self, sPortid, rPortid, pktsize, num=1):
+ """
+ Functional test for scatter packets.
+ """
+ sport = self.tester.get_local_port(sPortid)
+ sintf = self.tester.get_interface(sport)
+ smac = self.dut.get_mac_address(sPortid)
+ rport = self.tester.get_local_port(rPortid)
+ rintf = self.tester.get_interface(rport)
+ self.tester.send_expect("ifconfig %s mtu %s" % (sintf, JUMBO_FRAME_MTU), "#")
+ self.tester.send_expect("ifconfig %s mtu %s" % (rintf, JUMBO_FRAME_MTU), "#")
+
+ self.tester.scapy_background()
+ self.tester.scapy_append(
+ 'p = sniff(filter="ip",iface="%s", count=%d)' % (rintf, num))
+ self.tester.scapy_append('RESULT = str(p)')
+
+ pktlen = pktsize - EHTERNET_HEADER
+ padding = pktlen - IP_HEADER
+
+ self.tester.scapy_foreground()
+ self.tester.scapy_append(
+ 'sendp([Ether(dst="%s")/IP(len=%s)/Raw(load="\x50"*%s)], iface="%s")' % (smac, pktlen, padding, sintf))
+ self.tester.scapy_execute()
+ res = self.tester.scapy_get_result()
+ self.tester.send_expect("ifconfig %s mtu %s" % (sintf, STANDARD_MTU), "#")
+ self.tester.send_expect("ifconfig %s mtu %s" % (rintf, STANDARD_MTU), "#")
+ return res
+
+ def set_up(self):
+ """
+ Run before each test case.
+ """
+ pass
+
+ def test_scatter_mbuf(self):
+ """
+ Scatter 2048 mbuf
+ """
+ dutPorts = self.dut.get_ports(self.nic)
+ portMask = dts.create_mask(dutPorts[:2])
+
+ # set the mbuf size to 1024
+ out = self.pmdout.start_testpmd(
+ "Default", "--mbcache=200 --mbuf-size=%s --portmask=%s --max-pkt-len=%s" % (DEFAULT_MBUF_SIZE,portMask, JUMBO_FRAME_MTU))
+ self.verify("Error" not in out, "launch error 1")
+ self.dut.send_expect("set fwd mac", "testpmd> ", 120)
+ self.dut.send_expect("start", "testpmd> ")
+
+ for offset in [-1, 0, 1, 4, 5]:
+ ret = self.scatter_pktgen_send_packet(
+ dutPorts[0], dutPorts[1], DEFAULT_MBUF_SIZE + offset)
+ self.verify("load='P" in ret, "packet receive error")
+
+ self.dut.send_expect("stop", "testpmd> ")
+ self.dut.send_expect("quit", "# ", 30)
+
+ def tear_down(self):
+ """
+ Run after each test case.
+ """
+ pass
+
+ def tear_down_all(self):
+ """
+ Run after each test suite.
+ """
+ pass
--
2.1.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dts] [DTS][PATCH V2 2/2] scatter: add scatter test plan
2015-05-28 8:36 [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite Jingguo Fu
@ 2015-05-28 8:36 ` Jingguo Fu
2015-05-28 8:42 ` [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite Xu, HuilongX
2015-05-29 2:42 ` Tang, HaifengX
2 siblings, 0 replies; 4+ messages in thread
From: Jingguo Fu @ 2015-05-28 8:36 UTC (permalink / raw)
To: dts; +Cc: Jingguo Fu
Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
---
test_plans/scatter_test_plan.rst | 119 +++++++++++++++++++++++++++++++++++++++
1 file changed, 119 insertions(+)
create mode 100644 test_plans/scatter_test_plan.rst
diff --git a/test_plans/scatter_test_plan.rst b/test_plans/scatter_test_plan.rst
new file mode 100644
index 0000000..b1f1299
--- /dev/null
+++ b/test_plans/scatter_test_plan.rst
@@ -0,0 +1,119 @@
+.. Copyright (c) <2010, 2011>, Intel Corporation
+ 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.
+
+=================================================
+Support of Scattered Packets by Poll Mode Drivers
+=================================================
+
+The support of scattered packets by Poll Mode Drivers consists in making
+it possible to receive and to transmit scattered multi-segments packets
+composed of multiple non-contiguous memory buffers.
+To enforce the receipt of scattered packets, the DMA rings of port RX queues
+must be configured with mbuf data buffers whose size is lower than the maximum
+frame length.
+The forwarding of scattered input packets naturally enforces the transmission
+of scattered packets by PMD transmit functions.
+
+Configuring the size of mbuf data buffers
+=========================================
+
+The size of mbuf data buffers is configured with the parameter ``--mbuf-size``
+that is supplied in the set of parameters when launching the ``testpmd``
+application.
+The default size of the mbuf data buffer is 2048 so that a full 1518-byte
+(CRC included) Ethernet frame can be stored in a mono-segment packet.
+
+Functional Tests of Scattered Packets
+=====================================
+
+Testing the support of scattered packets in Poll Mode Drivers consists in
+sending to the test machine packets whose length is greater than the size
+of mbuf data buffers used to populate the DMA rings of port RX queues.
+
+First, the receipt and the transmission of scattered packets must be tested
+with the ``CRC stripping`` option enabled, which guarantees that scattered
+packets only contain packet data.
+
+In addition, the support of scattered packets must also be performed with
+the ``CRC stripping`` option disabled, to check the special cases of scattered
+input packets whose last buffer only contains the whole CRC or part of it.
+In such cases, PMD receive functions must free the last buffer when removing
+the CRC from the packet before returning it.
+
+As a whole, the following packet lengths (CRC included) must be tested to
+check all packet memory configurations:
+
+#. packet length < mbuf data buffer size
+
+#. packet length = mbuf data buffer size
+
+#. packet length = mbuf data buffer size + 1
+
+#. packet length = mbuf data buffer size + 4
+
+#. packet length = mbuf data buffer size + 5
+
+In cases 1) and 2), the hardware RX engine stores the packet data and the CRC
+in a single buffer.
+In case 3), the hardware RX engine stores the packet data and the 3 first bytes
+of the CRC in the first buffer, and the last byte of the CRC in a second buffer.
+In case 4), the hardware RX engine stores all the packet data in the first
+buffer, and the CRC in a second buffer.
+In case 5), the hardware RX engine stores part of the packet data in the first
+buffer, and the last data byte plus the CRC in a second buffer.
+
+Prerequisites
+=============
+
+Assuming that ports ``0`` and ``1`` of the test target are directly connected
+to a Traffic Generator, launch the ``testpmd`` application with the following
+arguments::
+
+ ./build/app/testpmd -cffffff -n 3 -- -i --rxd=1024 --txd=1024 \
+ --burst=144 --txpt=32 --txht=8 --txwt=8 --txfreet=0 --rxfreet=64 \
+ --mbcache=200 --portmask=0x3 --mbuf-size=1024
+
+The -n command is used to select the number of memory channels. It should match
+the number of memory channels on that setup.
+
+Setting the size of the mbuf data buffer to 1024 makes 1025-bytes input packets
+(CRC included) and larger packets to be stored in two buffers by the hardware
+RX engine.
+
+Test Case: Mbuf 1024 traffic
+============================
+
+Start packet forwarding in the ``testpmd`` application with the ``start`` command.
+Send 5 packets of lengths (CRC included) 1023, 1024, 1025, 1028, and 1029.
+Check that the same amount of frames and bytes are received back by the Traffic
+Generator from its port connected to the target's port 1.
+
--
2.1.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite
2015-05-28 8:36 [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite Jingguo Fu
2015-05-28 8:36 ` [dts] [DTS][PATCH V2 2/2] scatter: add scatter test plan Jingguo Fu
@ 2015-05-28 8:42 ` Xu, HuilongX
2015-05-29 2:42 ` Tang, HaifengX
2 siblings, 0 replies; 4+ messages in thread
From: Xu, HuilongX @ 2015-05-28 8:42 UTC (permalink / raw)
To: Fu, JingguoX, dts
Acked-by:huilong xu <huilongx.xu@intel.com>
> -----Original Message-----
> From: Fu, JingguoX
> Sent: Thursday, May 28, 2015 4:37 PM
> To: dts@dpdk.org
> Cc: Xu, HuilongX; Tang, HaifengX; Fu, JingguoX
> Subject: [DTS][PATCH V2 1/2] scatter: add scatter test suite
>
> Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
> ---
> tests/TestSuite_scatter.py | 132
> +++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 132 insertions(+)
> create mode 100644 tests/TestSuite_scatter.py
>
> diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
> new file mode 100644
> index 0000000..2ce5965
> --- /dev/null
> +++ b/tests/TestSuite_scatter.py
> @@ -0,0 +1,132 @@
> +# BSD LICENSE
> +#
> +# Copyright(c) 2010-2014 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.
> +
> +"""
> +DPDK Test suite.
> +Test Scattered Packets.
> +"""
> +import dts
> +from test_case import TestCase
> +from pmd_output import PmdOutput
> +
> +EHTERNET_HEADER = 18
> +IP_HEADER = 20
> +DEFAULT_MBUF_SIZE = 2048
> +JUMBO_FRAME_MTU = 9000
> +STANDARD_MTU = 1500
> +#
> +#
> +# Test class.
> +#
> +class TestScatter(TestCase):
> + #
> + #
> + #
> + # Test cases.
> + #
> + def set_up_all(self):
> + """
> + Run at the start of each test suite.
> + Scatter Prerequistites
> + """
> + dutPorts = self.dut.get_ports(self.nic)
> + # Verify that enough ports are available
> + self.verify(len(dutPorts) >= 2, "Insufficient ports")
> + self.pmdout = PmdOutput(self.dut)
> +
> + def scatter_pktgen_send_packet(self, sPortid, rPortid, pktsize,
> num=1):
> + """
> + Functional test for scatter packets.
> + """
> + sport = self.tester.get_local_port(sPortid)
> + sintf = self.tester.get_interface(sport)
> + smac = self.dut.get_mac_address(sPortid)
> + rport = self.tester.get_local_port(rPortid)
> + rintf = self.tester.get_interface(rport)
> + self.tester.send_expect("ifconfig %s mtu %s" % (sintf,
> JUMBO_FRAME_MTU), "#")
> + self.tester.send_expect("ifconfig %s mtu %s" % (rintf,
> JUMBO_FRAME_MTU), "#")
> +
> + self.tester.scapy_background()
> + self.tester.scapy_append(
> + 'p = sniff(filter="ip",iface="%s", count=%d)' % (rintf, num))
> + self.tester.scapy_append('RESULT = str(p)')
> +
> + pktlen = pktsize - EHTERNET_HEADER
> + padding = pktlen - IP_HEADER
> +
> + self.tester.scapy_foreground()
> + self.tester.scapy_append(
> + 'sendp([Ether(dst="%s")/IP(len=%s)/Raw(load="\x50"*%s)],
> iface="%s")' % (smac, pktlen, padding, sintf))
> + self.tester.scapy_execute()
> + res = self.tester.scapy_get_result()
> + self.tester.send_expect("ifconfig %s mtu %s" % (sintf,
> STANDARD_MTU), "#")
> + self.tester.send_expect("ifconfig %s mtu %s" % (rintf,
> STANDARD_MTU), "#")
> + return res
> +
> + def set_up(self):
> + """
> + Run before each test case.
> + """
> + pass
> +
> + def test_scatter_mbuf(self):
> + """
> + Scatter 2048 mbuf
> + """
> + dutPorts = self.dut.get_ports(self.nic)
> + portMask = dts.create_mask(dutPorts[:2])
> +
> + # set the mbuf size to 1024
> + out = self.pmdout.start_testpmd(
> + "Default", "--mbcache=200 --mbuf-size=%s --portmask=%s --max-
> pkt-len=%s" % (DEFAULT_MBUF_SIZE,portMask, JUMBO_FRAME_MTU))
> + self.verify("Error" not in out, "launch error 1")
> + self.dut.send_expect("set fwd mac", "testpmd> ", 120)
> + self.dut.send_expect("start", "testpmd> ")
> +
> + for offset in [-1, 0, 1, 4, 5]:
> + ret = self.scatter_pktgen_send_packet(
> + dutPorts[0], dutPorts[1], DEFAULT_MBUF_SIZE + offset)
> + self.verify("load='P" in ret, "packet receive error")
> +
> + self.dut.send_expect("stop", "testpmd> ")
> + self.dut.send_expect("quit", "# ", 30)
> +
> + def tear_down(self):
> + """
> + Run after each test case.
> + """
> + pass
> +
> + def tear_down_all(self):
> + """
> + Run after each test suite.
> + """
> + pass
> --
> 2.1.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite
2015-05-28 8:36 [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite Jingguo Fu
2015-05-28 8:36 ` [dts] [DTS][PATCH V2 2/2] scatter: add scatter test plan Jingguo Fu
2015-05-28 8:42 ` [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite Xu, HuilongX
@ 2015-05-29 2:42 ` Tang, HaifengX
2 siblings, 0 replies; 4+ messages in thread
From: Tang, HaifengX @ 2015-05-29 2:42 UTC (permalink / raw)
To: Fu, JingguoX, dts
>
>
>-----Original Message-----
>From: Fu, JingguoX
>Sent: Thursday, May 28, 2015 4:37 PM
>To: dts@dpdk.org
>Cc: Xu, HuilongX; Tang, HaifengX; Fu, JingguoX
>Subject: [DTS][PATCH V2 1/2] scatter: add scatter test suite
>
>Signed-off-by: Jingguo Fu <jingguox.fu@intel.com>
>---
> tests/TestSuite_scatter.py | 132 +++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 132 insertions(+)
> create mode 100644 tests/TestSuite_scatter.py
>
>diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py new file mode 100644 index 0000000..2ce5965
>--- /dev/null
>+++ b/tests/TestSuite_scatter.py
>@@ -0,0 +1,132 @@
>+# BSD LICENSE
>+#
>+# Copyright(c) 2010-2014 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.
>+
>+"""
>+DPDK Test suite.
>+Test Scattered Packets.
>+"""
>+import dts
>+from test_case import TestCase
>+from pmd_output import PmdOutput
>+
>+EHTERNET_HEADER = 18
>+IP_HEADER = 20
>+DEFAULT_MBUF_SIZE = 2048
>+JUMBO_FRAME_MTU = 9000
>+STANDARD_MTU = 1500
>+#
>+#
>+# Test class.
>+#
>+class TestScatter(TestCase):
>+ #
>+ #
>+ #
>+ # Test cases.
>+ #
>+ def set_up_all(self):
>+ """
>+ Run at the start of each test suite.
>+ Scatter Prerequistites
>+ """
>+ dutPorts = self.dut.get_ports(self.nic)
>+ # Verify that enough ports are available
>+ self.verify(len(dutPorts) >= 2, "Insufficient ports")
>+ self.pmdout = PmdOutput(self.dut)
>+
>+ def scatter_pktgen_send_packet(self, sPortid, rPortid, pktsize, num=1):
>+ """
>+ Functional test for scatter packets.
>+ """
>+ sport = self.tester.get_local_port(sPortid)
>+ sintf = self.tester.get_interface(sport)
>+ smac = self.dut.get_mac_address(sPortid)
>+ rport = self.tester.get_local_port(rPortid)
>+ rintf = self.tester.get_interface(rport)
>+ self.tester.send_expect("ifconfig %s mtu %s" % (sintf, JUMBO_FRAME_MTU), "#")
>+ self.tester.send_expect("ifconfig %s mtu %s" % (rintf,
>+ JUMBO_FRAME_MTU), "#")
>+
>+ self.tester.scapy_background()
>+ self.tester.scapy_append(
>+ 'p = sniff(filter="ip",iface="%s", count=%d)' % (rintf, num))
>+ self.tester.scapy_append('RESULT = str(p)')
>+
>+ pktlen = pktsize - EHTERNET_HEADER
>+ padding = pktlen - IP_HEADER
>+
>+ self.tester.scapy_foreground()
>+ self.tester.scapy_append(
>+ 'sendp([Ether(dst="%s")/IP(len=%s)/Raw(load="\x50"*%s)], iface="%s")' % (smac, pktlen, padding, sintf))
>+ self.tester.scapy_execute()
>+ res = self.tester.scapy_get_result()
>+ self.tester.send_expect("ifconfig %s mtu %s" % (sintf, STANDARD_MTU), "#")
>+ self.tester.send_expect("ifconfig %s mtu %s" % (rintf, STANDARD_MTU), "#")
>+ return res
>+
>+ def set_up(self):
>+ """
>+ Run before each test case.
>+ """
>+ pass
>+
>+ def test_scatter_mbuf(self):
>+ """
>+ Scatter 2048 mbuf
>+ """
>+ dutPorts = self.dut.get_ports(self.nic)
>+ portMask = dts.create_mask(dutPorts[:2])
>+
>+ # set the mbuf size to 1024
>+ out = self.pmdout.start_testpmd(
>+ "Default", "--mbcache=200 --mbuf-size=%s --portmask=%s --max-pkt-len=%s" % (DEFAULT_MBUF_SIZE,portMask, JUMBO_FRAME_MTU))
>+ self.verify("Error" not in out, "launch error 1")
>+ self.dut.send_expect("set fwd mac", "testpmd> ", 120)
>+ self.dut.send_expect("start", "testpmd> ")
>+
>+ for offset in [-1, 0, 1, 4, 5]:
>+ ret = self.scatter_pktgen_send_packet(
>+ dutPorts[0], dutPorts[1], DEFAULT_MBUF_SIZE + offset)
>+ self.verify("load='P" in ret, "packet receive error")
>+
>+ self.dut.send_expect("stop", "testpmd> ")
>+ self.dut.send_expect("quit", "# ", 30)
>+
>+ def tear_down(self):
>+ """
>+ Run after each test case.
>+ """
>+ pass
>+
>+ def tear_down_all(self):
>+ """
>+ Run after each test suite.
>+ """
>+ pass
>--
>2.1.0
Acked-by: Haifeng Tang <haifengx.tang@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-05-29 2:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-28 8:36 [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite Jingguo Fu
2015-05-28 8:36 ` [dts] [DTS][PATCH V2 2/2] scatter: add scatter test plan Jingguo Fu
2015-05-28 8:42 ` [dts] [DTS][PATCH V2 1/2] scatter: add scatter test suite Xu, HuilongX
2015-05-29 2:42 ` Tang, HaifengX
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).