2013-10-22 17:46:41 +00:00
|
|
|
# Copyright 2011 OpenStack Foundation
|
|
|
|
# Copyright 2013 Rackspace Hosting
|
|
|
|
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
|
|
# 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.
|
|
|
|
|
Ignore fewer PEP8/flake8 rules
Reasons:
- code should be pythonicaly clean,
that is why number of ignored rules should reduced
Changes:
- E125, F811, H102, H103, F201, H23,
H302, F841, H301, H702, H703 rules are now enabled
Change-Id: Ibf4025162244d3c2f1278b49a76ec1527a729042
2013-12-10 18:49:20 +02:00
|
|
|
import mock
|
2014-01-13 17:04:50 +00:00
|
|
|
import testtools
|
|
|
|
|
2013-09-26 22:26:02 -07:00
|
|
|
from troveclient.v1 import limits
|
2013-02-25 21:18:51 -08:00
|
|
|
|
|
|
|
|
Ignore fewer PEP8/flake8 rules
Reasons:
- code should be pythonicaly clean,
that is why number of ignored rules should reduced
Changes:
- E125, F811, H102, H103, F201, H23,
H302, F841, H301, H702, H703 rules are now enabled
Change-Id: Ibf4025162244d3c2f1278b49a76ec1527a729042
2013-12-10 18:49:20 +02:00
|
|
|
class LimitsTest(testtools.TestCase):
|
2014-01-13 17:04:50 +00:00
|
|
|
"""This class tests the calling code for the Limits API."""
|
2013-02-25 21:18:51 -08:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(LimitsTest, self).setUp()
|
Ignore fewer PEP8/flake8 rules
Reasons:
- code should be pythonicaly clean,
that is why number of ignored rules should reduced
Changes:
- E125, F811, H102, H103, F201, H23,
H302, F841, H301, H702, H703 rules are now enabled
Change-Id: Ibf4025162244d3c2f1278b49a76ec1527a729042
2013-12-10 18:49:20 +02:00
|
|
|
self.limits = limits.Limits(mock.Mock())
|
|
|
|
self.limits.api.client = mock.Mock()
|
2013-02-25 21:18:51 -08:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
super(LimitsTest, self).tearDown()
|
|
|
|
|
2013-03-12 16:15:04 -07:00
|
|
|
def test_list(self):
|
Ignore fewer PEP8/flake8 rules
Reasons:
- code should be pythonicaly clean,
that is why number of ignored rules should reduced
Changes:
- E125, F811, H102, H103, F201, H23,
H302, F841, H301, H702, H703 rules are now enabled
Change-Id: Ibf4025162244d3c2f1278b49a76ec1527a729042
2013-12-10 18:49:20 +02:00
|
|
|
resp = mock.Mock()
|
2013-09-26 22:26:02 -07:00
|
|
|
resp.status_code = 200
|
2013-03-12 16:15:04 -07:00
|
|
|
body = {"limits":
|
|
|
|
[
|
|
|
|
{'maxTotalInstances': 55,
|
|
|
|
'verb': 'ABSOLUTE',
|
|
|
|
'maxTotalVolumes': 100},
|
|
|
|
{'regex': '.*',
|
|
|
|
'nextAvailable': '2011-07-21T18:17:06Z',
|
|
|
|
'uri': '*',
|
|
|
|
'value': 10,
|
|
|
|
'verb': 'POST',
|
|
|
|
'remaining': 2, 'unit': 'MINUTE'},
|
|
|
|
{'regex': '.*',
|
|
|
|
'nextAvailable': '2011-07-21T18:17:06Z',
|
|
|
|
'uri': '*',
|
|
|
|
'value': 10,
|
|
|
|
'verb': 'PUT',
|
|
|
|
'remaining': 2,
|
|
|
|
'unit': 'MINUTE'},
|
|
|
|
{'regex': '.*',
|
|
|
|
'nextAvailable': '2011-07-21T18:17:06Z',
|
|
|
|
'uri': '*',
|
|
|
|
'value': 10,
|
|
|
|
'verb': 'DELETE',
|
|
|
|
'remaining': 2,
|
|
|
|
'unit': 'MINUTE'},
|
|
|
|
{'regex': '.*',
|
|
|
|
'nextAvailable': '2011-07-21T18:17:06Z',
|
|
|
|
'uri': '*',
|
|
|
|
'value': 10,
|
|
|
|
'verb': 'GET',
|
|
|
|
'remaining': 2, 'unit': 'MINUTE'}]}
|
2013-02-25 21:18:51 -08:00
|
|
|
response = (resp, body)
|
|
|
|
|
Ignore fewer PEP8/flake8 rules
Reasons:
- code should be pythonicaly clean,
that is why number of ignored rules should reduced
Changes:
- E125, F811, H102, H103, F201, H23,
H302, F841, H301, H702, H703 rules are now enabled
Change-Id: Ibf4025162244d3c2f1278b49a76ec1527a729042
2013-12-10 18:49:20 +02:00
|
|
|
mock_get = mock.Mock(return_value=response)
|
2013-02-25 21:18:51 -08:00
|
|
|
self.limits.api.client.get = mock_get
|
2013-03-12 16:15:04 -07:00
|
|
|
self.assertIsNotNone(self.limits.list())
|
2013-02-25 21:18:51 -08:00
|
|
|
mock_get.assert_called_once_with("/limits")
|
|
|
|
|
2013-03-12 16:15:04 -07:00
|
|
|
def test_list_errors(self):
|
2013-02-25 21:18:51 -08:00
|
|
|
status_list = [400, 401, 403, 404, 408, 409, 413, 500, 501]
|
|
|
|
for status_code in status_list:
|
|
|
|
self._check_error_response(status_code)
|
|
|
|
|
|
|
|
def _check_error_response(self, status_code):
|
|
|
|
RESPONSE_KEY = "limits"
|
|
|
|
|
Ignore fewer PEP8/flake8 rules
Reasons:
- code should be pythonicaly clean,
that is why number of ignored rules should reduced
Changes:
- E125, F811, H102, H103, F201, H23,
H302, F841, H301, H702, H703 rules are now enabled
Change-Id: Ibf4025162244d3c2f1278b49a76ec1527a729042
2013-12-10 18:49:20 +02:00
|
|
|
resp = mock.Mock()
|
2013-09-26 22:26:02 -07:00
|
|
|
resp.status_code = status_code
|
2013-03-06 15:36:00 -08:00
|
|
|
body = {RESPONSE_KEY: {
|
|
|
|
'absolute': {},
|
|
|
|
'rate': [
|
2013-11-01 01:12:56 +01:00
|
|
|
{'limit': []}]}}
|
2013-02-25 21:18:51 -08:00
|
|
|
response = (resp, body)
|
|
|
|
|
Ignore fewer PEP8/flake8 rules
Reasons:
- code should be pythonicaly clean,
that is why number of ignored rules should reduced
Changes:
- E125, F811, H102, H103, F201, H23,
H302, F841, H301, H702, H703 rules are now enabled
Change-Id: Ibf4025162244d3c2f1278b49a76ec1527a729042
2013-12-10 18:49:20 +02:00
|
|
|
mock_get = mock.Mock(return_value=response)
|
2013-02-25 21:18:51 -08:00
|
|
|
self.limits.api.client.get = mock_get
|
2013-03-12 16:15:04 -07:00
|
|
|
self.assertRaises(Exception, self.limits.list)
|