]> git.puffer.fish Git - mirror/frr.git/commitdiff
tests: Check if underlay IGP metric is reflected into BGP after cost changes 17038/head
authorDonatas Abraitis <donatas@opensourcerouting.org>
Wed, 9 Oct 2024 15:35:33 +0000 (18:35 +0300)
committerDonatas Abraitis <donatas@opensourcerouting.org>
Tue, 15 Oct 2024 14:42:53 +0000 (17:42 +0300)
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
tests/topotests/bgp_set_metric_igp/__init__.py [new file with mode: 0644]
tests/topotests/bgp_set_metric_igp/r1/frr.conf [new file with mode: 0644]
tests/topotests/bgp_set_metric_igp/r2/frr.conf [new file with mode: 0644]
tests/topotests/bgp_set_metric_igp/r3/frr.conf [new file with mode: 0644]
tests/topotests/bgp_set_metric_igp/r4/frr.conf [new file with mode: 0644]
tests/topotests/bgp_set_metric_igp/r5/frr.conf [new file with mode: 0644]
tests/topotests/bgp_set_metric_igp/test_bgp_set_metric_igp.py [new file with mode: 0644]

diff --git a/tests/topotests/bgp_set_metric_igp/__init__.py b/tests/topotests/bgp_set_metric_igp/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/topotests/bgp_set_metric_igp/r1/frr.conf b/tests/topotests/bgp_set_metric_igp/r1/frr.conf
new file mode 100644 (file)
index 0000000..018ea02
--- /dev/null
@@ -0,0 +1,13 @@
+!
+int r1-eth0
+ ip address 10.0.0.1/24
+!
+int r1-eth1
+ ip address 10.0.1.1/24
+!
+router bgp 65001
+ no bgp ebgp-requires-policy
+ no bgp network import-check
+ neighbor 10.0.0.2 remote-as external
+ neighbor 10.0.1.2 remote-as external
+!
diff --git a/tests/topotests/bgp_set_metric_igp/r2/frr.conf b/tests/topotests/bgp_set_metric_igp/r2/frr.conf
new file mode 100644 (file)
index 0000000..bce06c4
--- /dev/null
@@ -0,0 +1,36 @@
+!
+int r2-eth0
+ ip address 10.0.0.2/24
+ ip router isis n2
+ isis circuit-type level-2-only
+ isis fast-reroute lfa level-2
+ isis network point-to-point
+ isis hello-interval 1
+ isis hello-multiplier 10
+!
+int r2-eth1
+ ip address 10.0.2.1/24
+ ip router isis n2
+ isis circuit-type level-2-only
+ isis fast-reroute lfa level-2
+ isis network point-to-point
+ isis hello-interval 1
+ isis hello-multiplier 10
+!
+router bgp 65002
+ no bgp ebgp-requires-policy
+ neighbor 10.0.0.1 remote-as external
+ neighbor 10.0.2.2 remote-as internal
+ address-family ipv4 unicast
+  neighbor 10.0.0.1 route-map igp out
+ exit-address-family
+!
+router isis n2
+ is-type level-2-only
+ net 49.0001.0000.0000.0002.00
+ lsp-mtu 1440
+exit
+!
+route-map igp permit 10
+ set metric igp
+exit
diff --git a/tests/topotests/bgp_set_metric_igp/r3/frr.conf b/tests/topotests/bgp_set_metric_igp/r3/frr.conf
new file mode 100644 (file)
index 0000000..312f97d
--- /dev/null
@@ -0,0 +1,38 @@
+!
+int r3-eth0
+ ip address 10.0.1.2/24
+ ip router isis n3
+ isis circuit-type level-2-only
+ isis fast-reroute lfa level-2
+ isis network point-to-point
+ isis hello-interval 1
+ isis hello-multiplier 10
+!
+int r3-eth1
+ ip address 10.0.3.1/24
+ ip router isis n3
+ isis circuit-type level-2-only
+ isis fast-reroute lfa level-2
+ isis metric level-1 10
+ isis metric level-2 100
+ isis network point-to-point
+ isis hello-interval 1
+ isis hello-multiplier 10
+!
+router bgp 65002
+ no bgp ebgp-requires-policy
+ neighbor 10.0.1.1 remote-as external
+ neighbor 10.0.3.2 remote-as internal
+ address-family ipv4 unicast
+  neighbor 10.0.1.1 route-map igp out
+ exit-address-family
+!
+router isis n3
+ is-type level-2-only
+ net 49.0001.0000.0000.0003.00
+ lsp-mtu 1440
+exit
+!
+route-map igp permit 10
+ set metric igp
+exit
diff --git a/tests/topotests/bgp_set_metric_igp/r4/frr.conf b/tests/topotests/bgp_set_metric_igp/r4/frr.conf
new file mode 100644 (file)
index 0000000..04165b8
--- /dev/null
@@ -0,0 +1,41 @@
+!
+int r4-eth0
+ ip address 10.0.2.2/24
+ ip router isis n4
+ isis circuit-type level-2-only
+ isis fast-reroute lfa level-2
+ isis network point-to-point
+ isis hello-interval 1
+ isis hello-multiplier 10
+!
+int r4-eth1
+ ip address 10.0.3.2/24
+ ip router isis n4
+ isis circuit-type level-2-only
+ isis fast-reroute lfa level-2
+ isis metric level-1 10
+ isis metric level-2 100
+ isis network point-to-point
+ isis hello-interval 1
+ isis hello-multiplier 10
+!
+int r4-eth2
+ ip address 10.0.4.1/24
+ ip router isis n4
+ isis circuit-type level-2-only
+ isis fast-reroute lfa level-2
+ isis network point-to-point
+ isis hello-interval 1
+ isis hello-multiplier 10
+!
+router bgp 65002
+ no bgp ebgp-requires-policy
+ neighbor 10.0.2.1 remote-as internal
+ neighbor 10.0.3.1 remote-as internal
+ neighbor 10.0.4.2 remote-as external
+!
+router isis n4
+ is-type level-2-only
+ net 49.0001.0000.0000.0004.00
+ lsp-mtu 1440
+exit
diff --git a/tests/topotests/bgp_set_metric_igp/r5/frr.conf b/tests/topotests/bgp_set_metric_igp/r5/frr.conf
new file mode 100644 (file)
index 0000000..af23677
--- /dev/null
@@ -0,0 +1,14 @@
+!
+int r5-eth0
+ ip address 10.0.4.2/24
+!
+router bgp 65005
+ no bgp ebgp-requires-policy
+ no bgp network import-check
+ neighbor 10.0.4.1 remote-as external
+ neighbor 10.0.4.1 timers 1 3
+ neighbor 10.0.4.1 timers connect 1
+ address-family ipv4 unicast
+  network 10.5.5.5/32
+ exit-address-family
+!
diff --git a/tests/topotests/bgp_set_metric_igp/test_bgp_set_metric_igp.py b/tests/topotests/bgp_set_metric_igp/test_bgp_set_metric_igp.py
new file mode 100644 (file)
index 0000000..8fbe817
--- /dev/null
@@ -0,0 +1,146 @@
+#!/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
+
+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
+
+pytestmark = [pytest.mark.bgpd]
+
+
+def setup_module(mod):
+    topodef = {
+        "s1": ("r1", "r2"),
+        "s2": ("r1", "r3"),
+        "s3": ("r2", "r4"),
+        "s4": ("r3", "r4"),
+        "s5": ("r4", "r5"),
+    }
+    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_set_metric_igp():
+    tgen = get_topogen()
+
+    if tgen.routers_have_failure():
+        pytest.skip(tgen.errors)
+
+    r1 = tgen.gears["r1"]
+    r2 = tgen.gears["r2"]
+
+    def _bgp_converge():
+        output = json.loads(r1.vtysh_cmd("show bgp ipv4 unicast json"))
+        expected = {
+            "routes": {
+                "10.5.5.5/32": [
+                    {
+                        "valid": True,
+                        "bestpath": True,
+                        "selectionReason": "MED",
+                        "metric": 20,
+                        "nexthops": [
+                            {
+                                "ip": "10.0.0.2",
+                                "hostname": "r2",
+                            }
+                        ],
+                    },
+                    {
+                        "valid": True,
+                        "bestpath": None,
+                        "metric": 110,
+                        "nexthops": [
+                            {
+                                "ip": "10.0.1.2",
+                                "hostname": "r3",
+                            }
+                        ],
+                    },
+                ]
+            }
+        }
+        return topotest.json_cmp(output, expected)
+
+    test_func = functools.partial(
+        _bgp_converge,
+    )
+    _, result = topotest.run_and_expect(test_func, None, count=120, wait=5)
+    assert result is None, "10.5.5.5/32 best path is not via r2 (MED == 20)"
+
+    r2.vtysh_cmd(
+        """
+configure terminal
+interface r2-eth1
+ isis metric level-2 6000
+"""
+    )
+
+    def _bgp_converge_after_isis_metric_changes():
+        output = json.loads(r1.vtysh_cmd("show bgp ipv4 unicast json"))
+        expected = {
+            "routes": {
+                "10.5.5.5/32": [
+                    {
+                        "valid": True,
+                        "bestpath": None,
+                        "metric": 6010,
+                        "nexthops": [
+                            {
+                                "ip": "10.0.0.2",
+                                "hostname": "r2",
+                            }
+                        ],
+                    },
+                    {
+                        "valid": True,
+                        "bestpath": True,
+                        "selectionReason": "MED",
+                        "metric": 110,
+                        "nexthops": [
+                            {
+                                "ip": "10.0.1.2",
+                                "hostname": "r3",
+                            }
+                        ],
+                    },
+                ]
+            }
+        }
+        return topotest.json_cmp(output, expected)
+
+    test_func = functools.partial(
+        _bgp_converge_after_isis_metric_changes,
+    )
+    _, result = topotest.run_and_expect(test_func, None, count=120, wait=5)
+    assert result is None, "10.5.5.5/32 best path is not via r3 (MED == 110)"
+
+
+if __name__ == "__main__":
+    args = ["-s"] + sys.argv[1:]
+    sys.exit(pytest.main(args))