From: "Liu, Yong" <yong.liu@intel.com>
To: "xu,huilong" <huilongx.xu@intel.com>, dts@dpdk.org
Subject: Re: [dts] [PATCH V1]used tcpdump replace scapy get packet
Date: Fri, 13 Nov 2015 17:21:41 +0800 [thread overview]
Message-ID: <5645ABA5.7000805@intel.com> (raw)
In-Reply-To: <1447394957-3147-1-git-send-email-huilongx.xu@intel.com>
Applied with comment optimized. Thanks.
On 11/13/2015 02:09 PM, xu,huilong wrote:
> sometime used scapy get packet, the pcaket payload will loss. so used tcpdump get packet.
>
> Signed-off-by: xu,huilong <huilongx.xu@intel.com>
> ---
> tests/TestSuite_scatter.py | 22 +++++++++++++---------
> 1 file changed, 13 insertions(+), 9 deletions(-)
>
> diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
> index 7a49b53..7f39d8a 100644
> --- a/tests/TestSuite_scatter.py
> +++ b/tests/TestSuite_scatter.py
> @@ -61,6 +61,14 @@ class TestScatter(TestCase):
> else:
> self.mbsize = 1024
>
> + def start_tcpdump(self, tester_rx_intf):
> + self.tester.send_expect("rm -rf ./scatter.cap", "#")
> + self.tester.send_expect("tcpdump -i %s -x -w ./scatter.cap 2>/dev/null &" % tester_rx_intf, "#")
> +
> + def get_tcpdump_packet(self):
> + self.tester.send_expect("killall tcpdump", "#")
> + return self.tester.send_expect("tcpdump -nn -x -r ./scatter.cap", "#")
> +
> def scatter_pktgen_send_packet(self, sPortid, rPortid, pktsize, num=1):
> """
> Functional test for scatter packets.
> @@ -73,21 +81,17 @@ class TestScatter(TestCase):
> rintf = self.tester.get_interface(rport)
> self.tester.send_expect("ifconfig %s mtu 9000" % sintf, "#")
> self.tester.send_expect("ifconfig %s mtu 9000" % rintf, "#")
> -
> - 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)')
> + self.start_tcpdump(rintf)
>
> pktlen = pktsize - 18
> padding = pktlen - 20
>
> - self.tester.scapy_foreground()
> self.tester.scapy_append(
> 'sendp([Ether(src="%s",dst="%s")/IP(len=%s)/Raw(load="\x50"*%s)], iface="%s")' % (smac, dmac,pktlen, padding, sintf))
> self.tester.scapy_execute()
> - time.sleep(5)
> - res = self.tester.scapy_get_result()
> + time.sleep(5) #wait for scapy capture subprocess exit
> + res = self.get_tcpdump_packet()
> +
> self.tester.send_expect("ifconfig %s mtu 1500" % sintf, "#")
> self.tester.send_expect("ifconfig %s mtu 1500" % sintf, "#")
> return res
> @@ -118,7 +122,7 @@ class TestScatter(TestCase):
> for offset in [-1, 0, 1, 4, 5]:
> ret = self.scatter_pktgen_send_packet(
> dutPorts[0], dutPorts[1], self.mbsize + offset)
> - self.verify("load='P" in ret, "packet receive error")
> + self.verify("5050 5050 5050 5050 5050 5050 5050" in ret, "packet receive error")
>
> self.dut.send_expect("stop", "testpmd> ")
> self.dut.send_expect("quit", "# ", 30)
prev parent reply other threads:[~2015-11-13 9:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-13 6:09 xu,huilong
2015-11-13 9:21 ` Liu, Yong [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5645ABA5.7000805@intel.com \
--to=yong.liu@intel.com \
--cc=dts@dpdk.org \
--cc=huilongx.xu@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).