forked from FRRouting/frr
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Check if we can see advertised routes with route-map applied
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
- Loading branch information
Showing
5 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
13 changes: 13 additions & 0 deletions
13
tests/topotests/bgp_show_advertised_routes_detail/r1/frr.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
! | ||
int r1-eth0 | ||
ip address 192.168.1.1/24 | ||
! | ||
router bgp 65001 | ||
no bgp ebgp-requires-policy | ||
no bgp network import-check | ||
neighbor 192.168.1.2 remote-as auto | ||
neighbor 192.168.1.2 timers 1 3 | ||
neighbor 192.168.1.2 timers connect 1 | ||
network 10.10.10.1/32 | ||
exit-address-family | ||
! |
29 changes: 29 additions & 0 deletions
29
tests/topotests/bgp_show_advertised_routes_detail/r2/frr.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
! | ||
int r2-eth0 | ||
ip address 192.168.1.2/24 | ||
! | ||
int r2-eth1 | ||
ip address 192.168.2.2/24 | ||
! | ||
router bgp 65002 | ||
no bgp ebgp-requires-policy | ||
neighbor 192.168.1.1 remote-as auto | ||
neighbor 192.168.1.1 timers 1 3 | ||
neighbor 192.168.1.1 timers connect 1 | ||
neighbor 192.168.2.3 remote-as auto | ||
neighbor 192.168.2.3 timers 1 3 | ||
neighbor 192.168.2.3 timers connect 1 | ||
address-family ipv4 unicast | ||
neighbor 192.168.2.3 route-map r3 out | ||
exit-address-family | ||
! | ||
! | ||
ip prefix-list p1 permit 10.10.10.1/32 | ||
! | ||
route-map r3 permit 10 | ||
match ip address prefix-list p1 | ||
set large-community 65001:65002:65003 | ||
set community 65001:65002 | ||
set extcommunity bandwidth 100 | ||
exit | ||
! |
11 changes: 11 additions & 0 deletions
11
tests/topotests/bgp_show_advertised_routes_detail/r3/frr.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
! | ||
int r3-eth0 | ||
ip address 192.168.2.3/24 | ||
! | ||
router bgp 65003 | ||
no bgp ebgp-requires-policy | ||
neighbor 192.168.2.2 remote-as auto | ||
neighbor 192.168.2.2 timers 1 3 | ||
neighbor 192.168.2.2 timers connect 1 | ||
! | ||
! |
88 changes: 88 additions & 0 deletions
88
tests/topotests/bgp_show_advertised_routes_detail/test_bgp_show_advertised_routes_detail.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
#!/usr/bin/env python | ||
# SPDX-License-Identifier: ISC | ||
|
||
# Copyright (c) 2024 by | ||
# Donatas Abraitis <donatas@opensourcerouting.org> | ||
# | ||
|
||
import os | ||
import sys | ||
import json | ||
import pytest | ||
import functools | ||
|
||
pytestmark = [pytest.mark.bgpd] | ||
|
||
CWD = os.path.dirname(os.path.realpath(__file__)) | ||
sys.path.append(os.path.join(CWD, "../")) | ||
|
||
# pylint: disable=C0413 | ||
from lib import topotest | ||
from lib.topogen import Topogen, get_topogen | ||
|
||
|
||
def setup_module(mod): | ||
topodef = {"s1": ("r1", "r2"), "s2": ("r2", "r3")} | ||
tgen = Topogen(topodef, mod.__name__) | ||
tgen.start_topology() | ||
|
||
router_list = tgen.routers() | ||
|
||
for _, (rname, router) in enumerate(router_list.items(), 1): | ||
router.load_frr_config(os.path.join(CWD, "{}/frr.conf".format(rname))) | ||
|
||
tgen.start_router() | ||
|
||
|
||
def teardown_module(mod): | ||
tgen = get_topogen() | ||
tgen.stop_topology() | ||
|
||
|
||
def test_bgp_show_advertised_routes_detail(): | ||
tgen = get_topogen() | ||
|
||
if tgen.routers_have_failure(): | ||
pytest.skip(tgen.errors) | ||
|
||
r2 = tgen.gears["r2"] | ||
|
||
def _bgp_converge(): | ||
output = json.loads( | ||
r2.vtysh_cmd( | ||
"show bgp ipv4 unicast neighbor 192.168.2.3 advertised-routes detail json" | ||
) | ||
) | ||
expected = { | ||
"advertisedRoutes": { | ||
"10.10.10.1/32": { | ||
"paths": [ | ||
{ | ||
"community": { | ||
"string": "65001:65002", | ||
}, | ||
"extendedCommunity": { | ||
"string": "LB:65002:12500000 (100.000 Mbps)" | ||
}, | ||
"largeCommunity": { | ||
"string": "65001:65002:65003", | ||
}, | ||
} | ||
], | ||
} | ||
}, | ||
"totalPrefixCounter": 1, | ||
"filteredPrefixCounter": 0, | ||
} | ||
return topotest.json_cmp(output, expected) | ||
|
||
test_func = functools.partial( | ||
_bgp_converge, | ||
) | ||
_, result = topotest.run_and_expect(test_func, None, count=30, wait=1) | ||
assert result is None, "Can't converge" | ||
|
||
|
||
if __name__ == "__main__": | ||
args = ["-s"] + sys.argv[1:] | ||
sys.exit(pytest.main(args)) |