summaryrefslogtreecommitdiffstats
path: root/tests/topotests/bgp_multiview_topo1
diff options
context:
space:
mode:
authorChristian Hopps <chopps@labn.net>2021-09-03 14:47:30 +0200
committerChristian Hopps <chopps@labn.net>2021-09-04 15:04:47 +0200
commita53c08bc131c02f4a20931d7aa9f974194ab16e7 (patch)
tree2c48ef7c757706d47ac5b999bf667166bc1c2e1a /tests/topotests/bgp_multiview_topo1
parenttests: cleanup - remove unused imports (diff)
downloadfrr-a53c08bc131c02f4a20931d7aa9f974194ab16e7.tar.xz
frr-a53c08bc131c02f4a20931d7aa9f974194ab16e7.zip
tests: cleanup: rerun changed files through black
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'tests/topotests/bgp_multiview_topo1')
-rw-r--r--tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py b/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py
index d32cbeb75..9c13c1c07 100644
--- a/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py
+++ b/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py
@@ -98,9 +98,7 @@ def build_topo(tgen):
peer = {}
for i in range(1, 9):
peer[i] = tgen.add_exabgp_peer(
- "peer%s" % i,
- ip="172.16.1.%s/24" % i,
- defaultRoute="via 172.16.1.254"
+ "peer%s" % i, ip="172.16.1.%s/24" % i, defaultRoute="via 172.16.1.254"
)
# First switch is for a dummy interface (for local network)
@@ -188,7 +186,9 @@ def test_bgp_converge():
break
else:
# Bail out with error if a router fails to converge
- bgpStatus = tgen.net["r%s" % i].cmd('vtysh -c "show ip bgp view %s summary"' % view)
+ bgpStatus = tgen.net["r%s" % i].cmd(
+ 'vtysh -c "show ip bgp view %s summary"' % view
+ )
assert False, "BGP did not converge:\n%s" % bgpStatus
tgen.routers_have_failure()
@@ -209,7 +209,10 @@ def test_bgp_routingTable():
json_file = "{}/{}/view_{}.json".format(thisDir, router.name, view)
expected = json.loads(open(json_file).read())
test_func = partial(
- topotest.router_json_cmp, router, "show ip bgp view {} json".format(view), expected
+ topotest.router_json_cmp,
+ router,
+ "show ip bgp view {} json".format(view),
+ expected,
)
_, result = topotest.run_and_expect(test_func, None, count=5, wait=1)
assertmsg = "Routing Table verification failed for router {}, view {}".format(