Merge "Replace curly quotes with straight quotes"
diff --git a/patrole_tempest_plugin/tests/api/volume/test_volume_types_rbac.py b/patrole_tempest_plugin/tests/api/volume/test_volume_types_rbac.py
new file mode 100644
index 0000000..a37661e
--- /dev/null
+++ b/patrole_tempest_plugin/tests/api/volume/test_volume_types_rbac.py
@@ -0,0 +1,50 @@
+# Copyright 2017 AT&T Corporation.
+# All Rights Reserved.
+#
+# 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 tempest.lib import decorators
+
+from patrole_tempest_plugin import rbac_rule_validation
+from patrole_tempest_plugin.tests.api.volume import rbac_base
+
+
+class VolumeTypesRbacTest(rbac_base.BaseVolumeRbacTest):
+
+ @decorators.idempotent_id('e2bbf968-d947-4a15-a4da-a98c3069731e')
+ @rbac_rule_validation.action(
+ service="cinder",
+ rule="volume_extension:types_manage")
+ def test_create_volume_type(self):
+ with self.rbac_utils.override_role(self):
+ self.create_volume_type()
+
+ @decorators.idempotent_id('2b74ac82-e03e-4801-86f3-d05c9acfd66b')
+ @rbac_rule_validation.action(
+ service="cinder",
+ rule="volume_extension:types_manage")
+ def test_update_volume_type(self):
+ volume_type = self.create_volume_type()
+ with self.rbac_utils.override_role(self):
+ self.volume_types_client.update_volume_type(
+ volume_type['id'], description='updated-description')
+
+ @decorators.idempotent_id('90aec0ef-4f9b-4170-be6b-a392c12540be')
+ @rbac_rule_validation.action(
+ service="cinder",
+ rule="volume_extension:types_manage")
+ def test_delete_volume_type(self):
+ volume_type = self.create_volume_type()
+ with self.rbac_utils.override_role(self):
+ self.volume_types_client.delete_volume_type(volume_type['id'])
+ self.volume_types_client.wait_for_resource_deletion(volume_type['id'])