1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
# Copyright 2021 Red Hat 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 manilaclient import api_versions
from manilaclient.api_versions import MAX_VERSION
from manilaclient.osc.v2 import share_limits as osc_share_limits
from manilaclient.tests.unit.osc.v2 import fakes as manila_fakes
class TestShareLimits(manila_fakes.TestShare):
def setUp(self):
super(TestShareLimits, self).setUp()
self.share_limits_mock = self.app.client_manager.share.limits
self.share_limits_mock.reset_mock()
self.app.client_manager.share.api_version = api_versions.APIVersion(
MAX_VERSION)
@ddt.ddt
class TestShareLimitsShow(TestShareLimits):
def setUp(self):
super(TestShareLimitsShow, self).setUp()
# Get the command object to test
self.cmd = osc_share_limits.ShareLimitsShow(self.app, None)
self.absolute_limit_columns = ["Name", "Value"]
self.rate_limit_columns = [
"Verb",
"Regex",
"URI",
"Value",
"Remaining",
"Unit",
"Next Available",
]
@ddt.data('absolute', 'rate')
def test_limits(self, limit_type):
share_limits = (
manila_fakes.FakeShareLimits.create_one_share_limit()
)
self.share_limits_mock.get.return_value = share_limits
expected_data = share_limits._info[f"{limit_type}_limit"]
arglist = []
verifylist = []
if limit_type == 'absolute':
arglist.append('--absolute')
verifylist.extend([
('absolute', True),
('rate', False)
])
else:
arglist.append('--rate')
verifylist.extend([
('absolute', False),
('rate', True)
])
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
actual_columns, actual_data = self.cmd.take_action(parsed_args)
self.assertEqual(getattr(self, f"{limit_type}_limit_columns"),
actual_columns)
if limit_type == 'rate':
expected_data_tuple = tuple(expected_data.values())
self.assertEqual(sorted(expected_data_tuple),
sorted(next(actual_data)))
else:
expected_data_tuple = tuple(expected_data.items())
self.assertEqual(sorted(expected_data_tuple),
sorted(actual_data))
|