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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
|
# Copyright (c) 2010 Robert Mela
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish, dis-
# tribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the fol-
# lowing conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
from tests.compat import mock, unittest
import datetime
import hashlib
import hmac
import locale
import time
import boto.utils
from boto.utils import Password
from boto.utils import pythonize_name
from boto.utils import _build_instance_metadata_url
from boto.utils import get_instance_userdata
from boto.utils import retry_url
from boto.utils import LazyLoadMetadata
from boto.compat import json, _thread
@unittest.skip("http://bugs.python.org/issue7980")
class TestThreadImport(unittest.TestCase):
def test_strptime(self):
def f():
for m in range(1, 13):
for d in range(1,29):
boto.utils.parse_ts('2013-01-01T00:00:00Z')
for _ in range(10):
_thread.start_new_thread(f, ())
time.sleep(3)
class TestPassword(unittest.TestCase):
"""Test basic password functionality"""
def clstest(self, cls):
"""Insure that password.__eq__ hashes test value before compare."""
password = cls('foo')
self.assertNotEquals(password, 'foo')
password.set('foo')
hashed = str(password)
self.assertEquals(password, 'foo')
self.assertEquals(password.str, hashed)
password = cls(hashed)
self.assertNotEquals(password.str, 'foo')
self.assertEquals(password, 'foo')
self.assertEquals(password.str, hashed)
def test_aaa_version_1_9_default_behavior(self):
self.clstest(Password)
def test_custom_hashclass(self):
class SHA224Password(Password):
hashfunc = hashlib.sha224
password = SHA224Password()
password.set('foo')
self.assertEquals(hashlib.sha224(b'foo').hexdigest(), str(password))
def test_hmac(self):
def hmac_hashfunc(cls, msg):
if not isinstance(msg, bytes):
msg = msg.encode('utf-8')
return hmac.new(b'mysecretkey', msg)
class HMACPassword(Password):
hashfunc = hmac_hashfunc
self.clstest(HMACPassword)
password = HMACPassword()
password.set('foo')
self.assertEquals(str(password),
hmac.new(b'mysecretkey', b'foo').hexdigest())
def test_constructor(self):
hmac_hashfunc = lambda msg: hmac.new(b'mysecretkey', msg)
password = Password(hashfunc=hmac_hashfunc)
password.set('foo')
self.assertEquals(password.str,
hmac.new(b'mysecretkey', b'foo').hexdigest())
class TestPythonizeName(unittest.TestCase):
def test_empty_string(self):
self.assertEqual(pythonize_name(''), '')
def test_all_lower_case(self):
self.assertEqual(pythonize_name('lowercase'), 'lowercase')
def test_all_upper_case(self):
self.assertEqual(pythonize_name('UPPERCASE'), 'uppercase')
def test_camel_case(self):
self.assertEqual(pythonize_name('OriginallyCamelCased'),
'originally_camel_cased')
def test_already_pythonized(self):
self.assertEqual(pythonize_name('already_pythonized'),
'already_pythonized')
def test_multiple_upper_cased_letters(self):
self.assertEqual(pythonize_name('HTTPRequest'), 'http_request')
self.assertEqual(pythonize_name('RequestForHTTP'), 'request_for_http')
def test_string_with_numbers(self):
self.assertEqual(pythonize_name('HTTPStatus200Ok'), 'http_status_200_ok')
class TestBuildInstanceMetadataURL(unittest.TestCase):
def test_normal(self):
# This is the all-defaults case.
self.assertEqual(_build_instance_metadata_url(
'http://169.254.169.254',
'latest',
'meta-data/'
),
'http://169.254.169.254/latest/meta-data/'
)
def test_custom_path(self):
self.assertEqual(_build_instance_metadata_url(
'http://169.254.169.254',
'latest',
'dynamic/'
),
'http://169.254.169.254/latest/dynamic/'
)
def test_custom_version(self):
self.assertEqual(_build_instance_metadata_url(
'http://169.254.169.254',
'1.0',
'meta-data/'
),
'http://169.254.169.254/1.0/meta-data/'
)
def test_custom_url(self):
self.assertEqual(_build_instance_metadata_url(
'http://10.0.1.5',
'latest',
'meta-data/'
),
'http://10.0.1.5/latest/meta-data/'
)
def test_all_custom(self):
self.assertEqual(_build_instance_metadata_url(
'http://10.0.1.5',
'2013-03-22',
'user-data'
),
'http://10.0.1.5/2013-03-22/user-data'
)
class TestRetryURL(unittest.TestCase):
def setUp(self):
self.urlopen_patch = mock.patch('boto.compat.urllib.request.urlopen')
self.opener_patch = mock.patch('boto.compat.urllib.request.build_opener')
self.urlopen = self.urlopen_patch.start()
self.opener = self.opener_patch.start()
def tearDown(self):
self.urlopen_patch.stop()
self.opener_patch.stop()
def set_normal_response(self, response):
fake_response = mock.Mock()
fake_response.read.return_value = response
self.urlopen.return_value = fake_response
def set_no_proxy_allowed_response(self, response):
fake_response = mock.Mock()
fake_response.read.return_value = response
self.opener.return_value.open.return_value = fake_response
def test_retry_url_uses_proxy(self):
self.set_normal_response('normal response')
self.set_no_proxy_allowed_response('no proxy response')
response = retry_url('http://10.10.10.10/foo', num_retries=1)
self.assertEqual(response, 'no proxy response')
def test_retry_url_using_bytes_and_string_response(self):
test_value = 'normal response'
fake_response = mock.Mock()
# test using unicode
fake_response.read.return_value = test_value
self.opener.return_value.open.return_value = fake_response
response = retry_url('http://10.10.10.10/foo', num_retries=1)
self.assertEqual(response, test_value)
# test using bytes
fake_response.read.return_value = test_value.encode('utf-8')
self.opener.return_value.open.return_value = fake_response
response = retry_url('http://10.10.10.10/foo', num_retries=1)
self.assertEqual(response, test_value)
class TestLazyLoadMetadata(unittest.TestCase):
def setUp(self):
self.retry_url_patch = mock.patch('boto.utils.retry_url')
boto.utils.retry_url = self.retry_url_patch.start()
def tearDown(self):
self.retry_url_patch.stop()
def set_normal_response(self, data):
# here "data" should be a list of return values in some order
fake_response = mock.Mock()
fake_response.side_effect = data
boto.utils.retry_url = fake_response
def test_meta_data_with_invalid_json_format_happened_once(self):
# here "key_data" will be stored in the "self._leaves"
# when the class "LazyLoadMetadata" initialized
key_data = "test"
invalid_data = '{"invalid_json_format" : true,}'
valid_data = '{ "%s" : {"valid_json_format": true}}' % key_data
url = "/".join(["http://169.254.169.254", key_data])
num_retries = 2
self.set_normal_response([key_data, invalid_data, valid_data])
response = LazyLoadMetadata(url, num_retries)
self.assertEqual(list(response.values())[0], json.loads(valid_data))
def test_meta_data_with_invalid_json_format_happened_twice(self):
key_data = "test"
invalid_data = '{"invalid_json_format" : true,}'
valid_data = '{ "%s" : {"valid_json_format": true}}' % key_data
url = "/".join(["http://169.254.169.254", key_data])
num_retries = 2
self.set_normal_response([key_data, invalid_data, invalid_data])
response = LazyLoadMetadata(url, num_retries)
with self.assertRaises(ValueError):
response.values()[0]
def test_user_data(self):
self.set_normal_response(['foo'])
userdata = get_instance_userdata()
self.assertEqual('foo', userdata)
boto.utils.retry_url.assert_called_with(
'http://169.254.169.254/latest/user-data',
retry_on_404=False,
num_retries=5, timeout=None)
def test_user_data_timeout(self):
self.set_normal_response(['foo'])
userdata = get_instance_userdata(timeout=1, num_retries=2)
self.assertEqual('foo', userdata)
boto.utils.retry_url.assert_called_with(
'http://169.254.169.254/latest/user-data',
retry_on_404=False,
num_retries=2, timeout=1)
class TestStringToDatetimeParsing(unittest.TestCase):
""" Test string to datetime parsing """
def setUp(self):
self._saved = locale.setlocale(locale.LC_ALL)
try:
locale.setlocale(locale.LC_ALL, 'de_DE.UTF-8')
except locale.Error:
self.skipTest('Unsupported locale setting')
def tearDown(self):
locale.setlocale(locale.LC_ALL, self._saved)
def test_nonus_locale(self):
test_string = 'Thu, 15 May 2014 09:06:03 GMT'
# Default strptime shoudl fail
with self.assertRaises(ValueError):
datetime.datetime.strptime(test_string, boto.utils.RFC1123)
# Our parser should succeed
result = boto.utils.parse_ts(test_string)
self.assertEqual(2014, result.year)
self.assertEqual(5, result.month)
self.assertEqual(15, result.day)
self.assertEqual(9, result.hour)
self.assertEqual(6, result.minute)
if __name__ == '__main__':
unittest.main()
|