X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_l2.py;h=114b1c734d753e2aa0f753198fea1eec00596898;hb=61717cc38;hp=45b7d69dd01ba8f3a0d039666759a3fea496373f;hpb=a5b2eec0535f9025319a752891d77ff9948ae0df;p=vpp.git diff --git a/test/vpp_l2.py b/test/vpp_l2.py index 45b7d69dd01..114b1c734d7 100644 --- a/test/vpp_l2.py +++ b/test/vpp_l2.py @@ -4,9 +4,13 @@ """ from vpp_object import VppObject -from vpp_ip import VppIpAddress from vpp_lo_interface import VppLoInterface from vpp_papi import MACAddress +from vpp_sub_interface import L2_VTR_OP +try: + text_type = unicode +except NameError: + text_type = str class L2_PORT_TYPE: @@ -22,6 +26,7 @@ class BRIDGE_FLAGS: FLOOD = 4 UU_FLOOD = 8 ARP_TERM = 16 + ARP_UFWD = 32 def find_bridge_domain(test, bd_id): @@ -39,19 +44,11 @@ def find_bridge_domain_port(test, bd_id, sw_if_index): def find_bridge_domain_arp_entry(test, bd_id, mac, ip): - vmac = MACAddress(mac) - vip = VppIpAddress(ip) - - if vip.version == 4: - n = 4 - else: - n = 16 - arps = test.vapi.bd_ip_mac_dump(bd_id) for arp in arps: # do IP addr comparison too once .api is fixed... - if vmac.packed == arp.mac_address and \ - vip.bytes == arp.ip_address[:n]: + if mac == str(arp.entry.mac) and \ + ip == str(arp.entry.ip): return True return False @@ -69,7 +66,7 @@ class VppBridgeDomain(VppObject): def __init__(self, test, bd_id, flood=1, uu_flood=1, forward=1, - learn=1, arp_term=1): + learn=1, arp_term=1, arp_ufwd=0): self._test = test self.bd_id = bd_id self.flood = flood @@ -77,6 +74,7 @@ class VppBridgeDomain(VppObject): self.forward = forward self.learn = learn self.arp_term = arp_term + self.arp_ufwd = arp_ufwd def add_vpp_config(self): self._test.vapi.bridge_domain_add_del(bd_id=self.bd_id, @@ -84,7 +82,9 @@ class VppBridgeDomain(VppObject): uu_flood=self.uu_flood, forward=self.forward, learn=self.learn, - arp_term=self.arp_term, is_add=1) + arp_term=self.arp_term, + arp_ufwd=self.arp_ufwd, + is_add=1) self._test.registry.register(self, self._test.logger) def remove_vpp_config(self): @@ -93,9 +93,6 @@ class VppBridgeDomain(VppObject): def query_vpp_config(self): return find_bridge_domain(self._test, self.bd_id) - def __str__(self): - return self.object_id() - def object_id(self): return "bridge-domain-%d" % (self.bd_id) @@ -125,9 +122,6 @@ class VppBridgeDomainPort(VppObject): self.bd.bd_id, self.itf.sw_if_index) - def __str__(self): - return self.object_id() - def object_id(self): return "BD-Port-%s-%s" % (self.bd, self.itf) @@ -137,31 +131,32 @@ class VppBridgeDomainArpEntry(VppObject): def __init__(self, test, bd, mac, ip): self._test = test self.bd = bd - self.mac = MACAddress(mac) - self.ip = VppIpAddress(ip) + self.mac = mac + self.ip = ip def add_vpp_config(self): - self._test.vapi.bd_ip_mac_add_del(bd_id=self.bd.bd_id, is_add=1, - ip=self.ip.encode(), - mac=self.mac.packed) + self._test.vapi.bd_ip_mac_add_del(is_add=1, + entry={ + 'bd_id': self.bd.bd_id, + 'ip': self.ip, + 'mac': self.mac}) self._test.registry.register(self, self._test.logger) def remove_vpp_config(self): - self._test.vapi.bd_ip_mac_add_del(bd_id=self.bd.bd_id, is_add=0, - ip=self.ip.encode(), - mac=self.mac.packed) + self._test.vapi.bd_ip_mac_add_del(is_add=0, + entry={ + 'bd_id': self.bd.bd_id, + 'ip': self.ip, + 'mac': self.mac}) def query_vpp_config(self): return find_bridge_domain_arp_entry(self._test, self.bd.bd_id, - self.mac.packed, - self.ip.address) - - def __str__(self): - return self.object_id() + self.mac, + self.ip) def object_id(self): - return "BD-Arp-Entry-%s-%s-%s" % (self.bd, self.mac, self.ip.address) + return "BD-Arp-Entry-%s-%s-%s" % (self.bd, self.mac, self.ip) class VppL2FibEntry(VppObject): @@ -203,8 +198,31 @@ class VppL2FibEntry(VppObject): self.mac.packed, self.itf.sw_if_index) - def __str__(self): - return self.object_id() - def object_id(self): return "L2-Fib-Entry-%s-%s-%s" % (self.bd, self.mac, self.itf) + + +class VppL2Vtr(VppObject): + + def __init__(self, test, itf, op): + self._test = test + self.itf = itf + self.op = op + + def add_vpp_config(self): + self.itf.set_vtr(self.op) + self._test.registry.register(self, self._test.logger) + + def remove_vpp_config(self): + self.itf.set_vtr(L2_VTR_OP.L2_DISABLED) + + def query_vpp_config(self): + ds = self._test.vapi.sw_interface_dump() + d = self.itf.get_interface_config_from_dump(ds) + + if d is not None: + return (d.vtr_op == self.op) + return False + + def object_id(self): + return "L2-vtr-%s-%d" % (str(self.itf), self.op)