blob: d6aa9a426771314905c077de31b67d3a0da7fb73 [file] [log] [blame]
Klement Sekeraacb9b8e2017-02-14 02:55:31 +01001""" test framework utilities """
2
Matej Klotton0178d522016-11-04 11:11:44 +01003import socket
Klement Sekera7bb873a2016-11-18 07:38:42 +01004import sys
Klement Sekera0e3c0de2016-09-29 14:43:44 +02005from abc import abstractmethod, ABCMeta
Klement Sekera7bb873a2016-11-18 07:38:42 +01006from cStringIO import StringIO
Neale Ranns2a3ea492017-04-19 05:24:40 -07007from scapy.layers.inet6 import in6_mactoifaceid
Klement Sekera7bb873a2016-11-18 07:38:42 +01008
9
10def ppp(headline, packet):
11 """ Return string containing the output of scapy packet.show() call. """
12 o = StringIO()
13 old_stdout = sys.stdout
14 sys.stdout = o
15 print(headline)
16 packet.show()
17 sys.stdout = old_stdout
18 return o.getvalue()
19
Damjan Marionf56b77a2016-10-03 19:44:57 +020020
Klement Sekera9225dee2016-12-12 08:36:58 +010021def ppc(headline, capture, limit=10):
22 """ Return string containing ppp() printout for a capture.
23
24 :param headline: printed as first line of output
25 :param capture: packets to print
26 :param limit: limit the print to # of packets
27 """
28 if not capture:
29 return headline
Klement Sekeradab231a2016-12-21 08:50:14 +010030 tail = ""
Klement Sekera9225dee2016-12-12 08:36:58 +010031 if limit < len(capture):
Klement Sekeradab231a2016-12-21 08:50:14 +010032 tail = "\nPrint limit reached, %s out of %s packets printed" % (
33 len(capture), limit)
34 limit = len(capture)
35 body = "".join([ppp("Packet #%s:" % count, p)
36 for count, p in zip(range(0, limit), capture)])
37 return "%s\n%s%s" % (headline, body, tail)
Klement Sekera9225dee2016-12-12 08:36:58 +010038
39
Eyal Barid81da8c2017-01-11 13:39:54 +020040def ip4_range(ip4, s, e):
41 tmp = ip4.rsplit('.', 1)[0]
42 return ("%s.%d" % (tmp, i) for i in range(s, e))
43
44
45def ip4n_range(ip4n, s, e):
46 ip4 = socket.inet_ntop(socket.AF_INET, ip4n)
Klement Sekera72715ee2017-01-17 10:37:05 +010047 return (socket.inet_pton(socket.AF_INET, ip)
48 for ip in ip4_range(ip4, s, e))
Eyal Barid81da8c2017-01-11 13:39:54 +020049
50
Neale Ranns39f9d8b2017-02-16 21:57:05 -080051def mactobinary(mac):
52 """ Convert the : separated format into binary packet data for the API """
53 return mac.replace(':', '').decode('hex')
54
55
Neale Ranns2a3ea492017-04-19 05:24:40 -070056def mk_ll_addr(mac):
57 euid = in6_mactoifaceid(mac)
58 addr = "fe80::" + euid
59 return addr
60
61
Klement Sekera0e3c0de2016-09-29 14:43:44 +020062class NumericConstant(object):
63 __metaclass__ = ABCMeta
64
65 desc_dict = {}
66
67 @abstractmethod
68 def __init__(self, value):
69 self._value = value
70
71 def __int__(self):
72 return self._value
73
74 def __long__(self):
75 return self._value
76
77 def __str__(self):
78 if self._value in self.desc_dict:
79 return self.desc_dict[self._value]
80 return ""
81
82
Matej Klotton0178d522016-11-04 11:11:44 +010083class Host(object):
84 """ Generic test host "connected" to VPPs interface. """
Damjan Marionf56b77a2016-10-03 19:44:57 +020085
Klement Sekeraf62ae122016-10-11 11:47:09 +020086 @property
87 def mac(self):
88 """ MAC address """
89 return self._mac
Damjan Marionf56b77a2016-10-03 19:44:57 +020090
Klement Sekeraf62ae122016-10-11 11:47:09 +020091 @property
Eyal Baric86e5922017-07-02 18:33:16 +030092 def bin_mac(self):
93 """ MAC address """
94 return mactobinary(self._mac)
95
96 @property
Klement Sekeraf62ae122016-10-11 11:47:09 +020097 def ip4(self):
Klement Sekera46a87ad2017-01-02 08:22:23 +010098 """ IPv4 address - string """
Klement Sekeraf62ae122016-10-11 11:47:09 +020099 return self._ip4
Damjan Marionf56b77a2016-10-03 19:44:57 +0200100
Klement Sekeraf62ae122016-10-11 11:47:09 +0200101 @property
Matej Klotton0178d522016-11-04 11:11:44 +0100102 def ip4n(self):
Klement Sekera46a87ad2017-01-02 08:22:23 +0100103 """ IPv4 address of remote host - raw, suitable as API parameter."""
Matej Klotton0178d522016-11-04 11:11:44 +0100104 return socket.inet_pton(socket.AF_INET, self._ip4)
105
106 @property
Klement Sekeraf62ae122016-10-11 11:47:09 +0200107 def ip6(self):
Klement Sekera46a87ad2017-01-02 08:22:23 +0100108 """ IPv6 address - string """
Klement Sekeraf62ae122016-10-11 11:47:09 +0200109 return self._ip6
Damjan Marionf56b77a2016-10-03 19:44:57 +0200110
Klement Sekera46a87ad2017-01-02 08:22:23 +0100111 @property
112 def ip6n(self):
113 """ IPv6 address of remote host - raw, suitable as API parameter."""
114 return socket.inet_pton(socket.AF_INET6, self._ip6)
115
Neale Ranns2a3ea492017-04-19 05:24:40 -0700116 @property
117 def ip6_ll(self):
118 """ IPv6 link-local address - string """
119 return self._ip6_ll
120
121 @property
122 def ip6n_ll(self):
123 """ IPv6 link-local address of remote host -
124 raw, suitable as API parameter."""
125 return socket.inet_pton(socket.AF_INET6, self._ip6_ll)
126
Eyal Baric86e5922017-07-02 18:33:16 +0300127 def __eq__(self, other):
128 if isinstance(other, Host):
129 return (self.mac == other.mac and
130 self.ip4 == other.ip4 and
131 self.ip6 == other.ip6 and
132 self.ip6_ll == other.ip6_ll)
133 else:
134 return False
135
136 def __ne__(self, other):
137 return not self.__eq__(other)
138
139 def __repr__(self):
140 return "Host { mac:%s ip4:%s ip6:%s ip6_ll:%s }" % (self.mac,
141 self.ip4,
142 self.ip6,
143 self.ip6_ll)
144
145 def __hash__(self):
146 return hash(self.__repr__())
147
Neale Ranns2a3ea492017-04-19 05:24:40 -0700148 def __init__(self, mac=None, ip4=None, ip6=None, ip6_ll=None):
Klement Sekeraf62ae122016-10-11 11:47:09 +0200149 self._mac = mac
150 self._ip4 = ip4
151 self._ip6 = ip6
Neale Ranns2a3ea492017-04-19 05:24:40 -0700152 self._ip6_ll = ip6_ll
Filip Tehlar770e89e2017-01-31 10:39:16 +0100153
154
155class ForeignAddressFactory(object):
156 count = 0
157 prefix_len = 24
158 net_template = '10.10.10.{}'
159 net = net_template.format(0) + '/' + str(prefix_len)
160
161 def get_ip4(self):
162 if self.count > 255:
163 raise Exception("Network host address exhaustion")
164 self.count += 1
165 return self.net_template.format(self.count)