|
| 1 | +# Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 2 | +# not use this file except in compliance with the License. You may obtain |
| 3 | +# a copy of the License at |
| 4 | +# |
| 5 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | +# |
| 7 | +# Unless required by applicable law or agreed to in writing, software |
| 8 | +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 9 | +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 10 | +# License for the specific language governing permissions and limitations |
| 11 | +# under the License. |
| 12 | + |
| 13 | +import uuid |
| 14 | + |
| 15 | +from functional.common import test |
| 16 | + |
| 17 | + |
| 18 | +class VolumeQosTests(test.TestCase): |
| 19 | + """Functional tests for volume qos. """ |
| 20 | + |
| 21 | + NAME = uuid.uuid4().hex |
| 22 | + HEADERS = ['Name'] |
| 23 | + FIELDS = ['id', 'name'] |
| 24 | + ID = None |
| 25 | + |
| 26 | + @classmethod |
| 27 | + def setUpClass(cls): |
| 28 | + opts = cls.get_show_opts(cls.FIELDS) |
| 29 | + raw_output = cls.openstack('volume qos create ' + cls.NAME + opts) |
| 30 | + cls.ID, name, rol = raw_output.split('\n') |
| 31 | + cls.assertOutput(cls.NAME, name) |
| 32 | + |
| 33 | + @classmethod |
| 34 | + def tearDownClass(cls): |
| 35 | + raw_output = cls.openstack('volume qos delete ' + cls.ID) |
| 36 | + cls.assertOutput('', raw_output) |
| 37 | + |
| 38 | + def test_volume_qos_list(self): |
| 39 | + opts = self.get_list_opts(self.HEADERS) |
| 40 | + raw_output = self.openstack('volume qos list' + opts) |
| 41 | + self.assertIn(self.NAME, raw_output) |
| 42 | + |
| 43 | + def test_volume_qos_show(self): |
| 44 | + opts = self.get_show_opts(self.FIELDS) |
| 45 | + raw_output = self.openstack('volume qos show ' + self.ID + opts) |
| 46 | + self.assertEqual(self.ID + "\n" + self.NAME + "\n", raw_output) |
| 47 | + |
| 48 | + def test_volume_qos_metadata(self): |
| 49 | + raw_output = self.openstack( |
| 50 | + 'volume qos set --property a=b --property c=d ' + self.ID) |
| 51 | + self.assertEqual("", raw_output) |
| 52 | + opts = self.get_show_opts(['name', 'specs']) |
| 53 | + raw_output = self.openstack('volume qos show ' + self.ID + opts) |
| 54 | + self.assertEqual(self.NAME + "\na='b', c='d'\n", raw_output) |
0 commit comments