c5949ccb28
This is a pretty invasive change :) A non complete list of changes: * Database Tables * Database Columns * Designate Objects and fields on Objects * Designate Objects Adaptors stop doing some of the renames * All RPCAPI versions are bumped - totally backward incompatable (function names have changed) Change-Id: Ib99e918998a3909fa4aa92bf1ee0475f8a519196
95 lines
3.1 KiB
Python
95 lines
3.1 KiB
Python
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Author: Kiall Mac Innes <kiall@hp.com>
|
|
#
|
|
# 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 oslo_log import log as logging
|
|
|
|
from designate import quota
|
|
from designate import tests
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class StorageQuotaTest(tests.TestCase):
|
|
def setUp(self):
|
|
super(StorageQuotaTest, self).setUp()
|
|
self.config(quota_driver='storage')
|
|
self.quota = quota.get_quota()
|
|
|
|
def test_set_quota_create(self):
|
|
context = self.get_admin_context()
|
|
context.all_tenants = True
|
|
|
|
quota = self.quota.set_quota(context, 'tenant_id', 'zones', 1500)
|
|
|
|
self.assertEqual({'zones': 1500}, quota)
|
|
|
|
# Drop into the storage layer directly to ensure the quota was created
|
|
# successfully
|
|
criterion = {
|
|
'tenant_id': 'tenant_id',
|
|
'resource': 'zones'
|
|
}
|
|
|
|
quota = self.quota.storage.find_quota(context, criterion)
|
|
|
|
self.assertEqual('tenant_id', quota['tenant_id'])
|
|
self.assertEqual('zones', quota['resource'])
|
|
self.assertEqual(1500, quota['hard_limit'])
|
|
|
|
def test_set_quota_update(self):
|
|
context = self.get_admin_context()
|
|
context.all_tenants = True
|
|
|
|
# First up, Create the quota
|
|
self.quota.set_quota(context, 'tenant_id', 'zones', 1500)
|
|
|
|
# Next, update the quota
|
|
self.quota.set_quota(context, 'tenant_id', 'zones', 1234)
|
|
|
|
# Drop into the storage layer directly to ensure the quota was updated
|
|
# successfully
|
|
criterion = {
|
|
'tenant_id': 'tenant_id',
|
|
'resource': 'zones'
|
|
}
|
|
|
|
quota = self.quota.storage.find_quota(context, criterion)
|
|
|
|
self.assertEqual('tenant_id', quota['tenant_id'])
|
|
self.assertEqual('zones', quota['resource'])
|
|
self.assertEqual(1234, quota['hard_limit'])
|
|
|
|
def test_reset_quotas(self):
|
|
context = self.get_admin_context()
|
|
context.all_tenants = True
|
|
|
|
# First up, Create a zones quota
|
|
self.quota.set_quota(context, 'tenant_id', 'zones', 1500)
|
|
|
|
# Then, Create a zone_records quota
|
|
self.quota.set_quota(context, 'tenant_id', 'zone_records', 800)
|
|
|
|
# Now, Reset the tenants quota
|
|
self.quota.reset_quotas(context, 'tenant_id')
|
|
|
|
# Drop into the storage layer directly to ensure the tenant has no
|
|
# specific quotas registed.
|
|
criterion = {
|
|
'tenant_id': 'tenant_id'
|
|
}
|
|
|
|
quotas = self.quota.storage.find_quotas(context, criterion)
|
|
self.assertEqual(0, len(quotas))
|