create volume type with repeated name

Test creating volume type with a repeated name will fail

Change-Id: Icfdad5c4c08e18771bf8ed5e8d3af37c3fb1f370
This commit is contained in:
wangzhiguang 2021-08-19 15:09:03 +08:00 committed by Wenping Song
parent ad2c3009ae
commit e6e95c6d70
1 changed files with 10 additions and 0 deletions

View File

@ -69,3 +69,13 @@ class VolumeTypesNegativeTest(base.BaseVolumeAdminTest):
self.assertRaises(
lib_exc.NotFound,
self.create_encryption_type, **create_kwargs)
@decorators.attr(type=['negative'])
@decorators.idempotent_id('969b10c7-3d77-4e1b-a4f2-2d265980f7e5')
def test_create_with_repeated_name(self):
"""Test creating volume type with a repeated name will fail"""
volume_type_name = self.create_volume_type()['name']
self.assertRaises(
lib_exc.Conflict,
self.admin_volume_types_client.create_volume_type,
name=volume_type_name)