X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_sub_interface.py;h=21560cb99d07d776acac93f23064ac48b0957890;hb=3d5f08a82;hp=63a0f543f20938e2135878a3e62ad4e92c2cfa3e;hpb=3bce8ebfdfaf2a4b576012beb3516d1f4030c20c;p=vpp.git diff --git a/test/vpp_sub_interface.py b/test/vpp_sub_interface.py index 63a0f543f20..21560cb99d0 100644 --- a/test/vpp_sub_interface.py +++ b/test/vpp_sub_interface.py @@ -1,13 +1,23 @@ from scapy.layers.l2 import Dot1Q import abc -import six from vpp_pg_interface import VppPGInterface -from vpp_papi_provider import L2_VTR_OP from vpp_interface import VppInterface +from vpp_papi import VppEnum -@six.add_metaclass(abc.ABCMeta) -class VppSubInterface(VppPGInterface): +class L2_VTR_OP: + L2_DISABLED = 0 + L2_PUSH_1 = 1 + L2_PUSH_2 = 2 + L2_POP_1 = 3 + L2_POP_2 = 4 + L2_TRANSLATE_1_1 = 5 + L2_TRANSLATE_1_2 = 6 + L2_TRANSLATE_2_1 = 7 + L2_TRANSLATE_2_2 = 8 + + +class VppSubInterface(VppPGInterface, metaclass=abc.ABCMeta): @property def parent(self): @@ -48,7 +58,7 @@ class VppSubInterface(VppPGInterface): pass @abc.abstractmethod - def create_ndp_req(self): + def create_ndp_req(self, addr=None): pass def resolve_arp(self): @@ -119,8 +129,8 @@ class VppSubInterface(VppPGInterface): self._tag2 = inner self._push1q = push1q - self.test.vapi.sw_interface_set_l2_tag_rewrite( - self.sw_if_index, vtr, push=self._push1q, + self.test.vapi.l2_interface_vlan_tag_rewrite( + sw_if_index=self.sw_if_index, vtr_op=vtr, push_dot1q=self._push1q, tag1=self._tag1, tag2=self._tag2) self._vtr = vtr @@ -144,8 +154,8 @@ class VppDot1QSubint(VppSubInterface): packet = VppPGInterface.create_arp_req(self) return self.add_dot1_layer(packet) - def create_ndp_req(self): - packet = VppPGInterface.create_ndp_req(self) + def create_ndp_req(self, addr=None): + packet = VppPGInterface.create_ndp_req(self, addr) return self.add_dot1_layer(packet) # called before sending packet @@ -171,9 +181,13 @@ class VppDot1ADSubint(VppSubInterface): def __init__(self, test, parent, sub_id, outer_vlan, inner_vlan): super(VppDot1ADSubint, self).__init__(test, parent, sub_id) - r = test.vapi.create_subif(parent.sw_if_index, sub_id, outer_vlan, - inner_vlan, dot1ad=1, two_tags=1, - exact_match=1) + flags = (VppEnum.vl_api_sub_if_flags_t.SUB_IF_API_FLAG_DOT1AD | + VppEnum.vl_api_sub_if_flags_t.SUB_IF_API_FLAG_TWO_TAGS | + VppEnum.vl_api_sub_if_flags_t.SUB_IF_API_FLAG_EXACT_MATCH) + r = test.vapi.create_subif(sw_if_index=parent.sw_if_index, + sub_id=sub_id, outer_vlan_id=outer_vlan, + inner_vlan_id=inner_vlan, + sub_if_flags=flags) self.set_sw_if_index(r.sw_if_index) self._outer_vlan = outer_vlan self._inner_vlan = inner_vlan @@ -182,8 +196,8 @@ class VppDot1ADSubint(VppSubInterface): packet = VppPGInterface.create_arp_req(self) return self.add_dot1_layer(packet) - def create_ndp_req(self): - packet = VppPGInterface.create_ndp_req(self) + def create_ndp_req(self, addr=None): + packet = VppPGInterface.create_ndp_req(self, addr) return self.add_dot1_layer(packet) def add_dot1_layer(self, packet): @@ -198,8 +212,8 @@ class VppP2PSubint(VppSubInterface): def __init__(self, test, parent, sub_id, remote_mac): super(VppP2PSubint, self).__init__(test, parent, sub_id) - r = test.vapi.create_p2pethernet_subif(parent.sw_if_index, - remote_mac, sub_id) + r = test.vapi.p2p_ethernet_add(parent.sw_if_index, + remote_mac, sub_id) self.set_sw_if_index(r.sw_if_index) self.parent_sw_if_index = parent.sw_if_index self.p2p_remote_mac = remote_mac @@ -214,6 +228,6 @@ class VppP2PSubint(VppSubInterface): packet = VppPGInterface.create_arp_req(self) return packet - def create_ndp_req(self): - packet = VppPGInterface.create_ndp_req(self) + def create_ndp_req(self, addr=None): + packet = VppPGInterface.create_ndp_req(self, addr) return packet