tests: Add support for getting corefile patterns on FreeBSD
[vpp.git] / test / test_l2bd_learnlimit.py
1 #!/usr/bin/env python3
2
3 import unittest
4
5 from scapy.layers.l2 import Ether
6
7 from framework import VppTestCase
8 from asfframework import VppTestRunner
9 from util import Host
10
11
12 class TestL2LearnLimit(VppTestCase):
13     """L2 Learn no limit Test Case"""
14
15     @classmethod
16     def setUpClass(self):
17         super(TestL2LearnLimit, self).setUpClass()
18         self.create_pg_interfaces(range(3))
19
20     @classmethod
21     def tearDownClass(cls):
22         super(TestL2LearnLimit, cls).tearDownClass()
23
24     def create_hosts(self, pg_if, n_hosts_per_if, subnet):
25         """
26         Create required number of host MAC addresses and distribute them among
27         interfaces. Create host IPv4 address for every host MAC address.
28
29         :param int n_hosts_per_if: Number of per interface hosts to
30             create MAC/IPv4 addresses for.
31         """
32
33         hosts = dict()
34         swif = pg_if.sw_if_index
35
36         def mac(j):
37             return "00:00:%02x:ff:%02x:%02x" % (subnet, swif, j)
38
39         def ip(j):
40             return "172.%02u.1%02x.%u" % (subnet, swif, j)
41
42         def h(j):
43             return Host(mac(j), ip(j))
44
45         hosts[swif] = [h(j) for j in range(n_hosts_per_if)]
46
47         return hosts
48
49     def learn_hosts(self, pg_if, bd_id, hosts):
50         """
51         Create and send per interface L2 MAC broadcast packet stream to
52         let the bridge domain learn these MAC addresses.
53
54         :param int bd_id: BD to teach
55         :param dict hosts: dict of hosts per interface
56         """
57
58         self.vapi.bridge_flags(bd_id=bd_id, is_set=1, flags=1)
59
60         swif = pg_if.sw_if_index
61         packets = [Ether(dst="ff:ff:ff:ff:ff:ff", src=host.mac) for host in hosts[swif]]
62         pg_if.add_stream(packets)
63         self.logger.info("Sending broadcast eth frames for MAC learning")
64         self.pg_start()
65
66     def test_l2bd_learnlimit(self):
67         """L2BD test without learn Limit"""
68         hosts = self.create_hosts(self.pg_interfaces[0], 20, 1)
69         self.learn_hosts(self.pg_interfaces[0], 1, hosts)
70         lfs = self.vapi.l2_fib_table_dump(1)
71
72         # check that 20 macs are learned.
73         self.assertEqual(len(lfs), 20)
74
75     def setUp(self):
76         super(TestL2LearnLimit, self).setUp()
77
78         self.vapi.bridge_domain_add_del_v2(
79             bd_id=1, is_add=1, flood=1, forward=1, learn=1, uu_flood=1
80         )
81         self.vapi.bridge_domain_add_del_v2(
82             bd_id=2, is_add=1, flood=1, forward=1, learn=1, uu_flood=1
83         )
84
85         self.vapi.sw_interface_set_l2_bridge(self.pg_interfaces[0].sw_if_index, bd_id=1)
86         self.vapi.sw_interface_set_l2_bridge(self.pg_interfaces[1].sw_if_index, bd_id=2)
87
88     def tearDown(self):
89         super(TestL2LearnLimit, self).tearDown()
90         self.vapi.sw_interface_set_l2_bridge(
91             rx_sw_if_index=self.pg_interfaces[0].sw_if_index, bd_id=1, enable=0
92         )
93         self.vapi.sw_interface_set_l2_bridge(
94             rx_sw_if_index=self.pg_interfaces[1].sw_if_index, bd_id=2, enable=0
95         )
96         self.vapi.bridge_domain_add_del_v2(bd_id=1, is_add=0)
97         self.vapi.bridge_domain_add_del_v2(bd_id=2, is_add=0)
98
99
100 if __name__ == "__main__":
101     unittest.main(testRunner=VppTestRunner)