forked from HewlettPackard/hpe3par_python_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_HPE3ParClient_retry.py
96 lines (74 loc) · 3.35 KB
/
test_HPE3ParClient_retry.py
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
94
95
96
# (c) Copyright 2016 Hewlett Packard Enterprise Development LP
#
# 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 class of 3PAR Client handling WSAPI retries."""
import importlib
import mock
import requests
from test import HPE3ParClient_base as hpe3parbase
from hpe3parclient import exceptions
class HPE3ParClientRetryTestCase(hpe3parbase.HPE3ParClientBaseTestCase):
def setUp(self):
super(HPE3ParClientRetryTestCase, self).setUp()
def tearDown(self):
# NOTE(aorourke): We mock out the requests library's request method in
# order to force exceptions so we can test retry attempts. By doing
# this, we completely destroy the functionaility of requests.
# Therefore, after every unit test we run, we need to reimport the
# library to restore proper functionality or all future tests will
# fail. In Python 2.7 we must use the built in reload() method while
# in Python 3.4 we must use importlib.reload().
try:
reload(requests)
except NameError:
importlib.reload(requests)
super(HPE3ParClientRetryTestCase, self).tearDown()
def test_retry_exhaust_all_attempts_service_unavailable(self):
http = self.cl.http
# There should be 5 tries before anything is called.
self.assertEqual(http.tries, 5)
# The requests object needs to raise an exception in order for us
# to test the retry functionality.
requests.request = mock.Mock()
requests.request.side_effect = exceptions.HTTPServiceUnavailable(
"Maximum number of WSAPI connections reached.")
# This will take ~30 seconds to fail.
self.assertRaises(
exceptions.HTTPServiceUnavailable,
http.get,
'/volumes')
# There should be 0 tries left after the call.
self.assertEqual(http.tries, 0)
def test_retry_exhaust_all_attempts_connection_error(self):
http = self.cl.http
# There should be 5 tries before anything is called.
self.assertEqual(http.tries, 5)
# The requests object needs to raise an exception in order for us
# to test the retry functionality.
requests.request = mock.Mock()
requests.request.side_effect = requests.exceptions.ConnectionError(
"There was a connection error.")
# This will take ~30 seconds to fail.
self.assertRaises(
requests.exceptions.ConnectionError,
http.get,
'/volumes')
# There should be 0 tries left after the call.
self.assertEqual(http.tries, 0)
def test_no_retry(self):
http = self.cl.http
# There should be 5 tries before anything is called.
self.assertEqual(http.tries, 5)
http.get('/volumes')
# There should be 5 tries left after the call.
self.assertEqual(http.tries, 5)