From 962bcb07625220a2d5cf0728db8114974c820339 Mon Sep 17 00:00:00 2001 From: Ethan Lynn Date: Wed, 11 Apr 2018 10:12:17 +0800 Subject: Add test_get for volume view Add test_get Change-Id: I4f514cfcc00d310f7ab140fcf2364147978eafdc Issue-ID: MULTICLOUD-199 Signed-off-by: Ethan Lynn --- vio/vio/tests/test_volume_view.py | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 vio/vio/tests/test_volume_view.py 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) -- cgit 1.2.3-korg