tests: add one more BSR check to pim_bsmp_01

This is implicitly checked by the "verify mroute" below, but it's much
more helpful to explicitly check in advance.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
David Lamparter 2021-09-23 15:04:24 +02:00
parent caef8f7961
commit 56be7c7ed1

View File

@ -848,6 +848,10 @@ def test_new_router_fwd_p0(request):
assert result is True, "Testcase {} :Failed \n Error {}".format(tc_name, result)
do_countdown(5)
step("Verify again if BSR is installed from bsm forwarded by i1")
result = verify_pim_bsr(tgen, topo, "l1", bsr_ip)
assert result is True, "Testcase {} :Failed \n Error {}".format(tc_name, result)
# Verify ip mroute populated again
step("Verify mroute again on l1 (lhr)")
result = verify_ip_mroutes(tgen, "l1", src_addr, GROUP_ADDRESS, iif, oil)