mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-25 22:30:52 +00:00
tests: Check if we can see advertised routes with route-map applied
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
This commit is contained in:
parent
6c3e1e4fd6
commit
b23c6e522d
@ -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
|
||||||
|
!
|
@ -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
|
||||||
|
!
|
@ -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
|
||||||
|
!
|
||||||
|
!
|
@ -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))
|
Loading…
Reference in New Issue
Block a user