diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2021-01-04 18:55:12 -0500 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2021-01-08 18:14:40 +0000 |
commit | 23f41d789c54bd8d9b87db8cf43d0235c5699da4 (patch) | |
tree | 2582d61d74e63d6d8f546da7b01c756efbfe4428 /src/vnet/bonding/test/vpp_bond_interface.py | |
parent | 00c3f457d22b556a0e7a5e495072de7ec511cc2f (diff) |
tests: move bond tests to src/vnet/bonding/test
- Refactor make test code to be co-located with
the vpp feature source code.
Type: test
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Change-Id: I056717261553f6449f5fcd3611b6ae3895a00ba6
Diffstat (limited to 'src/vnet/bonding/test/vpp_bond_interface.py')
-rw-r--r-- | src/vnet/bonding/test/vpp_bond_interface.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/vnet/bonding/test/vpp_bond_interface.py b/src/vnet/bonding/test/vpp_bond_interface.py new file mode 100644 index 00000000000..60c1ac1557b --- /dev/null +++ b/src/vnet/bonding/test/vpp_bond_interface.py @@ -0,0 +1,52 @@ +from vpp_object import VppObject +from vpp_interface import VppInterface + + +class VppBondInterface(VppInterface): + """VPP bond interface.""" + + def __init__(self, test, mode, lb=0, numa_only=0, enable_gso=0, + use_custom_mac=0, mac_address='', id=0xFFFFFFFF): + + """ Create VPP Bond interface """ + super(VppBondInterface, self).__init__(test) + self.mode = mode + self.lb = lb + self.numa_only = numa_only + self.enable_gso = enable_gso + self.use_custom_mac = use_custom_mac + self.mac_address = mac_address + self.id = id + + def add_vpp_config(self): + r = self.test.vapi.bond_create2(self.mode, + self.lb, + self.numa_only, + self.enable_gso, + self.use_custom_mac, + self.mac_address, + self.id) + self.set_sw_if_index(r.sw_if_index) + + def remove_vpp_config(self): + self.test.vapi.bond_delete(self.sw_if_index) + + def add_member_vpp_bond_interface(self, + sw_if_index, + is_passive=0, + is_long_timeout=0): + self.test.vapi.bond_add_member(sw_if_index, + self.sw_if_index, + is_passive, + is_long_timeout) + + def detach_vpp_bond_interface(self, + sw_if_index): + self.test.vapi.bond_detach_member(sw_if_index) + + def is_interface_config_in_dump(self, dump): + for i in dump: + if i.sw_if_index == self.sw_if_index: + return True + else: + return False |