almanach/almanach/tests/tempest/tests/api/test_volume_type_creation.py

37 lines
1.3 KiB
Python

# Copyright 2016 Internap.
#
# 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.
# See the License for the specific language governing permissions and
# limitations under the License.
from oslo_serialization import jsonutils as json
from almanach.tests.tempest.tests.api import base
class TestVolumeCreation(base.BaseAlmanachTest):
@classmethod
def resource_setup(cls):
super(TestVolumeCreation, cls).resource_setup()
def test_create_volume_type(self):
volume_type, (resp, response_body) = self.create_volume_type()
self.assertEqual(resp.status, 201)
resp, response_body = self.almanach_client.get_volume_type(volume_type['type_id'])
self.assertEqual(resp.status, 200)
response_body = json.loads(response_body)
self.assertIsInstance(response_body, dict)
self.assertEqual({'volume_type_id': volume_type['type_id'],
'volume_type_name': volume_type['type_name']}, response_body)