summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEthan Lynn <ethanlynnl@vmware.com>2018-04-11 10:12:17 +0800
committerEthan Lynn <ethanlynnl@vmware.com>2018-04-11 10:13:37 +0800
commit962bcb07625220a2d5cf0728db8114974c820339 (patch)
treeb0ea47155156c8015549c8f5e6c2630c2adc261a
parent936214eebad3047e51a76f9b1c183be3199d4cee (diff)
Add test_get for volume view
Add test_get Change-Id: I4f514cfcc00d310f7ab140fcf2364147978eafdc Issue-ID: MULTICLOUD-199 Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
-rw-r--r--vio/vio/tests/test_volume_view.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/vio/vio/tests/test_volume_view.py b/vio/vio/tests/test_volume_view.py
new file mode 100644
index 0000000..90f4bda
--- /dev/null
+++ b/vio/vio/tests/test_volume_view.py
@@ -0,0 +1,43 @@
+# Copyright (c) 2018 VMware, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+import mock
+import unittest
+
+from vio.pub.msapi import extsys
+from vio.swagger.views.volume import views
+from vio.pub.vim.vimapi.cinder import OperateVolume
+
+
+class TestGetDeleteVolumeView(unittest.TestCase):
+
+ def setUp(self):
+ self.view = views.GetDeleteVolumeView()
+
+ @mock.patch.object(OperateVolume.OperateVolume, "get_vim_volume")
+ @mock.patch.object(extsys, "get_vim_by_id")
+ def test_get(self, mock_getvim, mock_getvol):
+ mock_getvim.return_value = {
+ "tenant": "tenant-id"
+ }
+ vol = mock.Mock()
+ vol.attachments = []
+ vol.id = "vol-id"
+ vol.name = "vol-name"
+ vol.created_at = "create time"
+ vol.status = "ok"
+ vol.volume_type = "vmdk"
+ vol.size = 1
+ vol.availability_zone = "nova"
+ mock_getvol.return_value = vol
+ ret = self.view.get(mock.Mock(), "vmware_nova", "tenant1", "vol-1")
+ self.assertEqual(200, ret.status_code)