Addressed issue with test when replicated networks are configured on the pod. 77/56277/1
authorspisarski <s.pisarski@cablelabs.com>
Mon, 23 Apr 2018 14:06:26 +0000 (08:06 -0600)
committerspisarski <s.pisarski@cablelabs.com>
Mon, 23 Apr 2018 14:06:26 +0000 (08:06 -0600)
According to the defect, "neutron OVS agent uses a replicated network for DVR."

JIRA: SNAPS-305

Change-Id: I3ceb94582d74a297f5ff41520ffe4e9f5e638266
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
snaps/openstack/tests/create_router_tests.py

index 30cf31e..382af80 100644 (file)
@@ -413,13 +413,18 @@ class CreateRouterSuccessTests(OSIntegrationTestCase):
 
         self.assertIsNotNone(ext_net)
         self.assertIsNotNone(router.port_subnets)
+
+        id_found = False
         for port, subnets in router.port_subnets:
             self.assertIsNotNone(subnets)
             self.assertIsNotNone(port)
-            self.assertEqual(ext_net.id, port.network_id)
-            for subnet in subnets:
-                self.assertIsNotNone(subnet)
-                self.assertEqual(ext_net.id, subnet.network_id)
+
+            if ext_net.id == port.network_id:
+                id_found = True
+                for subnet in subnets:
+                    self.assertIsNotNone(subnet)
+                    self.assertEqual(ext_net.id, subnet.network_id)
+        self.assertTrue(id_found)
 
     def check_router_recreation(self, router, orig_settings):
         """