Fix unittest of encryption_types_client

Replace the data of FAKE_CREATE_ENCRYPTION_TYPE and
FAKE_INFO_ENCRYPTION_TYPE as the API document described

Change-Id: I892e27c4219da956c452fda067ee5fef08295c30
Closes-Bug: #1836133
This commit is contained in:
wanglbj 2019-07-15 12:29:00 +08:00
parent d605315e7f
commit 802a2b101b
1 changed files with 17 additions and 18 deletions

View File

@ -20,17 +20,16 @@ from tempest.tests.lib.services import base
class TestEncryptionTypesClient(base.BaseServiceTest):
FAKE_CREATE_ENCRYPTION_TYPE = {
"encryption": {
"id": "cbc36478b0bd8e67e89",
"name": "FakeEncryptionType",
"type": "fakeType",
"volume_type_id": "cbc36478b0bd8e67e89",
"control_location": "front-end",
"encryption_id": "81e069c6-7394-4856-8df7-3b237ca61f74",
"key_size": 128,
"provider": "LuksEncryptor",
"cipher": "aes-xts-plain64",
"key_size": "512",
"control_location": "front-end"
"cipher": "aes-xts-plain64"
}
}
UPDATE_ENCRYPTION_TYPE = {
FAKE_UPDATE_ENCRYPTION_TYPE = {
"encryption": {
"key_size": 64,
"provider": "LuksEncryptor",
@ -40,16 +39,16 @@ class TestEncryptionTypesClient(base.BaseServiceTest):
}
FAKE_INFO_ENCRYPTION_TYPE = {
"encryption": {
"name": "FakeEncryptionType",
"type": "fakeType",
"description": "test_description",
"volume_type": "fakeType",
"provider": "LuksEncryptor",
"cipher": "aes-xts-plain64",
"key_size": "512",
"control_location": "front-end"
}
"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 = {
@ -119,5 +118,5 @@ class TestEncryptionTypesClient(base.BaseServiceTest):
self.check_service_client_function(
self.client.update_encryption_type,
'tempest.lib.common.rest_client.RestClient.put',
self.UPDATE_ENCRYPTION_TYPE,
self.FAKE_UPDATE_ENCRYPTION_TYPE,
bytes_body, volume_type_id="cbc36478b0bd8e67e89")