test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Liu, Yong" <yong.liu@intel.com>
To: "Xu, GangX" <gangx.xu@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Xu, GangX" <gangx.xu@intel.com>
Subject: Re: [dts] [PATCH V1] fix ieee1588 Ether type is not PTP
Date: Thu, 24 Aug 2017 05:22:47 +0000	[thread overview]
Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E62E666D9@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1503473765-86135-1-git-send-email-gangx.xu@intel.com>

Gang, please use pep8 check with your changes first. I've seen some pep issues in your patch.
Also some comments inline.

Thanks,
Marvin

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of xu,gang
> Sent: Wednesday, August 23, 2017 3:36 PM
> To: dts@dpdk.org
> Cc: Xu, GangX <gangx.xu@intel.com>
> Subject: [dts] [PATCH V1] fix ieee1588 Ether type is not PTP
> 
> use tcpdump replace sniff caught package
> 
> Signed-off-by: xu,gang <gangx.xu@intel.com>
> ---
>  tests/TestSuite_ieee1588.py | 26 ++++++++++++++------------
>  1 file changed, 14 insertions(+), 12 deletions(-)
> 
> diff --git a/tests/TestSuite_ieee1588.py b/tests/TestSuite_ieee1588.py
> index 58d9a10..e06b29d 100644
> --- a/tests/TestSuite_ieee1588.py
> +++ b/tests/TestSuite_ieee1588.py
> @@ -80,21 +80,23 @@ class TestIeee1588(TestCase):
>          port = self.tester.get_local_port(dutPorts[0])
>          itf = self.tester.get_interface(port)
> 
> -        self.tester.scapy_background()
> -        self.tester.scapy_append('p = sniff(iface="%s", count=2)' % itf)
> -        self.tester.scapy_append('RESULT = p[1].summary()')
> +        #create new session for send packet
> +        session_secondary = self.tester.create_session(name =
> 'send_packet')
> 
> -        # this is the output of sniff
> -        # [<Ether  dst=01:1b:19:00:00:00 src=00:00:00:00:00:00
> type=0x88f7 |<Raw  load='\x00\x02' |>>]
> -        self.tester.scapy_foreground()
> -        self.tester.scapy_append('nutmac="%s"' % mac)
> -
> self.tester.scapy_append('sendp([Ether(dst=nutmac,type=0x88f7)/"\\x00\\x02
> "], iface="%s")' % itf)
> -        self.tester.scapy_append('time.sleep(1)')
> +        self.tester.send_expect("tcpdump -i %s -e ether src %s" %
> (itf,mac), "tcpdump", 20)
> 
> -        self.tester.scapy_execute()
> -        out = self.tester.scapy_get_result()
> +        session_secondary.send_expect("scapy", "Welcome", 20)

Even "Welcome" can work here, suggest to use scapy default prompt ">>>".

> +        session_secondary.send_expect('nutmac="%s"' % mac, ">>> ", 20)
> +
> session_secondary.send_expect('sendp([Ether(dst=nutmac,type=0x88f7)/"\\x00
> \\x02"], iface="%s")' % itf, ">>> ", 20)

Packet module should support 1588 packets, could you try whether below command workable?

pkt = Packet(pkt_type='TIMESYNC')
pkt.send_pkt(tx_port=itf)

> +
> +        out = self.tester.get_session_output(timeout=20)
> +
> +        session_secondary.send_expect('exit()', "# ", 20)
> +
> +        self.tester.send_expect("^C", "# ", 20)
> +        self.tester.destroy_session(session_secondary)
> +
>          self.verify("0x88f7" in out, "Ether type is not PTP")
> -        # self.verify("\\x00\\x02" in out, "Payload wrong in PTP")
> 
>          time.sleep(1)
>          out = self.dut.get_session_output()
> --
> 1.9.3

      reply	other threads:[~2017-08-24  5:22 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-23  7:36 xu,gang
2017-08-24  5:22 ` 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=86228AFD5BCD8E4EBFD2B90117B5E81E62E666D9@SHSMSX101.ccr.corp.intel.com \
    --to=yong.liu@intel.com \
    --cc=dts@dpdk.org \
    --cc=gangx.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).