tempest/tempest/tests/lib/services/volume/v3/test_encryption_types_clien...

123 lines
4.6 KiB
Python

# Copyright 2016 NEC 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.services.volume.v3 import encryption_types_client
from tempest.tests.lib import fake_auth_provider
from tempest.tests.lib.services import base
class TestEncryptionTypesClient(base.BaseServiceTest):
FAKE_CREATE_ENCRYPTION_TYPE = {
"encryption": {
"volume_type_id": "2d29462d-76cb-417c-8a9f-fb23140f1577",
"control_location": "front-end",
"encryption_id": "81e069c6-7394-4856-8df7-3b237ca61f74",
"key_size": 128,
"provider": "luks",
"cipher": "aes-xts-plain64"
}
}
FAKE_UPDATE_ENCRYPTION_TYPE = {
"encryption": {
"key_size": 64,
"provider": "LuksEncryptor",
"control_location": "front-end",
"cipher": "aes-xts-plain64"
}
}
FAKE_INFO_ENCRYPTION_TYPE = {
"volume_type_id": "cbc36478b0bd8e67e89",
"control_location": "front-end",
"deleted": False,
"created_at": "2015-08-27T09:49:58-05:00",
"updated_at": "2015-08-29T09:49:58-05:00",
"encryption_id": "81e069c6-7394-4856-8df7-3b237ca61f74",
"key_size": 128,
"provider": "LuksEncryptor",
"deleted_at": "2015-08-30T09:49:58-05:00",
"cipher": "aes-xts-plain64"
}
FAKE_ENCRYPTION_SPECS_ITEM = {
"cipher": "aes-xts-plain64"
}
def setUp(self):
super(TestEncryptionTypesClient, self).setUp()
fake_auth = fake_auth_provider.FakeAuthProvider()
self.client = encryption_types_client.EncryptionTypesClient(
fake_auth, 'volume', 'regionOne')
def _test_create_encryption(self, bytes_body=False):
self.check_service_client_function(
self.client.create_encryption_type,
'tempest.lib.common.rest_client.RestClient.post',
self.FAKE_CREATE_ENCRYPTION_TYPE,
bytes_body, volume_type_id="cbc36478b0bd8e67e89")
def _test_show_encryption_type(self, bytes_body=False):
self.check_service_client_function(
self.client.show_encryption_type,
'tempest.lib.common.rest_client.RestClient.get',
self.FAKE_INFO_ENCRYPTION_TYPE,
bytes_body, volume_type_id="cbc36478b0bd8e67e89")
def _test_show_encryption_specs_item(self, bytes_body=False):
self.check_service_client_function(
self.client.show_encryption_specs_item,
'tempest.lib.common.rest_client.RestClient.get',
self.FAKE_ENCRYPTION_SPECS_ITEM,
bytes_body, volume_type_id="cbc36478b0bd8e67e89", key="cipher")
def test_create_encryption_type_with_str_body(self):
self._test_create_encryption()
def test_create_encryption_type_with_bytes_body(self):
self._test_create_encryption(bytes_body=True)
def test_show_encryption_type_with_str_body(self):
self._test_show_encryption_type()
def test_show_encryption_type_with_bytes_body(self):
self._test_show_encryption_type(bytes_body=True)
def test_show_encryption_specs_item_with_str_body(self):
self._test_show_encryption_specs_item()
def test_show_encryption_specs_item_with_bytes_body(self):
self._test_show_encryption_specs_item(bytes_body=True)
def test_delete_encryption_type(self):
self.check_service_client_function(
self.client.delete_encryption_type,
'tempest.lib.common.rest_client.RestClient.delete',
{},
volume_type_id="cbc36478b0bd8e67e89",
status=202)
def test_update_encryption_type_with_str_body(self):
self._test_update_encryption_type()
def test_update_encryption_type_with_bytes_body(self):
self._test_update_encryption_type(bytes_body=True)
def _test_update_encryption_type(self, bytes_body=False):
self.check_service_client_function(
self.client.update_encryption_type,
'tempest.lib.common.rest_client.RestClient.put',
self.FAKE_UPDATE_ENCRYPTION_TYPE,
bytes_body, volume_type_id="cbc36478b0bd8e67e89")