Skip to content

Commit 149ce52

Browse files
camprodSteve Martinelli
authored andcommitted
Add functional tests for volume type list
add tests for `os volume type list` Change-Id: Icd874b9cfac9376cc410041806fac64f1ff0c59d
1 parent 7ee8608 commit 149ce52

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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 VolumeTypeTests(test.TestCase):
19+
"""Functional tests for volume type. """
20+
21+
NAME = uuid.uuid4().hex
22+
HEADERS = ['"Name"']
23+
FIELDS = ['name']
24+
25+
@classmethod
26+
def setUpClass(cls):
27+
opts = cls.get_show_opts(cls.FIELDS)
28+
raw_output = cls.openstack('volume type create ' + cls.NAME + opts)
29+
expected = cls.NAME + '\n'
30+
cls.assertOutput(expected, raw_output)
31+
32+
@classmethod
33+
def tearDownClass(cls):
34+
raw_output = cls.openstack('volume type delete ' + cls.NAME)
35+
cls.assertOutput('', raw_output)
36+
37+
def test_volume_type_list(self):
38+
opts = self.get_list_opts(self.HEADERS)
39+
raw_output = self.openstack('volume type list' + opts)
40+
self.assertIn(self.NAME, raw_output)

0 commit comments

Comments
 (0)