aboutsummaryrefslogtreecommitdiffstats
path: root/test/util.py
blob: 8d7c9202a41ca11275adbe6f8ec925fe8f006977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from logging import *


class TestHost(object):
    """ Generic test host "connected" to VPP. """

    @property
    def mac(self):
        """ MAC address """
        return self._mac

    @property
    def ip4(self):
        """ IPv4 address """
        return self._ip4

    @property
    def ip6(self):
        """ IPv6 address """
        return self._ip6

    def __init__(self, mac=None, ip4=None, ip6=None):
        self._mac = mac
        self._ip4 = ip4
        self._ip6 = ip6