Add IRB test

- JIRA: CSIT-255
- create loopback interfaces
- move pg-interface specific arp and neighbor discovery from vpp_interface to vpp_pg_interface
- base configuration of IRB tests
- IP test scenario

Change-Id: I9945a188163652a4e22325877aef008c4d029557
Signed-off-by: Matej Klotton <mklotton@cisco.com>
This commit is contained in:
Matej Klotton
2016-11-04 11:11:44 +01:00
committed by Damjan Marion
parent 9db551cf50
commit 0178d52384
10 changed files with 483 additions and 119 deletions

View File

@ -1,9 +1,10 @@
from scapy.layers.l2 import Ether, Dot1Q
from abc import abstractmethod, ABCMeta
from vpp_interface import VppInterface
from vpp_pg_interface import VppPGInterface
class VppSubInterface(VppInterface):
class VppSubInterface(VppPGInterface):
__metaclass__ = ABCMeta
@property
@ -55,14 +56,14 @@ class VppDot1QSubint(VppSubInterface):
self._vlan = vlan
r = self.test.vapi.create_vlan_subif(parent.sw_if_index, self.vlan)
self._sw_if_index = r.sw_if_index
self.post_init_setup()
VppInterface.post_init_setup(self)
def create_arp_req(self):
packet = VppInterface.create_arp_req(self)
packet = VppPGInterface.create_arp_req(self)
return self.add_dot1_layer(packet)
def create_ndp_req(self):
packet = VppInterface.create_ndp_req(self)
packet = VppPGInterface.create_ndp_req(self)
return self.add_dot1_layer(packet)
def add_dot1_layer(self, packet):
@ -108,14 +109,14 @@ class VppDot1ADSubint(VppSubInterface):
two_tags=1,
exact_match=1)
self._sw_if_index = r.sw_if_index
self.post_init_setup()
VppInterface.post_init_setup(self)
def create_arp_req(self):
packet = VppInterface.create_arp_req(self)
packet = VppPGInterface.create_arp_req(self)
return self.add_dot1_layer(packet)
def create_ndp_req(self):
packet = VppInterface.create_ndp_req(self)
packet = VppPGInterface.create_ndp_req(self)
return self.add_dot1_layer(packet)
def add_dot1_layer(self, packet):