test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Peng, Yuan" <yuan.peng@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Peng, Yuan" <yuan.peng@intel.com>
Subject: Re: [dts] [PATCH v2]tests: remove a case from TestSuite_vlan.py
Date: Wed, 28 Aug 2019 06:13:31 +0000	[thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BB0689C@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1565772806-91639-1-git-send-email-yuan.peng@intel.com>

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Peng Yuan
> Sent: Wednesday, August 14, 2019 4:53 PM
> To: dts@dpdk.org
> Cc: Peng, Yuan <yuan.peng@intel.com>
> Subject: [dts] [PATCH v2]tests: remove a case from TestSuite_vlan.py
> 
> Remove a case from TestSuite_vlan.py according to the test plan.
> 
> Signed-off-by: Peng Yuan <yuan.peng@intel.com>
> 
> diff --git a/tests/TestSuite_vlan.py b/tests/TestSuite_vlan.py index
> 86e7eb5..9c58b0c 100644
> --- a/tests/TestSuite_vlan.py
> +++ b/tests/TestSuite_vlan.py
> @@ -73,14 +73,10 @@ class TestVlan(TestCase):
>          self.pmdout.start_testpmd("Default", "--portmask=%s --port-
> topology=loop" % portMask)
> 
>          self.dut.send_expect("set verbose 1", "testpmd> ")
> -        out = self.dut.send_expect("set fwd mac", "testpmd> ")
> -
> -        if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single",
> "fortpark_TLV", "fortville_25g", "hi1822", "fastlinq_ql41000",
> "fastlinq_ql45000"]:
> -            self.dut.send_expect("vlan set filter on %s" % dutRxPortId, "testpmd>
> ")
> -            self.dut.send_expect("set promisc all off",  "testpmd> ")
> -
> +        self.dut.send_expect("set fwd mac", "testpmd> ")
> +        self.dut.send_expect("set promisc all off",  "testpmd> ")
> +        self.dut.send_expect("vlan set filter on %s" % dutRxPortId,
> + "testpmd> ")
>          self.dut.send_expect("vlan set strip off %s" % dutRxPortId, "testpmd> ")
> -        self.verify('Set mac packet forwarding mode' in out, "set fwd rxonly
> error")
>          self.vlan = 51
> 
>          if self.kdriver == "fm10k":
> @@ -128,9 +124,9 @@ class TestVlan(TestCase):
>          """
>          pass
> 
> -    def test_vlan_enable_receipt(self):
> +    def test_vlan_enable_receipt_strip_off(self):
>          """
> -        Enable receipt of VLAN packets
> +        Enable receipt of VLAN packets and strip off
>          """
> 
>          if self.kdriver == "fm10k":
> @@ -140,6 +136,7 @@ class TestVlan(TestCase):
>          self.dut.send_expect("vlan set strip off  %s" % dutRxPortId, "testpmd> ")
>          self.dut.send_expect("start", "testpmd> ", 120)
>          out = self.dut.send_expect("show port info %s" % dutRxPortId,
> "testpmd> ", 20)
> +        self.verify("strip off" in out, "Wrong strip:" + out)
> 
>          self.vlan_send_packet(self.vlan)
>          out = self.get_tcpdump_package() @@ -157,8 +154,6 @@ class
> TestVlan(TestCase):
>          """
>          Disable receipt of VLAN packets
>          """
> -        self.dut.send_expect("vlan set filter on %s" % dutRxPortId, "testpmd> ")
> -
>          self.dut.send_expect("rx_vlan rm %d %s" % (self.vlan, dutRxPortId),
> "testpmd> ")
>          self.dut.send_expect("start", "testpmd> ", 120)
>          self.vlan_send_packet(self.vlan) @@ -166,11 +161,12 @@ class
> TestVlan(TestCase):
>          out = self.get_tcpdump_package()
>          self.verify(len(out) == 0, "Received unexpected packet, filter not
> work!!!")
>          self.verify(self.vlan not in out, "Wrong vlan:" + str(out))
> +        self.dut.send_expect("stop", "testpmd> ")
> 
> -        out = self.dut.send_expect("stop", "testpmd> ")
> -
> -    def test_vlan_strip_config_on(self):
> -
> +    def test_vlan_enable_receipt_strip_on(self):
> +        """
> +        Enable receipt of VLAN packets and strip on
> +        """
>          self.dut.send_expect("vlan set strip on %s" % dutRxPortId, "testpmd> ",
> 20)
>          self.dut.send_expect("rx_vlan add %d %s" % (self.vlan, dutRxPortId),
> "testpmd> ", 20)
>          out = self.dut.send_expect("show port info %s" % dutRxPortId,
> "testpmd> ", 20) @@ -181,23 +177,7 @@ class TestVlan(TestCase):
>          out = self.get_tcpdump_package()
>          self.verify(len(out), "Forwarded vlan packet not received!!!")
>          self.verify(self.vlan not in out, "Wrong vlan:" + str(out))
> -        out = self.dut.send_expect("stop", "testpmd> ", 120)
> -
> -    def test_vlan_strip_config_off(self):
> -
> -        if self.kdriver == "fm10k":
> -            print utils.RED("fm10k not support this case\n")
> -            return
> -        self.dut.send_expect("vlan set strip off %s" % dutRxPortId, "testpmd> ",
> 20)
> -        self.dut.send_expect("rx_vlan add %d %s" % (self.vlan, dutRxPortId),
> "testpmd> ", 20)
> -        out = self.dut.send_expect("show port info %s" % dutRxPortId,
> "testpmd> ", 20)
> -        self.verify("strip off" in out, "Wrong strip:" + out)
> -        self.dut.send_expect("set nbport 2", "testpmd> ")
> -        self.dut.send_expect("start", "testpmd> ", 120)
> -        self.vlan_send_packet(self.vlan)
> -        out = self.get_tcpdump_package()
> -        self.verify(self.vlan in out, "Vlan not found:" + str(out))
> -        out = self.dut.send_expect("stop", "testpmd> ", 120)
> +        self.dut.send_expect("stop", "testpmd> ", 120)
> 
>      def test_vlan_enable_vlan_insertion(self):
>          """
> @@ -208,10 +188,6 @@ class TestVlan(TestCase):
>              netobj.add_vlan(vlan_id = self.vlan)
>              netobj.add_txvlan(vlan_id = self.vlan)
> 
> -        port = self.tester.get_local_port(dutTxPortId)
> -        intf = self.tester.get_interface(port)
> -
> -        self.dut.send_expect("set nbport 2", "testpmd> ")
>          self.dut.send_expect("stop", "testpmd> ")
>          self.dut.send_expect("port stop all", "testpmd> ")
>          self.dut.send_expect("tx_vlan set %s %d" % (dutTxPortId, self.vlan),
> "testpmd> ")
> --
> 2.7.4


      reply	other threads:[~2019-08-28  6:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-14  8:53 Peng Yuan
2019-08-28  6:13 ` Tu, Lijuan [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=8CE3E05A3F976642AAB0F4675D0AD20E0BB0689C@SHSMSX101.ccr.corp.intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=yuan.peng@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).