Adding the option to set the zone quota to unlimited

by assigning negative value for the resource like -1

Change-Id: Iaeca2be8b38075e3e7e8f79621b4b41cbe9934f7
Closes-Bug: #1876198
This commit is contained in:
hamza alqtaishat 2020-05-07 17:31:18 +00:00 committed by Jens Harbott (frickler)
parent 1da9e434ad
commit 12d50c7f5b
4 changed files with 51 additions and 1 deletions

View File

@ -33,7 +33,9 @@ class Quota(DriverPlugin):
for resource, value in values.items():
if resource in quotas:
if value >= quotas[resource]:
# Setting the resource quota to a negative value will make
# the resource unlimited
if quotas[resource] >= 0 and value >= quotas[resource]:
raise exceptions.OverQuota()
else:
raise exceptions.QuotaResourceUnknown("%s is not a valid quota"

View File

@ -13,6 +13,8 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import mock
from testscenarios import load_tests_apply_scenarios as load_tests # noqa
import testtools
from oslo_config import cfg
@ -88,6 +90,46 @@ class QuotaTestCase(tests.TestCase):
'tenant_id',
zone_records=cfg.CONF.quota_zone_records)
def test_limit_check_unlimited(self):
context = self.get_admin_context()
self.quota.get_quotas = mock.Mock()
ret = {
'zones': -1,
'zone_recordsets': -1,
'zone_records': -1,
'recordset_records': -1,
'api_export_size': -1,
}
self.quota.get_quotas.return_value = ret
self.quota.limit_check(context, 'tenant_id', zones=99999)
self.quota.limit_check(context, 'tenant_id', zone_recordsets=99999)
self.quota.limit_check(context, 'tenant_id', zone_records=99999)
self.quota.limit_check(context, 'tenant_id', recordset_records=99999)
self.quota.limit_check(context, 'tenant_id', api_export_size=99999)
def test_limit_check_zero(self):
context = self.get_admin_context()
self.quota.get_quotas = mock.Mock()
ret = {
'zones': 0,
'zone_recordsets': 0,
'zone_records': 0,
'recordset_records': 0,
'api_export_size': 0,
}
self.quota.get_quotas.return_value = ret
with testtools.ExpectedException(exceptions.OverQuota):
self.quota.limit_check(context, 'tenant_id', zones=0)
with testtools.ExpectedException(exceptions.OverQuota):
self.quota.limit_check(context, 'tenant_id', zone_recordsets=0)
with testtools.ExpectedException(exceptions.OverQuota):
self.quota.limit_check(context, 'tenant_id', zone_records=0)
with testtools.ExpectedException(exceptions.OverQuota):
self.quota.limit_check(context, 'tenant_id',
recordset_records=0)
with testtools.ExpectedException(exceptions.OverQuota):
self.quota.limit_check(context, 'tenant_id', api_export_size=0)
def test_limit_check_over(self):
context = self.get_admin_context()

View File

@ -84,6 +84,7 @@ Update Quotas
.. http:patch:: /quotas/TENANT_ID
Updates the specified quota(s) to their new values.
Negative quota values mean unlimited.
**Example request:**

View File

@ -0,0 +1,5 @@
---
features:
- |
Allow the user to set resource quota to unlimited by assigning
a negative value to the resource quota value.