summaryrefslogtreecommitdiffstats
path: root/vio/vio/tests/test_volume_view.py
blob: b996994d7fa7b870a637974427b842f7bb20c7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# 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)

    @mock.patch.object(OperateVolume.OperateVolume, "get_vim_volume")
    @mock.patch.object(extsys, "get_vim_by_id")
    def test_get_fail(self, mock_getvim, mock_getvol):
        mock_getvim.return_value = {
            "tenant": "tenant-id"
        }
        mock_getvol.side_effect = [Exception("error here")]
        ret = self.view.get(mock.Mock(), "vmware_nova", "tenant1", "vol-1")
        self.assertEqual(500, ret.status_code)

    @mock.patch.object(OperateVolume.OperateVolume, "delete_vim_volume")
    @mock.patch.object(extsys, "get_vim_by_id")
    def test_delete(self, mock_getvim, mock_delvol):
        mock_getvim.return_value = {
            "tenant": "tenant-id"
        }
        mock_delvol.return_value = None
        ret = self.view.delete(mock.Mock(), "vmware_nova", "tenant1", "vol-1")
        self.assertEqual(204, ret.status_code)

    @mock.patch.object(OperateVolume.OperateVolume, "delete_vim_volume")
    @mock.patch.object(extsys, "get_vim_by_id")
    def test_delete_fail(self, mock_getvim, mock_delvol):
        mock_getvim.return_value = {
            "tenant": "tenant-id"
        }
        mock_delvol.side_effect = [Exception("error")]
        ret = self.view.delete(mock.Mock(), "vmware_nova", "tenant1", "vol-1")
        self.assertEqual(500, ret.status_code)


class TestCreateListVolumeView(unittest.TestCase):

    def setUp(self):
        self.view = views.CreateListVolumeView()

    @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_get(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]
        ret = self.view.get(
            mock.Mock(query_params=[]), "vmware_nova", "tenant1")
        self.assertEqual(200, 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_get_fail(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.side_effect = [Exception("error")]
        mock_getvols.return_value = [vol]
        ret = self.view.get(
            mock.Mock(query_params=[]), "vmware_nova", "tenant1")
        self.assertEqual(500, ret.status_code)