test framework: vpp_papi_provider.py - further cleanup
Part of further cleanups of this file. Removed most wrappers that don't have conflicting signature with message API. Change-Id: I6acd93d20291feb7731eb35ab2eb8c9f22f4632c Signed-off-by: Ole Troan <ot@cisco.com>
This commit is contained in:
@ -804,9 +804,9 @@ class TestIPSubNets(VppTestCase):
|
||||
#
|
||||
ip_addr_n = socket.inet_pton(socket.AF_INET, "10.10.10.10")
|
||||
|
||||
self.vapi.sw_interface_add_del_address(self.pg0.sw_if_index,
|
||||
ip_addr_n,
|
||||
16)
|
||||
self.vapi.sw_interface_add_del_address(
|
||||
sw_if_index=self.pg0.sw_if_index, address=ip_addr_n,
|
||||
address_length=16)
|
||||
|
||||
pn = (Ether(src=self.pg1.remote_mac,
|
||||
dst=self.pg1.local_mac) /
|
||||
@ -823,10 +823,9 @@ class TestIPSubNets(VppTestCase):
|
||||
self.send_and_assert_no_replies(self.pg1, pb, "IP Broadcast address")
|
||||
|
||||
# remove the sub-net and we are forwarding via the cover again
|
||||
self.vapi.sw_interface_add_del_address(self.pg0.sw_if_index,
|
||||
ip_addr_n,
|
||||
16,
|
||||
is_add=0)
|
||||
self.vapi.sw_interface_add_del_address(
|
||||
sw_if_index=self.pg0.sw_if_index, address=ip_addr_n,
|
||||
address_length=16, is_add=0)
|
||||
self.pg1.add_stream(pn)
|
||||
self.pg_enable_capture(self.pg_interfaces)
|
||||
self.pg_start()
|
||||
@ -842,9 +841,9 @@ class TestIPSubNets(VppTestCase):
|
||||
#
|
||||
ip_addr_n = socket.inet_pton(socket.AF_INET, "10.10.10.10")
|
||||
|
||||
self.vapi.sw_interface_add_del_address(self.pg0.sw_if_index,
|
||||
ip_addr_n,
|
||||
31)
|
||||
self.vapi.sw_interface_add_del_address(
|
||||
sw_if_index=self.pg0.sw_if_index, address=ip_addr_n,
|
||||
address_length=31)
|
||||
|
||||
pn = (Ether(src=self.pg1.remote_mac,
|
||||
dst=self.pg1.local_mac) /
|
||||
@ -859,10 +858,9 @@ class TestIPSubNets(VppTestCase):
|
||||
rx[ARP]
|
||||
|
||||
# remove the sub-net and we are forwarding via the cover again
|
||||
self.vapi.sw_interface_add_del_address(self.pg0.sw_if_index,
|
||||
ip_addr_n,
|
||||
31,
|
||||
is_add=0)
|
||||
self.vapi.sw_interface_add_del_address(
|
||||
sw_if_index=self.pg0.sw_if_index, address=ip_addr_n,
|
||||
address_length=31, is_add=0)
|
||||
self.pg1.add_stream(pn)
|
||||
self.pg_enable_capture(self.pg_interfaces)
|
||||
self.pg_start()
|
||||
|
Reference in New Issue
Block a user