diff options
author | Eyal Bari <ebari@cisco.com> | 2017-07-02 18:33:16 +0300 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-07-04 11:57:35 +0000 |
commit | c86e592f9a65e5098c9a70c38ee228252dbd32ce (patch) | |
tree | 8cfaaa2aed0f417f8ef5a187f69a23aaa9f85704 /test/util.py | |
parent | 130a75384f139f64a5fcf3d357a1fdc769503738 (diff) |
TEST:add L2BD arp term tests
Change-Id: I42414da9663ecfc8dfe5baf3e6615cf3b9b02e22
Signed-off-by: Eyal Bari <ebari@cisco.com>
Diffstat (limited to 'test/util.py')
-rw-r--r-- | test/util.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/util.py b/test/util.py index aeba2ab4ffe..d6aa9a42677 100644 --- a/test/util.py +++ b/test/util.py @@ -89,6 +89,11 @@ class Host(object): return self._mac @property + def bin_mac(self): + """ MAC address """ + return mactobinary(self._mac) + + @property def ip4(self): """ IPv4 address - string """ return self._ip4 @@ -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 |