blob: aeba2ab4ffe5e27220cb385bb491f47d7cea357e [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
92 def ip4(self):
Klement Sekera46a87ad2017-01-02 08:22:23 +010093 """ IPv4 address - string """
Klement Sekeraf62ae122016-10-11 11:47:09 +020094 return self._ip4
Damjan Marionf56b77a2016-10-03 19:44:57 +020095
Klement Sekeraf62ae122016-10-11 11:47:09 +020096 @property
Matej Klotton0178d522016-11-04 11:11:44 +010097 def ip4n(self):
Klement Sekera46a87ad2017-01-02 08:22:23 +010098 """ IPv4 address of remote host - raw, suitable as API parameter."""
Matej Klotton0178d522016-11-04 11:11:44 +010099 return socket.inet_pton(socket.AF_INET, self._ip4)
100
101 @property
Klement Sekeraf62ae122016-10-11 11:47:09 +0200102 def ip6(self):
Klement Sekera46a87ad2017-01-02 08:22:23 +0100103 """ IPv6 address - string """
Klement Sekeraf62ae122016-10-11 11:47:09 +0200104 return self._ip6
Damjan Marionf56b77a2016-10-03 19:44:57 +0200105
Klement Sekera46a87ad2017-01-02 08:22:23 +0100106 @property
107 def ip6n(self):
108 """ IPv6 address of remote host - raw, suitable as API parameter."""
109 return socket.inet_pton(socket.AF_INET6, self._ip6)
110
Neale Ranns2a3ea492017-04-19 05:24:40 -0700111 @property
112 def ip6_ll(self):
113 """ IPv6 link-local address - string """
114 return self._ip6_ll
115
116 @property
117 def ip6n_ll(self):
118 """ IPv6 link-local address of remote host -
119 raw, suitable as API parameter."""
120 return socket.inet_pton(socket.AF_INET6, self._ip6_ll)
121
122 def __init__(self, mac=None, ip4=None, ip6=None, ip6_ll=None):
Klement Sekeraf62ae122016-10-11 11:47:09 +0200123 self._mac = mac
124 self._ip4 = ip4
125 self._ip6 = ip6
Neale Ranns2a3ea492017-04-19 05:24:40 -0700126 self._ip6_ll = ip6_ll
Filip Tehlar770e89e2017-01-31 10:39:16 +0100127
128
129class ForeignAddressFactory(object):
130 count = 0
131 prefix_len = 24
132 net_template = '10.10.10.{}'
133 net = net_template.format(0) + '/' + str(prefix_len)
134
135 def get_ip4(self):
136 if self.count > 255:
137 raise Exception("Network host address exhaustion")
138 self.count += 1
139 return self.net_template.format(self.count)