make test: VPP-1288 fix from sw_if_index values 03/12703/2
authorKlement Sekera <ksekera@cisco.com>
Wed, 23 May 2018 18:22:20 +0000 (20:22 +0200)
committerDamjan Marion <dmarion.lists@gmail.com>
Wed, 23 May 2018 20:52:24 +0000 (20:52 +0000)
Change-Id: I80297e78d93d8cf0d347863e4d2fdb12ea9294ac
Signed-off-by: Klement Sekera <ksekera@cisco.com>
test/vpp_bond_interface.py
test/vpp_gre_interface.py

index 1c33e1c..4bd7cb8 100644 (file)
@@ -14,8 +14,6 @@ class VppBondInterface(VppInterface):
         self.lb = lb
         self.use_custom_mac = use_custom_mac
         self.mac_address = mac_address
-        self._sw_if_index = 0
-        super(VppBondInterface, self).__init__(test)
 
     def add_vpp_config(self):
         r = self.test.vapi.bond_create(self.mode,
@@ -23,6 +21,7 @@ class VppBondInterface(VppInterface):
                                        self.use_custom_mac,
                                        self.mac_address)
         self._sw_if_index = r.sw_if_index
+        super(VppBondInterface, self).__init__(self._test)
 
     def remove_vpp_config(self):
         self.test.vapi.bond_delete(self.sw_if_index)
index 91293c3..3de3e5c 100644 (file)
@@ -11,8 +11,6 @@ class VppGreInterface(VppInterface):
     def __init__(self, test, src_ip, dst_ip, outer_fib_id=0, type=0,
                  session=0):
         """ Create VPP GRE interface """
-        self._sw_if_index = 0
-        super(VppGreInterface, self).__init__(test)
         self._test = test
         self.t_src = src_ip
         self.t_dst = dst_ip
@@ -29,7 +27,8 @@ class VppGreInterface(VppInterface):
                                               session_id=self.t_session)
         self._sw_if_index = r.sw_if_index
         self.generate_remote_hosts()
-        self._test.registry.register(self, self._test.logger)
+        self.test.registry.register(self, self.test.logger)
+        super(VppGreInterface, self).__init__(self.test)
 
     def remove_vpp_config(self):
         s = socket.inet_pton(socket.AF_INET, self.t_src)
@@ -45,7 +44,7 @@ class VppGreInterface(VppInterface):
         return self.object_id()
 
     def object_id(self):
-        return "gre-%d" % self._sw_if_index
+        return "gre-%d" % self.sw_if_index
 
 
 class VppGre6Interface(VppInterface):
@@ -56,8 +55,6 @@ class VppGre6Interface(VppInterface):
     def __init__(self, test, src_ip, dst_ip, outer_fib_id=0, type=0,
                  session=0):
         """ Create VPP GRE interface """
-        self._sw_if_index = 0
-        super(VppGre6Interface, self).__init__(test)
         self._test = test
         self.t_src = src_ip
         self.t_dst = dst_ip
@@ -75,7 +72,8 @@ class VppGre6Interface(VppInterface):
                                               is_ip6=1)
         self._sw_if_index = r.sw_if_index
         self.generate_remote_hosts()
-        self._test.registry.register(self, self._test.logger)
+        self.test.registry.register(self, self.test.logger)
+        super(VppGre6Interface, self).__init__(self.test)
 
     def remove_vpp_config(self):
         s = socket.inet_pton(socket.AF_INET6, self.t_src)