From bed78300674d7fc91eeca73fac25ee7ab056346b Mon Sep 17 00:00:00 2001 From: Ethan Lynn Date: Wed, 11 Apr 2018 10:33:58 +0800 Subject: Add test_post_exist for GetDeleteVolumeView Add test_post_exist Change-Id: I3f4856865913802abfae63926a501d386ba22c6c Issue-ID: MULTICLOUD-199 Signed-off-by: Ethan Lynn --- vio/vio/tests/test_volume_view.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/vio/vio/tests/test_volume_view.py b/vio/vio/tests/test_volume_view.py index b996994..115cb99 100644 --- a/vio/vio/tests/test_volume_view.py +++ b/vio/vio/tests/test_volume_view.py @@ -121,3 +121,29 @@ class TestCreateListVolumeView(unittest.TestCase): ret = self.view.get( mock.Mock(query_params=[]), "vmware_nova", "tenant1") self.assertEqual(500, ret.status_code) + + @mock.patch.object(OperateVolume.OperateVolume, "get_vim_volumes") + @mock.patch.object(OperateVolume.OperateVolume, "get_vim_volume") + @mock.patch.object(extsys, "get_vim_by_id") + def test_post_exist(self, mock_getvim, mock_getvol, mock_getvols): + 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 + mock_getvols.return_value = [vol] + req = mock.Mock() + req.body = { + "vol-name" + } + ret = self.view.get( + mock.Mock(query_params=[]), "vmware_nova", "tenant1") + self.assertEqual(200, ret.status_code) -- cgit 1.2.3-korg