l2: Separating scan-delay and learn-limit into a separate API from want_l2_macs_events
[vpp.git] / test / test_l2bd_learnlimit.py
1 #!/usr/bin/env python3
2
3 import unittest
4 import random
5
6 from scapy.packet import Raw
7 from scapy.layers.l2 import Ether
8 from scapy.layers.inet import IP, UDP
9
10 from framework import VppTestCase, VppTestRunner, running_extended_tests
11 from util import Host, ppp
12
13
14 class TestL2LearnLimit(VppTestCase):
15     """ L2 Learn limit Test Case """
16
17     @classmethod
18     def setUpClass(self):
19         super(TestL2LearnLimit, self).setUpClass()
20         self.create_pg_interfaces(range(3))
21
22     @classmethod
23     def tearDownClass(cls):
24         super(TestL2LearnLimit, cls).tearDownClass()
25
26     def create_hosts(self, pg_if, n_hosts_per_if, subnet):
27         """
28         Create required number of host MAC addresses and distribute them among
29         interfaces. Create host IPv4 address for every host MAC address.
30
31         :param int n_hosts_per_if: Number of per interface hosts to
32         create MAC/IPv4 addresses for.
33         """
34
35         hosts = dict()
36         swif = pg_if.sw_if_index
37
38         def mac(j): return "00:00:%02x:ff:%02x:%02x" % (subnet, swif, j)
39
40         def ip(j): return "172.%02u.1%02x.%u" % (subnet, swif, j)
41
42         def h(j): return Host(mac(j), ip(j))
43         hosts[swif] = [h(j) for j in range(n_hosts_per_if)]
44
45         return hosts
46
47     def learn_hosts(self, pg_if, bd_id, hosts):
48         """
49         Create and send per interface L2 MAC broadcast packet stream to
50         let the bridge domain learn these MAC addresses.
51
52         :param int bd_id: BD to teach
53         :param dict hosts: dict of hosts per interface
54         """
55
56         self.vapi.bridge_flags(bd_id=bd_id, is_set=1, flags=1)
57
58         swif = pg_if.sw_if_index
59         packets = [Ether(dst="ff:ff:ff:ff:ff:ff", src=host.mac)
60                    for host in hosts[swif]]
61         pg_if.add_stream(packets)
62         self.logger.info("Sending broadcast eth frames for MAC learning")
63         self.pg_start()
64
65     def test_l2bd_learnlimit01(self):
66         """ L2BD test without learn Limit
67         """
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 test_l2bd_learnlimit02(self):
76         """ L2BD test with learn Limit
77         """
78         self.vapi.want_l2_macs_events(enable_disable=1, learn_limit=10)
79         hosts = self.create_hosts(self.pg_interfaces[0], 20, 1)
80         fhosts = self.create_hosts(self.pg_interfaces[1], 1, 2)
81
82         # inject 20 mac addresses on bd1
83         self.learn_hosts(self.pg_interfaces[0], 1, hosts)
84
85         # inject 1 mac address on bd2
86         self.learn_hosts(self.pg_interfaces[1], 2, fhosts)
87
88         lfs1 = self.vapi.l2_fib_table_dump(1)
89         lfs2 = self.vapi.l2_fib_table_dump(2)
90
91         # check that only 10 macs are learned.
92         self.assertEqual(len(lfs1), 10)
93
94         # check that bd2 was not able to learn
95         self.assertEqual(len(lfs2), 0)
96
97     def test_l2bd_learnlimit03(self):
98         """ L2BD test with bridge domain limit
99         """
100         self.vapi.want_l2_macs_events(enable_disable=1, learn_limit=1000)
101         self.vapi.bridge_domain_set_default_learn_limit(4)
102         self.vapi.bridge_domain_add_del(bd_id=3)
103         self.vapi.sw_interface_set_l2_bridge(
104             self.pg_interfaces[2].sw_if_index, bd_id=3)
105
106         self.vapi.bridge_domain_set_learn_limit(2, 5)
107
108         hosts = self.create_hosts(self.pg_interfaces[1], 20, 2)
109         fhosts = self.create_hosts(self.pg_interfaces[2], 20, 3)
110
111         # inject 20 mac addresses on bd2
112         self.learn_hosts(self.pg_interfaces[1], 2, hosts)
113
114         # inject 20 macs address on bd3
115         self.learn_hosts(self.pg_interfaces[2], 3, fhosts)
116
117         lfs1 = self.vapi.l2_fib_table_dump(2)
118         lfs2 = self.vapi.l2_fib_table_dump(3)
119
120         # check that only 5 macs are learned.
121         self.assertEqual(len(lfs1), 5)
122
123         # check that only 4 macs are learned.
124         self.assertEqual(len(lfs2), 4)
125
126         self.vapi.sw_interface_set_l2_bridge(
127             rx_sw_if_index=self.pg_interfaces[2].sw_if_index,
128             bd_id=3, enable=0)
129         self.vapi.bridge_domain_add_del(is_add=0, bd_id=3)
130
131     def setUp(self):
132         super(TestL2LearnLimit, self).setUp()
133
134         self.vapi.bridge_domain_add_del(bd_id=1)
135         self.vapi.bridge_domain_add_del(bd_id=2)
136
137         self.vapi.sw_interface_set_l2_bridge(
138             self.pg_interfaces[0].sw_if_index, bd_id=1)
139         self.vapi.sw_interface_set_l2_bridge(
140             self.pg_interfaces[1].sw_if_index, bd_id=2)
141
142     def tearDown(self):
143         super(TestL2LearnLimit, self).tearDown()
144         self.vapi.sw_interface_set_l2_bridge(
145             rx_sw_if_index=self.pg_interfaces[0].sw_if_index,
146             bd_id=1, enable=0)
147         self.vapi.sw_interface_set_l2_bridge(
148             rx_sw_if_index=self.pg_interfaces[1].sw_if_index,
149             bd_id=2, enable=0)
150         self.vapi.bridge_domain_add_del(bd_id=1, is_add=0)
151         self.vapi.bridge_domain_add_del(bd_id=2, is_add=0)
152
153
154 if __name__ == '__main__':
155     unittest.main(testRunner=VppTestRunner)