summaryrefslogtreecommitdiffstats
path: root/vio
diff options
context:
space:
mode:
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"))