]> git.puffer.fish Git - mirror/frr.git/commitdiff
tests: bgp_evpn_rt5 reformat configuration commands
authorLouis Scalbert <louis.scalbert@6wind.com>
Wed, 23 Apr 2025 11:39:13 +0000 (13:39 +0200)
committerLouis Scalbert <louis.scalbert@6wind.com>
Thu, 24 Apr 2025 08:35:22 +0000 (10:35 +0200)
Reformat configuration commands in human readable style.

Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py

index 7a192567c69203096e5604ab95ebb237de5b2e92..2a95d2a6298171b8a9dc4a27258c46a3c656d2f3 100644 (file)
@@ -387,11 +387,11 @@ def test_evpn_disable_routemap():
 
     tgen.gears["r2"].vtysh_cmd(
         """
-        configure terminal\n
-        router bgp 65000 vrf vrf-101\n
-        address-family l2vpn evpn\n
-        advertise ipv4 unicast\n
-        advertise ipv6 unicast\n
+configure terminal
+ router bgp 65000 vrf vrf-101
+  address-family l2vpn evpn
+   advertise ipv4 unicast
+   advertise ipv6 unicast
         """
     )
     router = tgen.gears["r1"]
@@ -684,7 +684,12 @@ def test_evpn_multipath():
     _test_rmac_present(dut)
 
     # Enable dataplane logs in FRR
-    dut.vtysh_cmd("configure terminal\ndebug zebra dplane detailed\n")
+    dut.vtysh_cmd(
+        """
+configure terminal
+ debug zebra dplane detailed
+"""
+    )
 
     for i in range(4):
         peer = "192.168.0.2" if i % 2 == 0 else "192.168.99.2"
@@ -709,7 +714,12 @@ def test_evpn_multipath():
     if re.search(r"(MAC_DELETE|NEIGH_DELETE)", log):
         assert False, "MAC_DELETE or NEIGH_DELETE found in zebra log"
 
-    dut.vtysh_cmd("configure terminal\nno debug zebra dplane detailed\n")
+    dut.vtysh_cmd(
+        """
+configure terminal
+ no debug zebra dplane detailed
+"""
+    )
 
 
 def test_shutdown_multipath_check_next_hops():