X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_neighbor.py;h=9ba87005c463a4bf7cf09918230dfeb3bb79f936;hb=9539647b895c456ca53892a9259e3127c6b92d35;hp=b38aae89e7466fab105d784ad6a9e1116e39db97;hpb=1e18eb20c34d2b5e3b815c34831a78a14af98259;p=vpp.git diff --git a/test/vpp_neighbor.py b/test/vpp_neighbor.py index b38aae89e74..9ba87005c46 100644 --- a/test/vpp_neighbor.py +++ b/test/vpp_neighbor.py @@ -5,7 +5,7 @@ """ from ipaddress import ip_address -from vpp_object import * +from vpp_object import VppObject from vpp_papi import mac_pton, VppEnum try: text_type = unicode @@ -16,11 +16,12 @@ except NameError: def find_nbr(test, sw_if_index, nbr_addr, is_static=0, mac=None): ip_addr = ip_address(text_type(nbr_addr)) e = VppEnum.vl_api_ip_neighbor_flags_t - nbrs = test.vapi.ip_neighbor_dump(sw_if_index, - is_ipv6=(6 is ip_addr.version)) + nbrs = test.vapi.ip_neighbor_dump(sw_if_index=sw_if_index, + af=ip_addr.vapi_af) for n in nbrs: - if ip_addr == n.neighbor.ip_address and \ + if sw_if_index == n.neighbor.sw_if_index and \ + ip_addr == n.neighbor.ip_address and \ is_static == (n.neighbor.flags & e.IP_API_NEIGHBOR_FLAG_STATIC): if mac: if mac == str(n.neighbor.mac_address): @@ -58,6 +59,7 @@ class VppNeighbor(VppObject): flags=self.flags) self.stats_index = r.stats_index self._test.registry.register(self, self._test.logger) + return self def remove_vpp_config(self): self._test.vapi.ip_neighbor_add_del( @@ -77,12 +79,9 @@ class VppNeighbor(VppObject): self.nbr_addr, self.is_static()) - def __str__(self): - return self.object_id() - def object_id(self): return ("%d:%s" % (self.sw_if_index, self.nbr_addr)) def get_stats(self): - c = self._test.statistics.get_counter("/net/adjacency") + c = self._test.statistics["/net/adjacency"] return c[0][self.stats_index]