Merge "Create image using 'owner' parameter"
This commit is contained in:
commit
d8240a9505
@ -184,3 +184,13 @@ class BaseV2MemberImageTest(BaseV2ImageTest):
|
||||
disk_format='raw')
|
||||
self.addCleanup(self.client.delete_image, image['id'])
|
||||
return image['id']
|
||||
|
||||
|
||||
class BaseV2ImageAdminTest(BaseV2ImageTest):
|
||||
|
||||
credentials = ['admin', 'primary']
|
||||
|
||||
@classmethod
|
||||
def setup_clients(cls):
|
||||
super(BaseV2ImageAdminTest, cls).setup_clients()
|
||||
cls.admin_client = cls.os_admin.image_client_v2
|
||||
|
0
tempest/api/image/v2/admin/__init__.py
Normal file
0
tempest/api/image/v2/admin/__init__.py
Normal file
33
tempest/api/image/v2/admin/test_images.py
Normal file
33
tempest/api/image/v2/admin/test_images.py
Normal file
@ -0,0 +1,33 @@
|
||||
# Copyright 2018 Red Hat, Inc.
|
||||
# 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.api.image import base
|
||||
from tempest.lib.common.utils import data_utils
|
||||
from tempest.lib import decorators
|
||||
|
||||
|
||||
class BasicOperationsImagesAdminTest(base.BaseV2ImageAdminTest):
|
||||
|
||||
@decorators.related_bug('1420008')
|
||||
@decorators.idempotent_id('646a6eaa-135f-4493-a0af-12583021224e')
|
||||
def test_create_image_owner_param(self):
|
||||
# NOTE: Create image with owner different from tenant owner by
|
||||
# using "owner" parameter requires an admin privileges.
|
||||
random_id = data_utils.rand_uuid_hex()
|
||||
image = self.admin_client.create_image(
|
||||
container_format='bare', disk_format='raw', owner=random_id)
|
||||
self.addCleanup(self.admin_client.delete_image, image['id'])
|
||||
image_info = self.admin_client.show_image(image['id'])
|
||||
self.assertEqual(random_id, image_info['owner'])
|
Loading…
x
Reference in New Issue
Block a user