X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_ip6.py;h=63d3e41f915d1783c2a530599ecbd8963687101c;hb=61717cc38;hp=f4b9ef8c647914bd1898e6756a3926dd9786c658;hpb=f267d11475d12975ca95cf2f5a61ad0f65ab9f45;p=vpp.git diff --git a/test/test_ip6.py b/test/test_ip6.py index f4b9ef8c647..63d3e41f915 100644 --- a/test/test_ip6.py +++ b/test/test_ip6.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 +import socket from socket import inet_pton, inet_ntop import unittest @@ -28,6 +29,7 @@ from vpp_ip_route import VppIpRoute, VppRoutePath, find_route, VppIpMRoute, \ from vpp_neighbor import find_nbr, VppNeighbor from vpp_pg_interface import is_ipv6_misc from vpp_sub_interface import VppSubInterface, VppDot1QSubint +from vpp_policer import VppPolicer from ipaddress import IPv6Network, IPv6Address AF_INET6 = socket.AF_INET6 @@ -959,7 +961,7 @@ class TestIPv6(TestIPv6ND): subitf.admin_up() subitf.config_ip6() - rxs = self.pg1._get_capture(timeout=2, filter_out_fn=None) + rxs = self.pg1._get_capture(timeout=4, filter_out_fn=None) # # hunt for the MLD on vlan 99 @@ -2118,8 +2120,8 @@ class TestIP6Punt(VppTestCase): # # add a policer # - policer = self.vapi.policer_add_del(b"ip6-punt", 400, 0, 10, 0, - rate_type=1) + policer = VppPolicer(self, "ip6-punt", 400, 0, 10, 0, rate_type=1) + policer.add_vpp_config() self.vapi.ip_punt_police(policer.policer_index, is_ip6=1) self.vapi.cli("clear trace") @@ -2139,8 +2141,7 @@ class TestIP6Punt(VppTestCase): # remove the policer. back to full rx # self.vapi.ip_punt_police(policer.policer_index, is_add=0, is_ip6=1) - self.vapi.policer_add_del(b"ip6-punt", 400, 0, 10, 0, - rate_type=1, is_add=0) + policer.remove_vpp_config() self.send_and_expect(self.pg0, pkts, self.pg1) #