TEST:add L2BD arp term tests

Change-Id: I42414da9663ecfc8dfe5baf3e6615cf3b9b02e22
Signed-off-by: Eyal Bari <ebari@cisco.com>
This commit is contained in:
Eyal Bari
2017-07-02 18:33:16 +03:00
committed by John Lo
parent 130a75384f
commit c86e592f9a
3 changed files with 273 additions and 0 deletions

View File

@ -88,6 +88,11 @@ class Host(object):
""" MAC address """
return self._mac
@property
def bin_mac(self):
""" MAC address """
return mactobinary(self._mac)
@property
def ip4(self):
""" IPv4 address - string """
@ -119,6 +124,27 @@ class Host(object):
raw, suitable as API parameter."""
return socket.inet_pton(socket.AF_INET6, self._ip6_ll)
def __eq__(self, other):
if isinstance(other, Host):
return (self.mac == other.mac and
self.ip4 == other.ip4 and
self.ip6 == other.ip6 and
self.ip6_ll == other.ip6_ll)
else:
return False
def __ne__(self, other):
return not self.__eq__(other)
def __repr__(self):
return "Host { mac:%s ip4:%s ip6:%s ip6_ll:%s }" % (self.mac,
self.ip4,
self.ip6,
self.ip6_ll)
def __hash__(self):
return hash(self.__repr__())
def __init__(self, mac=None, ip4=None, ip6=None, ip6_ll=None):
self._mac = mac
self._ip4 = ip4