From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 22A83377A for ; Fri, 21 Apr 2017 09:10:48 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP; 21 Apr 2017 00:10:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,229,1488873600"; d="scan'208";a="848304477" Received: from stv-crb-08.sh.intel.com (HELO dpdk-test60.sh.intel.com) ([10.239.128.48]) by FMSMGA003.fm.intel.com with ESMTP; 21 Apr 2017 00:10:47 -0700 From: Xueqin Lin To: dts@dpdk.org Cc: Xueqin Lin Date: Thu, 20 Apr 2017 21:06:59 -0400 Message-Id: <1492736819-8166-1-git-send-email-xueqin.lin@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dts] [PATCH v2] add vlan filter test script in vf daemon suite X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Apr 2017 07:10:49 -0000 --- tests/TestSuite_vf_daemon.py | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/tests/TestSuite_vf_daemon.py b/tests/TestSuite_vf_daemon.py index 62532af..c9c09cf 100644 --- a/tests/TestSuite_vf_daemon.py +++ b/tests/TestSuite_vf_daemon.py @@ -634,6 +634,63 @@ class Testvf_daemon(TestCase): self.vm0_testpmd.quit() self.dut_testpmd.quit() + + + def test_vlan_filter(self): + """ + Add/Remove vlan filter for a VF from PF + """ + self.dut_testpmd.start_testpmd("Default", "--port-topology=chained") + self.vm0_testpmd.start_testpmd(VM_CORES_MASK, '--port-topology=chained') + + self.vm0_testpmd.execute_cmd('set fwd rxonly') + self.vm0_testpmd.execute_cmd('set verbose 1') + self.vm0_testpmd.execute_cmd('start') + + wrong_mac = '9E:AC:72:49:43:11' + out = self.send_and_pmdout(wrong_mac) + self.verify("dst=%s" % wrong_mac in out, + "Failed to receive untagged packet!!!") + random_vlan = random.randint(1, MAX_VLAN) + out = self.send_and_pmdout(wrong_mac, random_vlan) + self.verify("dst=%s" % wrong_mac in out, + "Failed to receive packet with vlan id!!!") + self.verify("VLAN tci=%s" % hex(random_vlan) in out, + "Failed to receive packet with vlan id!!!") + random_vlan = random.randint(2, MAX_VLAN - 1) + rx_vlans = [1, random_vlan, MAX_VLAN] + for rx_vlan in rx_vlans: + self.dut_testpmd.execute_cmd('rx_vlan add %s port 0 vf 1'% rx_vlan) + time.sleep(1) + out = self.send_and_pmdout(wrong_mac, rx_vlan) + self.verify("dst=%s" % wrong_mac in out, + "Failed to enable vlan filter!!!") + self.verify("VLAN tci=%s" % hex(rx_vlan) in out, + "Failed to receive packet with vlan id!!!") + wrong_rx_vlan = (rx_vlan + 1) % 4096 + #Packet for vlan id 0 is equal to untagged packet for this case + if wrong_rx_vlan == 0: + wrong_rx_vlan = random.randint(1, MAX_VLAN - 1) + out = self.send_and_pmdout(wrong_mac, wrong_rx_vlan) + self.verify("dst=%s" % wrong_mac not in out, + "Failed to enable vlan filter!!!") + self.dut_testpmd.execute_cmd('rx_vlan rm %s port 0 vf 1'% rx_vlan) + out = self.send_and_pmdout(wrong_mac, rx_vlan) + self.verify("dst=%s" % wrong_mac in out, + "Failed to disable vlan filter!!!") + self.verify("VLAN tci=%s" % hex(rx_vlan) in out, + "Failed to receive packet with vlan id!!!") + out = self.send_and_pmdout(wrong_mac, wrong_rx_vlan) + self.verify("dst=%s" % wrong_mac in out, + "Failed to disable vlan filter!!!") + self.verify("VLAN tci=%s" % hex(wrong_rx_vlan) in out, + "Failed to receive packet with vlan id!!!") + out = self.send_and_pmdout(wrong_mac) + self.verify("dst=%s" % wrong_mac in out, + "Failed to receive untagged packet!!!") + + self.vm0_testpmd.quit() + self.dut_testpmd.quit() def tear_down(self): -- 2.5.5