From: "Liu, Yong" <yong.liu@intel.com>
To: Lijuan Tu <lijuanx.a.tu@intel.com>, dts@dpdk.org
Subject: Re: [dts] [PATCH]tests vxlan_sample(tep_termination): Import vxlan layer from dep folder
Date: Fri, 22 Apr 2016 09:39:37 +0800 [thread overview]
Message-ID: <571980D9.90309@intel.com> (raw)
In-Reply-To: <1461130012-17041-1-git-send-email-lijuanx.a.tu@intel.com>
Thanks, applied.
On 04/20/2016 01:26 PM, Lijuan Tu wrote:
> Signed-off-by: Lijuan Tu <lijuanx.a.tu@intel.com>
> ---
> tests/TestSuite_vxlan_sample.py | 16 +++++++++-------
> 1 file changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/tests/TestSuite_vxlan_sample.py b/tests/TestSuite_vxlan_sample.py
> index c7e0701..13e63c5 100644
> --- a/tests/TestSuite_vxlan_sample.py
> +++ b/tests/TestSuite_vxlan_sample.py
> @@ -48,12 +48,13 @@ from etgen import IxiaPacketGenerator
> from qemu_kvm import QEMUKvm
> from TestSuite_vxlan import VxlanTestConfig
> from pmd_output import PmdOutput
> +from packet import IncreaseIP, IncreaseIPv6
>
> -from scapy.utils import struct, socket, wrpcap, rdpcap
> +from scapy.utils import wrpcap, rdpcap
> from scapy.layers.inet import Ether, IP, TCP, UDP
> from scapy.layers.inet6 import IPv6
> from scapy.layers.l2 import Dot1Q
> -from scapy.layers.vxlan import Vxlan
> +from vxlan import Vxlan
> from scapy.layers.sctp import SCTP, SCTPChunkData
> from scapy.sendrecv import sniff
> from scapy.config import conf
> @@ -345,7 +346,7 @@ class TestVxlanSample(TestCase):
>
> # create vxlan pcap file and tranfer it to tester
> vxlan_pkt = VxlanTestConfig(self, **params)
> - vxlan_pkt.create_pcap(scp=True)
> + vxlan_pkt.create_pcap()
>
> # start capture
> self.start_capture(tester_iface, pkt_dmac=params['inner_mac_dst'])
> @@ -380,7 +381,7 @@ class TestVxlanSample(TestCase):
>
> # create vxlan pcap file and tranfer it to tester
> vxlan_pkt = VxlanTestConfig(self, **params)
> - vxlan_pkt.create_pcap(scp=True)
> + vxlan_pkt.create_pcap()
>
> # start capture
> self.start_capture(tester_iface, pkt_smac=self.pf_mac)
> @@ -422,19 +423,19 @@ class TestVxlanSample(TestCase):
> vxlan_pkt = VxlanTestConfig(self, **params)
> vxlan_pkt.create_pcap()
> chksums_ref = vxlan_pkt.get_chksums()
> + print dts.GREEN("Checksum reference: %s" % chksums_ref)
>
> params['inner_ip_invalid'] = 1
> params['inner_l4_invalid'] = 1
>
> # create vxlan pcap file and tranfer it to tester
> vxlan_pkt = VxlanTestConfig(self, **params)
> - vxlan_pkt.create_pcap(scp=True)
> + vxlan_pkt.create_pcap()
>
> # start capture
> self.start_capture(tester_iface, pkt_smac=self.pf_mac)
> vxlan_pkt.send_pcap(tester_iface)
> time.sleep(5)
> -
> # transfer capture pcap to dts server
> pkts = self.transfer_capture_file()
> # check packet number and payload
> @@ -442,6 +443,7 @@ class TestVxlanSample(TestCase):
> self.verify(pkts[0].haslayer(Vxlan) == 1,
> "Packet not encapsulated")
> chksums = vxlan_pkt.get_chksums(pcap='vxlan_cap.pcap')
> + print dts.GREEN("Checksum : %s" % chksums)
> for key in chksums_ref:
> if 'inner' in key: # only check inner packet chksum
> self.verify(chksums[key] == chksums_ref[key],
> @@ -551,7 +553,7 @@ class TestVxlanSample(TestCase):
>
> # create vxlan pcap file and tranfer it to tester
> vxlan_pkt = VxlanTestConfig(self, **params)
> - vxlan_pkt.create_pcap(scp=False)
> + vxlan_pkt.create_pcap()
>
> if perf_cfg['VirtIO'] == "Two Ports":
> # create vxlan packet pf mac + vni=1000 + inner virtIO port0
prev parent reply other threads:[~2016-04-22 1:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-20 5:26 Lijuan Tu
2016-04-22 1:39 ` 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=571980D9.90309@intel.com \
--to=yong.liu@intel.com \
--cc=dts@dpdk.org \
--cc=lijuanx.a.tu@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).