Source code for compute.admin.test_flavors_access

# Copyright 2013 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.api.compute import base
from tempest.lib import decorators


[docs] class FlavorsAccessTestJSON(base.BaseV2ComputeAdminTest): """Tests Flavor Access API extension. Add and remove Flavor Access require admin privileges. """ @classmethod def resource_setup(cls): super(FlavorsAccessTestJSON, cls).resource_setup() # Non admin tenant ID cls.tenant_id = cls.flavors_client.tenant_id cls.ram = 512 cls.vcpus = 1 cls.disk = 10
[docs] @decorators.idempotent_id('ea2c2211-29fa-4db9-97c3-906d36fad3e0') def test_flavor_access_list_with_private_flavor(self): """Test listing flavor access for a private flavor Listing flavor access on a newly created private flavor will return an empty access list. """ # Test to make sure that flavor = self.create_flavor(ram=self.ram, vcpus=self.vcpus, disk=self.disk, is_public='False') flavor_access = (self.admin_flavors_client.list_flavor_access( flavor['id'])['flavor_access']) self.assertEmpty(flavor_access)
[docs] @decorators.idempotent_id('59e622f6-bdf6-45e3-8ba8-fedad905a6b4') def test_flavor_access_add_remove(self): """Test add/remove flavor access to a given project""" flavor = self.create_flavor(ram=self.ram, vcpus=self.vcpus, disk=self.disk, is_public='False') # Add flavor access to a tenant. resp_body = { "tenant_id": str(self.tenant_id), "flavor_id": str(flavor['id']), } add_body = (self.admin_flavors_client.add_flavor_access( flavor['id'], self.tenant_id)['flavor_access']) self.assertIn(resp_body, add_body) # The flavor is present in list. flavors = self.flavors_client.list_flavors(detail=True)['flavors'] self.assertIn(flavor['id'], map(lambda x: x['id'], flavors)) # Remove flavor access from a tenant. remove_body = (self.admin_flavors_client.remove_flavor_access( flavor['id'], self.tenant_id)['flavor_access']) self.assertNotIn(resp_body, remove_body) # The flavor is not present in list. flavors = self.flavors_client.list_flavors(detail=True)['flavors'] self.assertNotIn(flavor['id'], map(lambda x: x['id'], flavors))