blob: 7d97ce251618460b48cc63863bc96cc5f8aa3415 [file] [log] [blame]
ZhiQiang Fan39f97222013-09-20 04:49:44 +08001# Copyright 2012 OpenStack Foundation
Rohit Karajgi07599c52012-11-02 05:35:16 -07002# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
Doug Hellmann583ce2c2015-03-11 14:55:46 +000016from oslo_log import log as logging
Matt Riedemann848805f2014-06-16 13:23:51 -070017import six
18from testtools import matchers
19
Sean Dague1937d092013-05-17 16:36:38 -040020from tempest.api.compute import base
Matt Riedemann848805f2014-06-16 13:23:51 -070021from tempest.common import tempest_fixtures as fixtures
Fei Long Wangd39431f2015-05-14 11:30:48 +120022from tempest.common.utils import data_utils
Haiwei Xuc367d912014-01-14 19:51:10 +090023from tempest import test
Sean Dague86bd8422013-12-20 09:56:44 -050024
Matt Riedemann848805f2014-06-16 13:23:51 -070025LOG = logging.getLogger(__name__)
26
Rohit Karajgi07599c52012-11-02 05:35:16 -070027
ivan-zhuf2b00502013-10-18 10:06:52 +080028class QuotasAdminTestJSON(base.BaseV2ComputeAdminTest):
Attila Fazekas430dae32013-10-17 15:19:32 +020029 force_tenant_isolation = True
Rohit Karajgi07599c52012-11-02 05:35:16 -070030
Matt Riedemann848805f2014-06-16 13:23:51 -070031 def setUp(self):
32 # NOTE(mriedem): Avoid conflicts with os-quota-class-sets tests.
33 self.useFixture(fixtures.LockFixture('compute_quotas'))
34 super(QuotasAdminTestJSON, self).setUp()
35
Rohit Karajgi07599c52012-11-02 05:35:16 -070036 @classmethod
Rohan Kanade60b73092015-02-04 17:58:19 +053037 def setup_clients(cls):
38 super(QuotasAdminTestJSON, cls).setup_clients()
39 cls.adm_client = cls.os_adm.quotas_client
40
41 @classmethod
Andrea Frittoli50bb80d2014-09-15 12:34:27 +010042 def resource_setup(cls):
43 super(QuotasAdminTestJSON, cls).resource_setup()
Attila Fazekas4ba36582013-02-12 08:26:17 +010044
Attila Fazekasf7f34f92013-08-01 17:01:44 +020045 # NOTE(afazekas): these test cases should always create and use a new
Attila Fazekas4ba36582013-02-12 08:26:17 +010046 # tenant most of them should be skipped if we can't do that
Andrea Frittoli9612e812014-03-13 10:57:26 +000047 cls.demo_tenant_id = cls.quotas_client.tenant_id
Rohit Karajgi07599c52012-11-02 05:35:16 -070048
Attila Fazekasd9aef1e2013-07-13 17:33:45 +020049 cls.default_quota_set = set(('injected_file_content_bytes',
50 'metadata_items', 'injected_files',
51 'ram', 'floating_ips',
52 'fixed_ips', 'key_pairs',
53 'injected_file_path_bytes',
54 'instances', 'security_group_rules',
55 'cores', 'security_groups'))
Rohit Karajgi07599c52012-11-02 05:35:16 -070056
Chris Hoge7579c1a2015-02-26 14:12:15 -080057 @test.idempotent_id('3b0a7c8f-cf58-46b8-a60c-715a32a8ba7d')
Rohit Karajgi07599c52012-11-02 05:35:16 -070058 def test_get_default_quotas(self):
Sean Dague4dd2c0b2013-01-03 17:50:28 -050059 # Admin can get the default resource quota set for a tenant
Attila Fazekasd9aef1e2013-07-13 17:33:45 +020060 expected_quota_set = self.default_quota_set | set(['id'])
Ken'ichi Ohmichif9868fc2015-06-17 02:36:06 +000061 quota_set = self.adm_client.show_default_quota_set(
ghanshyam52657872015-08-24 16:39:10 +090062 self.demo_tenant_id)['quota_set']
Attila Fazekasd9aef1e2013-07-13 17:33:45 +020063 self.assertEqual(quota_set['id'], self.demo_tenant_id)
Phil Day5f615392014-09-10 12:10:16 +000064 for quota in expected_quota_set:
65 self.assertIn(quota, quota_set.keys())
Rohit Karajgi07599c52012-11-02 05:35:16 -070066
Chris Hoge7579c1a2015-02-26 14:12:15 -080067 @test.idempotent_id('55fbe2bf-21a9-435b-bbd2-4162b0ed799a')
Rohit Karajgi07599c52012-11-02 05:35:16 -070068 def test_update_all_quota_resources_for_tenant(self):
Sean Dague4dd2c0b2013-01-03 17:50:28 -050069 # Admin can update all the resource quota limits for a tenant
Ken'ichi Ohmichif9868fc2015-06-17 02:36:06 +000070 default_quota_set = self.adm_client.show_default_quota_set(
ghanshyam52657872015-08-24 16:39:10 +090071 self.demo_tenant_id)['quota_set']
gengjh01ba9cc2013-06-15 10:14:48 +080072 new_quota_set = {'injected_file_content_bytes': 20480,
Rohit Karajgi07599c52012-11-02 05:35:16 -070073 'metadata_items': 256, 'injected_files': 10,
Michael Still9ac5bd02013-03-15 04:32:46 +110074 'ram': 10240, 'floating_ips': 20, 'fixed_ips': 10,
75 'key_pairs': 200, 'injected_file_path_bytes': 512,
76 'instances': 20, 'security_group_rules': 20,
77 'cores': 2, 'security_groups': 20}
Matt Riedemannbc8dbd32013-08-02 14:02:12 -070078 # Update limits for all quota resources
David Kranz3e4c28b2015-02-09 12:35:18 -050079 quota_set = self.adm_client.update_quota_set(
Matt Riedemannbc8dbd32013-08-02 14:02:12 -070080 self.demo_tenant_id,
gengjh01ba9cc2013-06-15 10:14:48 +080081 force=True,
ghanshyam52657872015-08-24 16:39:10 +090082 **new_quota_set)['quota_set']
gengjh01ba9cc2013-06-15 10:14:48 +080083
84 default_quota_set.pop('id')
Phil Day5f615392014-09-10 12:10:16 +000085 # NOTE(PhilDay) The following is safe as we're not updating these
86 # two quota values yet. Once the Nova change to add these is merged
87 # and the client updated to support them this can be removed
88 if 'server_groups' in default_quota_set:
89 default_quota_set.pop('server_groups')
90 if 'server_group_members' in default_quota_set:
91 default_quota_set.pop('server_group_members')
Matt Riedemannbc8dbd32013-08-02 14:02:12 -070092 self.addCleanup(self.adm_client.update_quota_set,
gengjh01ba9cc2013-06-15 10:14:48 +080093 self.demo_tenant_id, **default_quota_set)
Phil Day5f615392014-09-10 12:10:16 +000094 for quota in new_quota_set:
95 self.assertIn(quota, quota_set.keys())
Rohit Karajgi07599c52012-11-02 05:35:16 -070096
Attila Fazekasf7f34f92013-08-01 17:01:44 +020097 # TODO(afazekas): merge these test cases
Chris Hoge7579c1a2015-02-26 14:12:15 -080098 @test.idempotent_id('ce9e0815-8091-4abd-8345-7fe5b85faa1d')
Rohit Karajgi07599c52012-11-02 05:35:16 -070099 def test_get_updated_quotas(self):
Jamie Lennox15350172015-08-17 10:54:25 +1000100 # Verify that GET shows the updated quota set of project
101 project_name = data_utils.rand_name('cpu_quota_project')
102 project_desc = project_name + '-desc'
103 project = self.identity_utils.create_project(name=project_name,
104 description=project_desc)
105 project_id = project['id']
106 self.addCleanup(self.identity_utils.delete_project, project_id)
Rohit Karajgi07599c52012-11-02 05:35:16 -0700107
Jamie Lennox15350172015-08-17 10:54:25 +1000108 self.adm_client.update_quota_set(project_id, ram='5120')
109 quota_set = self.adm_client.show_quota_set(project_id)['quota_set']
Zhi Kun Liu27e154f2014-03-24 03:51:12 -0500110 self.assertEqual(5120, quota_set['ram'])
111
112 # Verify that GET shows the updated quota set of user
Ken'ichi Ohmichi4937f562015-03-23 00:15:01 +0000113 user_name = data_utils.rand_name('cpu_quota_user')
Zack Feldsteind8c5f7a2015-12-14 10:44:07 -0600114 password = data_utils.rand_password()
Zhi Kun Liu27e154f2014-03-24 03:51:12 -0500115 email = user_name + '@testmail.tm'
Jamie Lennox15350172015-08-17 10:54:25 +1000116 user = self.identity_utils.create_user(username=user_name,
117 password=password,
118 project=project,
119 email=email)
Zhi Kun Liu27e154f2014-03-24 03:51:12 -0500120 user_id = user['id']
Jamie Lennox15350172015-08-17 10:54:25 +1000121 self.addCleanup(self.identity_utils.delete_user, user_id)
Zhi Kun Liu27e154f2014-03-24 03:51:12 -0500122
Jamie Lennox15350172015-08-17 10:54:25 +1000123 self.adm_client.update_quota_set(project_id,
Zhi Kun Liu27e154f2014-03-24 03:51:12 -0500124 user_id=user_id,
125 ram='2048')
ghanshyam52657872015-08-24 16:39:10 +0900126 quota_set = self.adm_client.show_quota_set(
Jamie Lennox15350172015-08-17 10:54:25 +1000127 project_id, user_id=user_id)['quota_set']
Zhi Kun Liu27e154f2014-03-24 03:51:12 -0500128 self.assertEqual(2048, quota_set['ram'])
Attila Fazekasd9aef1e2013-07-13 17:33:45 +0200129
Chris Hoge7579c1a2015-02-26 14:12:15 -0800130 @test.idempotent_id('389d04f0-3a41-405f-9317-e5f86e3c44f0')
Yuiko Takada2209cf52014-02-27 12:03:49 +0000131 def test_delete_quota(self):
Jamie Lennox15350172015-08-17 10:54:25 +1000132 # Admin can delete the resource quota set for a project
133 project_name = data_utils.rand_name('ram_quota_project')
134 project_desc = project_name + '-desc'
135 project = self.identity_utils.create_project(name=project_name,
136 description=project_desc)
137 project_id = project['id']
138 self.addCleanup(self.identity_utils.delete_project, project_id)
139 quota_set_default = (self.adm_client.show_quota_set(project_id)
ghanshyam52657872015-08-24 16:39:10 +0900140 ['quota_set'])
Yuiko Takada2209cf52014-02-27 12:03:49 +0000141 ram_default = quota_set_default['ram']
142
Jamie Lennox15350172015-08-17 10:54:25 +1000143 self.adm_client.update_quota_set(project_id, ram='5120')
Yuiko Takada2209cf52014-02-27 12:03:49 +0000144
Jamie Lennox15350172015-08-17 10:54:25 +1000145 self.adm_client.delete_quota_set(project_id)
Yuiko Takada2209cf52014-02-27 12:03:49 +0000146
Jamie Lennox15350172015-08-17 10:54:25 +1000147 quota_set_new = self.adm_client.show_quota_set(project_id)['quota_set']
Yuiko Takada2209cf52014-02-27 12:03:49 +0000148 self.assertEqual(ram_default, quota_set_new['ram'])
149
rajalakshmi-ganesan1982c3c2013-01-10 14:56:45 +0530150
Matt Riedemann848805f2014-06-16 13:23:51 -0700151class QuotaClassesAdminTestJSON(base.BaseV2ComputeAdminTest):
Ken'ichi Ohmichi88363cb2015-11-19 08:00:54 +0000152 """Tests the os-quota-class-sets API to update default quotas."""
Matt Riedemann848805f2014-06-16 13:23:51 -0700153
154 def setUp(self):
155 # All test cases in this class need to externally lock on doing
156 # anything with default quota values.
157 self.useFixture(fixtures.LockFixture('compute_quotas'))
158 super(QuotaClassesAdminTestJSON, self).setUp()
159
160 @classmethod
Andrea Frittoli50bb80d2014-09-15 12:34:27 +0100161 def resource_setup(cls):
162 super(QuotaClassesAdminTestJSON, cls).resource_setup()
Matt Riedemann848805f2014-06-16 13:23:51 -0700163 cls.adm_client = cls.os_adm.quota_classes_client
164
165 def _restore_default_quotas(self, original_defaults):
166 LOG.debug("restoring quota class defaults")
David Kranz3e4c28b2015-02-09 12:35:18 -0500167 self.adm_client.update_quota_class_set(
ghanshyam52657872015-08-24 16:39:10 +0900168 'default', **original_defaults)['quota_class_set']
Matt Riedemann848805f2014-06-16 13:23:51 -0700169
Sean Daguee3e9da72014-07-09 07:11:59 -0400170 # NOTE(sdague): this test is problematic as it changes
171 # global state, and possibly needs to be part of a set of
172 # tests that get run all by themselves at the end under a
173 # 'danger' flag.
Chris Hoge7579c1a2015-02-26 14:12:15 -0800174 @test.idempotent_id('7932ab0f-5136-4075-b201-c0e2338df51a')
Matt Riedemann848805f2014-06-16 13:23:51 -0700175 def test_update_default_quotas(self):
176 LOG.debug("get the current 'default' quota class values")
ghanshyam52657872015-08-24 16:39:10 +0900177 body = (self.adm_client.show_quota_class_set('default')
178 ['quota_class_set'])
Matt Riedemann848805f2014-06-16 13:23:51 -0700179 self.assertIn('id', body)
180 self.assertEqual('default', body.pop('id'))
181 # restore the defaults when the test is done
182 self.addCleanup(self._restore_default_quotas, body.copy())
183 # increment all of the values for updating the default quota class
184 for quota, default in six.iteritems(body):
Sean Daguee3e9da72014-07-09 07:11:59 -0400185 # NOTE(sdague): we need to increment a lot, otherwise
zhufl0892cb22016-05-06 14:46:00 +0800186 # there is a real chance that we go from -1 (unlimited)
Sean Daguee3e9da72014-07-09 07:11:59 -0400187 # to a very small number which causes issues.
188 body[quota] = default + 100
Matt Riedemann848805f2014-06-16 13:23:51 -0700189 LOG.debug("update limits for the default quota class set")
ghanshyam52657872015-08-24 16:39:10 +0900190 update_body = self.adm_client.update_quota_class_set(
191 'default', **body)['quota_class_set']
Matt Riedemann848805f2014-06-16 13:23:51 -0700192 LOG.debug("assert that the response has all of the changed values")
193 self.assertThat(update_body.items(),
194 matchers.ContainsAll(body.items()))