
Add the capability to get, update and reset to default quotas in network service. Change-Id: I3396e5ecac1379af927f0a99a3b0c4c995dcd283
85 lines
3.0 KiB
Python
85 lines
3.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# 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.
|
|
|
|
"""
|
|
test_quotas
|
|
----------------------------------
|
|
|
|
Functional tests for `shade` quotas methods.
|
|
"""
|
|
|
|
from shade import operator_cloud
|
|
from shade.tests import base
|
|
|
|
|
|
class TestComputeQuotas(base.TestCase):
|
|
|
|
def setUp(self):
|
|
super(TestComputeQuotas, self).setUp()
|
|
self.cloud = operator_cloud(cloud='devstack-admin')
|
|
if not self.cloud.has_service('compute'):
|
|
self.skipTest('compute service not supported by cloud')
|
|
|
|
def test_quotas(self):
|
|
'''Test quotas functionality'''
|
|
quotas = self.cloud.get_compute_quotas('demo')
|
|
cores = quotas['cores']
|
|
self.cloud.set_compute_quotas('demo', cores=cores + 1)
|
|
self.assertEqual(cores + 1,
|
|
self.cloud.get_compute_quotas('demo')['cores'])
|
|
self.cloud.delete_compute_quotas('demo')
|
|
self.assertEqual(cores, self.cloud.get_compute_quotas('demo')['cores'])
|
|
|
|
|
|
class TestVolumeQuotas(base.TestCase):
|
|
|
|
def setUp(self):
|
|
super(TestVolumeQuotas, self).setUp()
|
|
self.cloud = operator_cloud(cloud='devstack-admin')
|
|
if not self.cloud.has_service('volume'):
|
|
self.skipTest('volume service not supported by cloud')
|
|
|
|
def test_quotas(self):
|
|
'''Test quotas functionality'''
|
|
quotas = self.cloud.get_volume_quotas('demo')
|
|
volumes = quotas['volumes']
|
|
self.cloud.set_volume_quotas('demo', volumes=volumes + 1)
|
|
self.assertEqual(volumes + 1,
|
|
self.cloud.get_volume_quotas('demo')['volumes'])
|
|
self.cloud.delete_volume_quotas('demo')
|
|
self.assertEqual(volumes,
|
|
self.cloud.get_volume_quotas('demo')['volumes'])
|
|
|
|
|
|
class TestNetworkQuotas(base.TestCase):
|
|
|
|
def setUp(self):
|
|
super(TestNetworkQuotas, self).setUp()
|
|
self.cloud = operator_cloud(cloud='devstack-admin')
|
|
if not self.cloud.has_service('network'):
|
|
self.skipTest('network service not supported by cloud')
|
|
|
|
def test_quotas(self):
|
|
'''Test quotas functionality'''
|
|
quotas = self.cloud.get_network_quotas('demo')
|
|
network = quotas['network']
|
|
self.cloud.set_network_quotas('demo', network=network + 1)
|
|
self.assertEqual(network + 1,
|
|
self.cloud.get_network_quotas('demo')['network']
|
|
)
|
|
self.cloud.delete_network_quotas('demo')
|
|
self.assertEqual(network,
|
|
self.cloud.get_network_quotas('demo')['network']
|
|
)
|