diff options
Diffstat (limited to 'test/test_dhcp.py')
-rw-r--r-- | test/test_dhcp.py | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/test/test_dhcp.py b/test/test_dhcp.py index 833ee00a529..d1af9fd9e7d 100644 --- a/test/test_dhcp.py +++ b/test/test_dhcp.py @@ -360,6 +360,16 @@ class TestDHCP(VppTestCase): # not sure why this is not decoding # adv = pkt[DHCP6_Advertise] + def wait_for_no_route(self, address, length, + n_tries=50, s_time=1): + while (n_tries): + if not find_route(self, address, length): + return True + n_tries = n_tries - 1 + self.sleep(s_time) + + return False + def test_dhcp_proxy(self): """ DHCPv4 Proxy """ @@ -1535,15 +1545,10 @@ class TestDHCP(VppTestCase): is_add=0) # - # Sleep for the lease time - # - self.sleep(lease_time+1) - + # the route should be gone after the lease expires # - # And now the route should be gone - # - self.assertFalse(find_route(self, self.pg3.local_ip4, 32)) - self.assertFalse(find_route(self, self.pg3.local_ip4, 24)) + self.assertTrue(self.wait_for_no_route(self.pg3.local_ip4, 32)) + self.assertTrue(self.wait_for_no_route(self.pg3.local_ip4, 24)) # # remove the DHCP config |