
For other component such like cinder, the administrator could check the quota usage of tenant. Currently Manila retrieves the quota set information only with 'limit' property. This patch intends to enhance the API by return more properties ('in_use', 'limit', 'reserved') with new option '--detail'. Change-Id: Ibc0f9f65891b8e2a308358420d2c4dc3ea4697ce Implements: blueprint admin-check-tenant-quota-usage
87 lines
3.1 KiB
Python
87 lines
3.1 KiB
Python
# Copyright 2015 Mirantis 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.
|
|
|
|
import ddt
|
|
from tempest.lib import exceptions
|
|
|
|
from manilaclient.tests.functional import base
|
|
from manilaclient.tests.functional import utils
|
|
|
|
|
|
@ddt.ddt
|
|
class ManilaClientTestQuotasReadOnly(base.BaseTestCase):
|
|
|
|
def test_quota_class_show_by_admin(self):
|
|
roles = self.parser.listing(
|
|
self.clients['admin'].manila('quota-class-show', params='abc'))
|
|
self.assertTableStruct(roles, ('Property', 'Value'))
|
|
|
|
def test_quota_class_show_by_user(self):
|
|
self.assertRaises(
|
|
exceptions.CommandFailed,
|
|
self.clients['user'].manila,
|
|
'quota-class-show',
|
|
params='abc')
|
|
|
|
def _get_quotas(self, role, operation, microversion):
|
|
roles = self.parser.listing(self.clients[role].manila(
|
|
'quota-%s' % operation, microversion=microversion))
|
|
self.assertTableStruct(roles, ('Property', 'Value'))
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("1.0")
|
|
def test_quota_defaults_api_1_0(self, role):
|
|
self._get_quotas(role, "defaults", "1.0")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("2.0")
|
|
def test_quota_defaults_api_2_0(self, role):
|
|
self._get_quotas(role, "defaults", "2.0")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("2.6")
|
|
def test_quota_defaults_api_2_6(self, role):
|
|
self._get_quotas(role, "defaults", "2.6")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("2.7")
|
|
def test_quota_defaults_api_2_7(self, role):
|
|
self._get_quotas(role, "defaults", "2.7")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("1.0")
|
|
def test_quota_show_api_1_0(self, role):
|
|
self._get_quotas(role, "show", "1.0")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("2.0")
|
|
def test_quota_show_api_2_0(self, role):
|
|
self._get_quotas(role, "show", "2.0")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("2.6")
|
|
def test_quota_show_api_2_6(self, role):
|
|
self._get_quotas(role, "show", "2.6")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("2.7")
|
|
def test_quota_show_api_2_7(self, role):
|
|
self._get_quotas(role, "show", "2.7")
|
|
|
|
@ddt.data('admin', 'user')
|
|
@utils.skip_if_microversion_not_supported("2.25")
|
|
def test_quota_show_api_2_25(self, role):
|
|
self._get_quotas(role, "show --detail", "2.25")
|