blob: 9249a2ced235c6b9cff3409fb42c7c8bfbb77e17 [file] [log] [blame]
Jan4af521d2016-11-15 17:05:00 +01001#!/usr/bin/env python
2"""L2 FIB Test Case HLD:
3
4**config 1**
5 - add 4 pg-l2 interfaces
6 - configure them into l2bd
7 - configure 100 MAC entries in L2 fib - 25 MACs per interface
8 - L2 MAC learning and unknown unicast flooding disabled in l2bd
9 - configure 100 MAC entries in L2 fib - 25 MACs per interface
10
11**test 1**
12 - send L2 MAC frames between all 4 pg-l2 interfaces for all of 100 MAC \
13 entries in the FIB
14
15**verify 1**
16 - all packets received correctly
17
18**config 2**
19 - delete 12 MAC entries - 3 MACs per interface
20
21**test 2a**
22 - send L2 MAC frames between all 4 pg-l2 interfaces for non-deleted MAC \
23 entries
24
25**verify 2a**
26 - all packets received correctly
27
28**test 2b**
29 - send L2 MAC frames between all 4 pg-l2 interfaces for all of 12 deleted \
30 MAC entries
31
32**verify 2b**
33 - no packet received on all 4 pg-l2 interfaces
34
35**config 3**
36 - configure new 100 MAC entries in L2 fib - 25 MACs per interface
37
38**test 3**
39 - send L2 MAC frames between all 4 pg-l2 interfaces for all of 188 MAC \
40 entries in the FIB
41
42**verify 3**
43 - all packets received correctly
44
45**config 4**
46 - delete 160 MAC entries, 40 MACs per interface
47
48**test 4a**
49 - send L2 MAC frames between all 4 pg-l2 interfaces for all of 28 \
50 non-deleted MAC entries
51
52**verify 4a**
53 - all packets received correctly
54
55**test 4b**
56 - try send L2 MAC frames between all 4 pg-l2 interfaces for all of 172 \
57 deleted MAC entries
58
59**verify 4b**
60 - no packet received on all 4 pg-l2 interfaces
61"""
62
63import unittest
64import random
65
66from scapy.packet import Raw
67from scapy.layers.l2 import Ether
68from scapy.layers.inet import IP, UDP
69
70from framework import VppTestCase, VppTestRunner
Klement Sekera9225dee2016-12-12 08:36:58 +010071from util import Host, ppp
Jan4af521d2016-11-15 17:05:00 +010072
73
74class TestL2fib(VppTestCase):
75 """ L2 FIB Test Case """
76
77 @classmethod
Eyal Bari93b503e2017-05-15 10:13:15 +030078 def bd_ifs(cls, bd_id):
79 return range((bd_id - 1) * cls.n_ifs_per_bd, bd_id * cls.n_ifs_per_bd)
80
81 @classmethod
Jan4af521d2016-11-15 17:05:00 +010082 def setUpClass(cls):
83 """
84 Perform standard class setup (defined by class method setUpClass in
85 class VppTestCase) before running the test case, set test case related
86 variables and configure VPP.
87
88 :var int bd_id: Bridge domain ID.
Jan4af521d2016-11-15 17:05:00 +010089 """
90 super(TestL2fib, cls).setUpClass()
91
Jan4af521d2016-11-15 17:05:00 +010092 try:
Eyal Bari93b503e2017-05-15 10:13:15 +030093 n_brs = cls.n_brs = range(1, 3)
94 cls.n_ifs_per_bd = 4
95 n_ifs = range(cls.n_ifs_per_bd * len(cls.n_brs))
Jan4af521d2016-11-15 17:05:00 +010096 # Create 4 pg interfaces
Eyal Bari93b503e2017-05-15 10:13:15 +030097 cls.create_pg_interfaces(n_ifs)
Jan4af521d2016-11-15 17:05:00 +010098
Jan4af521d2016-11-15 17:05:00 +010099 cls.flows = dict()
Eyal Bari93b503e2017-05-15 10:13:15 +0300100 for bd_id in n_brs:
101 # Packet flows mapping pg0 -> pg1, pg2, pg3 etc.
102 ifs = cls.bd_ifs(bd_id)
103 for j in ifs:
104 cls.flows[cls.pg_interfaces[j]] = [
105 cls.pg_interfaces[x] for x in ifs if x != j]
Jan4af521d2016-11-15 17:05:00 +0100106
107 # Packet sizes
108 cls.pg_if_packet_sizes = [64, 512, 1518, 9018]
109
Eyal Bari93b503e2017-05-15 10:13:15 +0300110 for bd_id in n_brs:
111 # Create BD with MAC learning and unknown unicast flooding
112 # disabled and put interfaces to this BD
113 cls.vapi.bridge_domain_add_del(
114 bd_id=bd_id, uu_flood=0, learn=0)
115 ifs = [cls.pg_interfaces[i] for i in cls.bd_ifs(bd_id)]
116 for pg_if in ifs:
117 cls.vapi.sw_interface_set_l2_bridge(pg_if.sw_if_index,
118 bd_id=bd_id)
Jan4af521d2016-11-15 17:05:00 +0100119
120 # Set up all interfaces
121 for i in cls.pg_interfaces:
122 i.admin_up()
123
124 # Mapping between packet-generator index and lists of test hosts
Eyal Bari93b503e2017-05-15 10:13:15 +0300125 cls.hosts = dict()
Eyal Bari521202b2017-05-24 10:11:20 +0300126 cls.learned_hosts = dict()
Eyal Bari93b503e2017-05-15 10:13:15 +0300127 cls.fib_hosts = dict()
128 cls.deleted_hosts = dict()
Jan4af521d2016-11-15 17:05:00 +0100129 for pg_if in cls.pg_interfaces:
Eyal Bari521202b2017-05-24 10:11:20 +0300130 swif = pg_if.sw_if_index
131 cls.hosts[swif] = []
132 cls.learned_hosts[swif] = []
133 cls.fib_hosts[swif] = []
134 cls.deleted_hosts[swif] = []
Jan4af521d2016-11-15 17:05:00 +0100135
136 except Exception:
137 super(TestL2fib, cls).tearDownClass()
138 raise
139
140 def setUp(self):
Jan4af521d2016-11-15 17:05:00 +0100141 super(TestL2fib, self).setUp()
Klement Sekeradab231a2016-12-21 08:50:14 +0100142 self.reset_packet_infos()
Jan4af521d2016-11-15 17:05:00 +0100143
144 def tearDown(self):
145 """
146 Show various debug prints after each test.
147 """
148 super(TestL2fib, self).tearDown()
149 if not self.vpp_dead:
150 self.logger.info(self.vapi.ppcli("show l2fib verbose"))
Eyal Bari93b503e2017-05-15 10:13:15 +0300151 for bd_id in self.n_brs:
152 self.logger.info(self.vapi.ppcli("show bridge-domain %s detail"
153 % bd_id))
Jan4af521d2016-11-15 17:05:00 +0100154
Eyal Bari93b503e2017-05-15 10:13:15 +0300155 def create_hosts(self, n_hosts_per_if, subnet):
Jan4af521d2016-11-15 17:05:00 +0100156 """
157 Create required number of host MAC addresses and distribute them among
158 interfaces. Create host IPv4 address for every host MAC address.
159
Eyal Bari93b503e2017-05-15 10:13:15 +0300160 :param int n_hosts_per_if: Number of per interface hosts to
161 create MAC/IPv4 addresses for.
Jan4af521d2016-11-15 17:05:00 +0100162 """
Eyal Bari93b503e2017-05-15 10:13:15 +0300163
Jan4af521d2016-11-15 17:05:00 +0100164 for pg_if in self.pg_interfaces:
Eyal Bari93b503e2017-05-15 10:13:15 +0300165 swif = pg_if.sw_if_index
Jan4af521d2016-11-15 17:05:00 +0100166
Eyal Bari93b503e2017-05-15 10:13:15 +0300167 def mac(j): return "00:00:%02x:ff:%02x:%02x" % (subnet, swif, j)
168
169 def ip(j): return "172.%02u.1%02x.%u" % (subnet, swif, j)
170
171 def h(j): return Host(mac(j), ip(j))
172 self.hosts[swif] = [h(j) for j in range(n_hosts_per_if)]
173
Eyal Bari521202b2017-05-24 10:11:20 +0300174 def learn_hosts(self, bd_id, n_hosts_per_if):
175 """
176 Create L2 MAC packet stream with host MAC addresses per interface to
177 let the bridge domain learn these MAC addresses.
178
179 :param int bd_id: BD to teach
180 :param int n_hosts_per_if: number of hosts
181 """
182 self.vapi.bridge_flags(bd_id, 1, 1)
183 ifs = [self.pg_interfaces[i] for i in self.bd_ifs(bd_id)]
184 for pg_if in ifs:
185 swif = pg_if.sw_if_index
186 hosts = self.hosts[swif]
187 lhosts = self.learned_hosts[swif]
188 packets = []
189 for j in range(n_hosts_per_if):
190 host = hosts.pop()
191 lhosts.append(host)
192 packet = (Ether(dst="ff:ff:ff:ff:ff:ff", src=host.mac))
193 packets.append(packet)
194 pg_if.add_stream(packets)
195 self.logger.info("Sending broadcast eth frames for MAC learning")
196 self.pg_start()
197
Eyal Bari93b503e2017-05-15 10:13:15 +0300198 def config_l2_fib_entries(self, bd_id, n_hosts_per_if):
Jan4af521d2016-11-15 17:05:00 +0100199 """
Eyal Bari93b503e2017-05-15 10:13:15 +0300200 Config required number of L2 FIB entries.
Jan4af521d2016-11-15 17:05:00 +0100201
Eyal Bari93b503e2017-05-15 10:13:15 +0300202 :param int bd_id: BD's id
Jan4af521d2016-11-15 17:05:00 +0100203 :param int count: Number of L2 FIB entries to be created.
204 :param int start: Starting index of the host list. (Default value = 0)
205 """
Eyal Bari93b503e2017-05-15 10:13:15 +0300206 ifs = [self.pg_interfaces[i] for i in self.bd_ifs(bd_id)]
207 for pg_if in ifs:
208 swif = pg_if.sw_if_index
209 hosts = self.hosts[swif]
210 fhosts = self.fib_hosts[swif]
211 for j in range(n_hosts_per_if):
212 host = hosts.pop()
Klement Sekerada505f62017-01-04 12:58:53 +0100213 self.vapi.l2fib_add_del(
Eyal Bari93b503e2017-05-15 10:13:15 +0300214 host.mac, bd_id, swif, static_mac=1)
215 fhosts.append(host)
216 # del hosts[0]
217 self.logger.info("Configure %d L2 FIB entries .." %
218 len(self.pg_interfaces) * n_hosts_per_if)
Jan4af521d2016-11-15 17:05:00 +0100219 self.logger.info(self.vapi.ppcli("show l2fib"))
220
Eyal Bari93b503e2017-05-15 10:13:15 +0300221 def delete_l2_fib_entry(self, bd_id, n_hosts_per_if):
Jan4af521d2016-11-15 17:05:00 +0100222 """
223 Delete required number of L2 FIB entries.
224
225 :param int count: Number of L2 FIB entries to be created.
226 """
Eyal Bari93b503e2017-05-15 10:13:15 +0300227 ifs = [self.pg_interfaces[i] for i in self.bd_ifs(bd_id)]
228 for pg_if in ifs:
229 swif = pg_if.sw_if_index
230 hosts = self.fib_hosts[swif]
231 dhosts = self.deleted_hosts[swif]
232 for j in range(n_hosts_per_if):
233 host = hosts.pop()
Klement Sekerada505f62017-01-04 12:58:53 +0100234 self.vapi.l2fib_add_del(
Eyal Bari93b503e2017-05-15 10:13:15 +0300235 host.mac, bd_id, swif, is_add=0)
236 dhosts.append(host)
237 self.logger.info(self.vapi.ppcli("show l2fib"))
238
239 def flush_int(self, swif):
240 """
241 Flush swif L2 FIB entries.
242
243 :param int swif: sw if index.
244 """
Eyal Bari521202b2017-05-24 10:11:20 +0300245 flushed = dict()
Eyal Bari93b503e2017-05-15 10:13:15 +0300246 self.vapi.l2fib_flush_int(swif)
Eyal Bari521202b2017-05-24 10:11:20 +0300247 self.deleted_hosts[swif] = self.learned_hosts[swif] + \
Eyal Bari93b503e2017-05-15 10:13:15 +0300248 self.deleted_hosts[swif]
Eyal Bari521202b2017-05-24 10:11:20 +0300249 flushed[swif] = self.learned_hosts[swif]
250 self.learned_hosts[swif] = []
Eyal Bari93b503e2017-05-15 10:13:15 +0300251 self.logger.info(self.vapi.ppcli("show l2fib"))
Eyal Bari521202b2017-05-24 10:11:20 +0300252 return flushed
Eyal Bari93b503e2017-05-15 10:13:15 +0300253
254 def flush_bd(self, bd_id):
255 """
256 Flush bd_id L2 FIB entries.
257
258 :param int bd_id: Bridge Domain id.
259 """
260 self.vapi.l2fib_flush_bd(bd_id)
Eyal Bari521202b2017-05-24 10:11:20 +0300261 flushed = dict()
Eyal Bari93b503e2017-05-15 10:13:15 +0300262 ifs = [self.pg_interfaces[i] for i in self.bd_ifs(bd_id)]
263 for pg_if in ifs:
264 swif = pg_if.sw_if_index
Eyal Bari521202b2017-05-24 10:11:20 +0300265 self.deleted_hosts[swif] = self.learned_hosts[swif] + \
Eyal Bari93b503e2017-05-15 10:13:15 +0300266 self.deleted_hosts[swif]
Eyal Bari521202b2017-05-24 10:11:20 +0300267 flushed[swif] = self.learned_hosts[swif]
268 self.learned_hosts[swif] = []
Eyal Bari93b503e2017-05-15 10:13:15 +0300269 self.logger.info(self.vapi.ppcli("show l2fib"))
Eyal Bari521202b2017-05-24 10:11:20 +0300270 return flushed
Eyal Bari93b503e2017-05-15 10:13:15 +0300271
272 def flush_all(self):
273 """
274 Flush All L2 FIB entries.
275 """
276 self.vapi.l2fib_flush_all()
Eyal Bari521202b2017-05-24 10:11:20 +0300277 flushed = dict()
Eyal Bari93b503e2017-05-15 10:13:15 +0300278 for pg_if in self.pg_interfaces:
279 swif = pg_if.sw_if_index
Eyal Bari521202b2017-05-24 10:11:20 +0300280 self.deleted_hosts[swif] = self.learned_hosts[swif] + \
Eyal Bari93b503e2017-05-15 10:13:15 +0300281 self.deleted_hosts[swif]
Eyal Bari521202b2017-05-24 10:11:20 +0300282 flushed[swif] = self.learned_hosts[swif]
283 self.learned_hosts[swif] = []
Jan4af521d2016-11-15 17:05:00 +0100284 self.logger.info(self.vapi.ppcli("show l2fib"))
Eyal Bari521202b2017-05-24 10:11:20 +0300285 return flushed
Jan4af521d2016-11-15 17:05:00 +0100286
Eyal Bari521202b2017-05-24 10:11:20 +0300287 def create_stream(self, src_if, packet_sizes, if_src_hosts=None,
288 if_dst_hosts=None):
Jan4af521d2016-11-15 17:05:00 +0100289 """
290 Create input packet stream for defined interface using hosts or
291 deleted_hosts list.
292
293 :param object src_if: Interface to create packet stream for.
294 :param list packet_sizes: List of required packet sizes.
295 :param boolean deleted: Set to True if deleted_hosts list required.
296 :return: Stream of packets.
297 """
Eyal Bari521202b2017-05-24 10:11:20 +0300298 if not if_src_hosts:
299 if_src_hosts = self.fib_hosts
300 if not if_dst_hosts:
301 if_dst_hosts = self.fib_hosts
302 src_hosts = if_src_hosts[src_if.sw_if_index]
Eyal Bari93b503e2017-05-15 10:13:15 +0300303 if not src_hosts:
304 return []
Jan4af521d2016-11-15 17:05:00 +0100305 pkts = []
Jan4af521d2016-11-15 17:05:00 +0100306 for dst_if in self.flows[src_if]:
Eyal Bari521202b2017-05-24 10:11:20 +0300307 dst_swif = dst_if.sw_if_index
308 if dst_swif not in if_dst_hosts:
309 continue
310 dst_hosts = if_dst_hosts[dst_swif]
Eyal Bari93b503e2017-05-15 10:13:15 +0300311 for i in range(0, len(dst_hosts)):
Jan4af521d2016-11-15 17:05:00 +0100312 dst_host = dst_hosts[i]
313 src_host = random.choice(src_hosts)
Klement Sekeradab231a2016-12-21 08:50:14 +0100314 pkt_info = self.create_packet_info(src_if, dst_if)
Jan4af521d2016-11-15 17:05:00 +0100315 payload = self.info_to_payload(pkt_info)
316 p = (Ether(dst=dst_host.mac, src=src_host.mac) /
317 IP(src=src_host.ip4, dst=dst_host.ip4) /
318 UDP(sport=1234, dport=1234) /
319 Raw(payload))
320 pkt_info.data = p.copy()
321 size = random.choice(packet_sizes)
322 self.extend_packet(p, size)
323 pkts.append(p)
324 return pkts
325
326 def verify_capture(self, pg_if, capture):
327 """
328 Verify captured input packet stream for defined interface.
329
330 :param object pg_if: Interface to verify captured packet stream for.
331 :param list capture: Captured packet stream.
332 """
333 last_info = dict()
334 for i in self.pg_interfaces:
335 last_info[i.sw_if_index] = None
336 dst_sw_if_index = pg_if.sw_if_index
337 for packet in capture:
338 payload_info = self.payload_to_info(str(packet[Raw]))
339 try:
340 ip = packet[IP]
341 udp = packet[UDP]
342 packet_index = payload_info.index
343 self.assertEqual(payload_info.dst, dst_sw_if_index)
344 self.logger.debug("Got packet on port %s: src=%u (id=%u)" %
345 (pg_if.name, payload_info.src, packet_index))
346 next_info = self.get_next_packet_info_for_interface2(
347 payload_info.src, dst_sw_if_index,
348 last_info[payload_info.src])
349 last_info[payload_info.src] = next_info
350 self.assertTrue(next_info is not None)
351 self.assertEqual(packet_index, next_info.index)
352 saved_packet = next_info.data
353 # Check standard fields
354 self.assertEqual(ip.src, saved_packet[IP].src)
355 self.assertEqual(ip.dst, saved_packet[IP].dst)
356 self.assertEqual(udp.sport, saved_packet[UDP].sport)
357 self.assertEqual(udp.dport, saved_packet[UDP].dport)
358 except:
Klement Sekera9225dee2016-12-12 08:36:58 +0100359 self.logger.error(ppp("Unexpected or invalid packet:", packet))
Jan4af521d2016-11-15 17:05:00 +0100360 raise
361 for i in self.pg_interfaces:
362 remaining_packet = self.get_next_packet_info_for_interface2(
363 i, dst_sw_if_index, last_info[i.sw_if_index])
364 self.assertTrue(
365 remaining_packet is None,
366 "Port %u: Packet expected from source %u didn't arrive" %
367 (dst_sw_if_index, i.sw_if_index))
368
Eyal Bari521202b2017-05-24 10:11:20 +0300369 def run_verify_test(self, bd_id, dst_hosts=None):
Jan4af521d2016-11-15 17:05:00 +0100370 # Test
371 # Create incoming packet streams for packet-generator interfaces
Eyal Bari521202b2017-05-24 10:11:20 +0300372 if not dst_hosts:
373 dst_hosts = self.fib_hosts
Eyal Bari93b503e2017-05-15 10:13:15 +0300374 self.reset_packet_infos()
375 ifs = [self.pg_interfaces[i] for i in self.bd_ifs(bd_id)]
376 for i in ifs:
Eyal Bari521202b2017-05-24 10:11:20 +0300377 pkts = self.create_stream(
378 i, self.pg_if_packet_sizes, if_dst_hosts=dst_hosts)
Jan4af521d2016-11-15 17:05:00 +0100379 i.add_stream(pkts)
380
Eyal Bari521202b2017-05-24 10:11:20 +0300381 self.vapi.bridge_flags(bd_id, 0, 1)
Jan4af521d2016-11-15 17:05:00 +0100382 # Enable packet capture and start packet sending
Eyal Bari93b503e2017-05-15 10:13:15 +0300383 self.pg_enable_capture(ifs)
Jan4af521d2016-11-15 17:05:00 +0100384 self.pg_start()
385
386 # Verify
387 # Verify outgoing packet streams per packet-generator interface
Eyal Bari93b503e2017-05-15 10:13:15 +0300388 for i in ifs:
Eyal Bari521202b2017-05-24 10:11:20 +0300389 if not dst_hosts[i.sw_if_index]:
390 continue
Jan4af521d2016-11-15 17:05:00 +0100391 capture = i.get_capture()
392 self.logger.info("Verifying capture on interface %s" % i.name)
393 self.verify_capture(i, capture)
394
Eyal Bari521202b2017-05-24 10:11:20 +0300395 def run_verify_negat_test(self, bd_id, dst_hosts=None):
Jan4af521d2016-11-15 17:05:00 +0100396 # Test
397 # Create incoming packet streams for packet-generator interfaces for
398 # deleted MAC addresses
Eyal Bari521202b2017-05-24 10:11:20 +0300399 if not dst_hosts:
400 dst_hosts = self.deleted_hosts
Klement Sekeradab231a2016-12-21 08:50:14 +0100401 self.reset_packet_infos()
Eyal Bari93b503e2017-05-15 10:13:15 +0300402 ifs = [self.pg_interfaces[i] for i in self.bd_ifs(bd_id)]
403 for i in ifs:
Eyal Bari521202b2017-05-24 10:11:20 +0300404 pkts = self.create_stream(
405 i, self.pg_if_packet_sizes, if_dst_hosts=dst_hosts)
Eyal Bari93b503e2017-05-15 10:13:15 +0300406 if pkts:
407 i.add_stream(pkts)
Jan4af521d2016-11-15 17:05:00 +0100408
Eyal Bari521202b2017-05-24 10:11:20 +0300409 self.vapi.bridge_flags(bd_id, 0, 1)
Jan4af521d2016-11-15 17:05:00 +0100410 # Enable packet capture and start packet sending
Eyal Bari93b503e2017-05-15 10:13:15 +0300411 self.pg_enable_capture(ifs)
Jan4af521d2016-11-15 17:05:00 +0100412 self.pg_start()
413
414 # Verify
415 # Verify outgoing packet streams per packet-generator interface
Neale Ranns4b8d3be2017-05-22 02:46:01 -0700416 timeout = 1
Eyal Bari93b503e2017-05-15 10:13:15 +0300417 for i in ifs:
Neale Ranns4b8d3be2017-05-22 02:46:01 -0700418 i.get_capture(0, timeout=timeout)
Klement Sekera9225dee2016-12-12 08:36:58 +0100419 i.assert_nothing_captured(remark="outgoing interface")
Neale Ranns4b8d3be2017-05-22 02:46:01 -0700420 timeout = 0.1
Jan4af521d2016-11-15 17:05:00 +0100421
422 def test_l2_fib_01(self):
423 """ L2 FIB test 1 - program 100 MAC addresses
424 """
425 # Config 1
426 # Create test host entries
Eyal Bari93b503e2017-05-15 10:13:15 +0300427 self.create_hosts(100, subnet=17)
Jan4af521d2016-11-15 17:05:00 +0100428
429 # Add first 100 MAC entries to L2 FIB
Eyal Bari93b503e2017-05-15 10:13:15 +0300430 self.config_l2_fib_entries(bd_id=1, n_hosts_per_if=100)
Jan4af521d2016-11-15 17:05:00 +0100431
432 # Test 1
Eyal Bari93b503e2017-05-15 10:13:15 +0300433 self.run_verify_test(bd_id=1)
Jan4af521d2016-11-15 17:05:00 +0100434
435 def test_l2_fib_02(self):
436 """ L2 FIB test 2 - delete 12 MAC entries
437 """
438 # Config 2
Eyal Bari93b503e2017-05-15 10:13:15 +0300439 # Delete 12 MAC entries per interface from L2 FIB
440 self.delete_l2_fib_entry(bd_id=1, n_hosts_per_if=12)
Jan4af521d2016-11-15 17:05:00 +0100441
442 # Test 2a
Eyal Bari93b503e2017-05-15 10:13:15 +0300443 self.run_verify_test(bd_id=1)
Jan4af521d2016-11-15 17:05:00 +0100444
445 # Verify 2a
Eyal Bari93b503e2017-05-15 10:13:15 +0300446 self.run_verify_negat_test(bd_id=1)
Jan4af521d2016-11-15 17:05:00 +0100447
448 def test_l2_fib_03(self):
449 """ L2 FIB test 3 - program new 100 MAC addresses
450 """
451 # Config 3
452 # Create new test host entries
Eyal Bari93b503e2017-05-15 10:13:15 +0300453 self.create_hosts(100, subnet=22)
Jan4af521d2016-11-15 17:05:00 +0100454
455 # Add new 100 MAC entries to L2 FIB
Eyal Bari93b503e2017-05-15 10:13:15 +0300456 self.config_l2_fib_entries(bd_id=1, n_hosts_per_if=100)
Jan4af521d2016-11-15 17:05:00 +0100457
458 # Test 3
Eyal Bari93b503e2017-05-15 10:13:15 +0300459 self.run_verify_test(bd_id=1)
Jan4af521d2016-11-15 17:05:00 +0100460
461 def test_l2_fib_04(self):
462 """ L2 FIB test 4 - delete 160 MAC entries
463 """
464 # Config 4
Eyal Bari93b503e2017-05-15 10:13:15 +0300465 # Delete 160 MAC entries per interface from L2 FIB
466 self.delete_l2_fib_entry(bd_id=1, n_hosts_per_if=160)
Jan4af521d2016-11-15 17:05:00 +0100467
468 # Test 4a
Eyal Bari93b503e2017-05-15 10:13:15 +0300469 self.run_verify_negat_test(bd_id=1)
470
471 def test_l2_fib_05(self):
Eyal Bari521202b2017-05-24 10:11:20 +0300472 """ L2 FIB test 5 - Program 10 new MAC entries, learn 10
Eyal Bari93b503e2017-05-15 10:13:15 +0300473 """
474 self.create_hosts(20, subnet=35)
475
Eyal Bari521202b2017-05-24 10:11:20 +0300476 self.learn_hosts(bd_id=1, n_hosts_per_if=10)
477 self.learn_hosts(bd_id=2, n_hosts_per_if=10)
478 self.config_l2_fib_entries(bd_id=1, n_hosts_per_if=10)
479 self.config_l2_fib_entries(bd_id=2, n_hosts_per_if=10)
480 self.run_verify_test(bd_id=1, dst_hosts=self.learned_hosts)
481 self.run_verify_test(bd_id=2, dst_hosts=self.learned_hosts)
482
483 def test_l2_fib_06(self):
484 """ L2 FIB test 6 - flush first interface
485 """
486 self.create_hosts(20, subnet=36)
487
488 self.learn_hosts(bd_id=1, n_hosts_per_if=10)
489 self.learn_hosts(bd_id=2, n_hosts_per_if=10)
490 self.config_l2_fib_entries(bd_id=1, n_hosts_per_if=10)
491 self.config_l2_fib_entries(bd_id=2, n_hosts_per_if=10)
492 flushed = self.flush_int(self.pg_interfaces[0].sw_if_index)
493 self.run_verify_test(bd_id=1, dst_hosts=self.learned_hosts)
494 self.run_verify_negat_test(bd_id=1, dst_hosts=flushed)
495
496 def test_l2_fib_07(self):
497 """ L2 FIB test 7 - flush bd_id
498 """
499 self.create_hosts(20, subnet=37)
500
501 self.learn_hosts(bd_id=1, n_hosts_per_if=10)
502 self.learn_hosts(bd_id=2, n_hosts_per_if=10)
503 self.config_l2_fib_entries(bd_id=1, n_hosts_per_if=10)
504 self.config_l2_fib_entries(bd_id=2, n_hosts_per_if=10)
505 flushed = self.flush_bd(bd_id=1)
506 self.run_verify_negat_test(bd_id=1, dst_hosts=flushed)
507 self.run_verify_test(bd_id=2, dst_hosts=self.learned_hosts)
508
509 def test_l2_fib_08(self):
510 """ L2 FIB test 8 - flush all
511 """
512 self.create_hosts(20, subnet=38)
513
514 self.learn_hosts(bd_id=1, n_hosts_per_if=10)
515 self.learn_hosts(bd_id=2, n_hosts_per_if=10)
516 self.config_l2_fib_entries(bd_id=1, n_hosts_per_if=10)
517 self.config_l2_fib_entries(bd_id=2, n_hosts_per_if=10)
518 flushed = self.flush_all()
519 self.run_verify_negat_test(bd_id=1, dst_hosts=flushed)
520 self.run_verify_negat_test(bd_id=2, dst_hosts=flushed)
Jan4af521d2016-11-15 17:05:00 +0100521
522
523if __name__ == '__main__':
524 unittest.main(testRunner=VppTestRunner)