]> git.proxmox.com Git - mirror_frr.git/blob - tests/topotests/bgp_default_route_route_map_match2/test_bgp_default-originate_route-map_match2.py
Merge pull request #9435 from SaiGomathiN/sai-igmp
[mirror_frr.git] / tests / topotests / bgp_default_route_route_map_match2 / test_bgp_default-originate_route-map_match2.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2021 by
4 # Donatas Abraitis <donatas.abraitis@gmail.com>
5 #
6 # Permission to use, copy, modify, and/or distribute this software
7 # for any purpose with or without fee is hereby granted, provided
8 # that the above copyright notice and this permission notice appear
9 # in all copies.
10 #
11 # THE SOFTWARE IS PROVIDED "AS IS" AND NETDEF DISCLAIMS ALL WARRANTIES
12 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NETDEF BE LIABLE FOR
14 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
15 # DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
16 # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
17 # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
18 # OF THIS SOFTWARE.
19 #
20
21 """
22 Test if default-originate works with conditional match.
23 If 10.0.0.0/22 is recived from r2, then we announce 0.0.0.0/0
24 to r2.
25 """
26
27 import os
28 import sys
29 import json
30 import time
31 import pytest
32 import functools
33
34 CWD = os.path.dirname(os.path.realpath(__file__))
35 sys.path.append(os.path.join(CWD, "../"))
36
37 # pylint: disable=C0413
38 from lib import topotest
39 from lib.topogen import Topogen, TopoRouter, get_topogen
40 from lib.topolog import logger
41 from mininet.topo import Topo
42 from lib.common_config import step
43
44 pytestmark = [pytest.mark.bgpd]
45
46
47 class TemplateTopo(Topo):
48 def build(self, *_args, **_opts):
49 tgen = get_topogen(self)
50
51 for routern in range(1, 3):
52 tgen.add_router("r{}".format(routern))
53
54 switch = tgen.add_switch("s1")
55 switch.add_link(tgen.gears["r1"])
56 switch.add_link(tgen.gears["r2"])
57
58
59 def setup_module(mod):
60 tgen = Topogen(TemplateTopo, mod.__name__)
61 tgen.start_topology()
62
63 router_list = tgen.routers()
64
65 for i, (rname, router) in enumerate(router_list.items(), 1):
66 router.load_config(
67 TopoRouter.RD_ZEBRA, os.path.join(CWD, "{}/zebra.conf".format(rname))
68 )
69 router.load_config(
70 TopoRouter.RD_BGP, os.path.join(CWD, "{}/bgpd.conf".format(rname))
71 )
72
73 tgen.start_router()
74
75
76 def teardown_module(mod):
77 tgen = get_topogen()
78 tgen.stop_topology()
79
80
81 def test_bgp_default_originate_route_map():
82 tgen = get_topogen()
83
84 if tgen.routers_have_failure():
85 pytest.skip(tgen.errors)
86
87 router = tgen.gears["r2"]
88
89 def _bgp_converge(router):
90 output = json.loads(router.vtysh_cmd("show ip bgp neighbor 192.168.255.1 json"))
91 expected = {
92 "192.168.255.1": {
93 "bgpState": "Established",
94 "addressFamilyInfo": {"ipv4Unicast": {"acceptedPrefixCounter": 1}},
95 }
96 }
97 return topotest.json_cmp(output, expected)
98
99 def _bgp_default_route_is_valid(router):
100 output = json.loads(router.vtysh_cmd("show ip bgp 0.0.0.0/0 json"))
101 expected = {"paths": [{"valid": True}]}
102 return topotest.json_cmp(output, expected)
103
104 step("Converge network")
105 test_func = functools.partial(_bgp_converge, router)
106 success, result = topotest.run_and_expect(test_func, None, count=30, wait=0.5)
107 assert result is None, "Failed to see bgp convergence at r2"
108
109 step("Withdraw 10.0.0.0/22 from R2")
110 router.vtysh_cmd(
111 "conf t\nrouter bgp\naddress-family ipv4\nno redistribute connected"
112 )
113
114 step("Check if we don't have 0.0.0.0/0 at R2")
115 test_func = functools.partial(_bgp_default_route_is_valid, router)
116 success, result = topotest.run_and_expect(test_func, not None, count=30, wait=0.5)
117 assert result is not None, "0.0.0.0/0 exists at r2"
118
119 step("Announce 10.0.0.0/22 from R2")
120 router.vtysh_cmd("conf t\nrouter bgp\naddress-family ipv4\nredistribute connected")
121
122 step("Check if we have 0.0.0.0/0 at R2")
123 test_func = functools.partial(_bgp_default_route_is_valid, router)
124 success, result = topotest.run_and_expect(test_func, None, count=30, wait=0.5)
125 assert result is None, "0.0.0.0/0 does not exist at r2"
126
127 step("Withdraw 10.0.0.0/22 from R2 again")
128 router.vtysh_cmd(
129 "conf t\nrouter bgp\naddress-family ipv4\nno redistribute connected"
130 )
131
132 step("Check if we don't have 0.0.0.0/0 at R2 again")
133 test_func = functools.partial(_bgp_default_route_is_valid, router)
134 success, result = topotest.run_and_expect(test_func, not None, count=30, wait=0.5)
135 assert result is not None, "0.0.0.0/0 exists at r2"
136
137
138 if __name__ == "__main__":
139 args = ["-s"] + sys.argv[1:]
140 sys.exit(pytest.main(args))