summaryrefslogtreecommitdiffstats
path: root/vio
diff options
context:
space:
mode:
authorEthan Lynn <ethanlynnl@vmware.com>2018-06-13 14:14:09 +0800
committerEthan Lynn <ethanlynnl@vmware.com>2018-06-13 14:14:09 +0800
commita52cde8ff99196daa62963fe677fe3e1bc91d6bb (patch)
tree1fbeb8aa71a9e7e321436a418f6e05be7edc5c60 /vio
parentc752aeed6c0c8046f901c0d401e3da3ce76a029b (diff)
Add test_insert_dynamic_controller
Add test_insert_dynamic_controller Change-Id: I1eebe593bdd945bfd2b7ecf386960d1cab7e98c0 Issue-ID: MULTICLOUD-199 Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
Diffstat (limited to 'vio')
-rw-r--r--vio/vio/tests/test_apiv2_controller.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/vio/vio/tests/test_apiv2_controller.py b/vio/vio/tests/test_apiv2_controller.py
index e48f321..d48b769 100644
--- a/vio/vio/tests/test_apiv2_controller.py
+++ b/vio/vio/tests/test_apiv2_controller.py
@@ -17,6 +17,7 @@ from keystoneauth1.identity import v2 as keystone_v2
from keystoneauth1.identity import v3 as keystone_v3
from vio.api_v2.api_router import controller_builder as cb
+from vio.api_v2.api_router import v0_controller
from vio.pub.msapi import extsys
@@ -59,3 +60,12 @@ class TestAPIv2Controller(unittest.TestCase):
self.assertEqual(False, cb._property_exists(res, "dd", required=False))
self.assertRaises(
Exception, cb._property_exists, res, "dd", required=True)
+
+ def test_insert_dynamic_controller(self):
+ controller = v0_controller.V0_Controller()
+ cb.insert_dynamic_controller(controller)
+ self.assertEqual(True, hasattr(controller, "hosts"))
+ self.assertEqual(True, hasattr(controller, "images"))
+ self.assertEqual(True, hasattr(controller, "ports"))
+ self.assertEqual(True, hasattr(controller, "networks"))
+ self.assertEqual(True, hasattr(controller, "subnets"))