python-botocore/tests/unit/test_compat.py
2018-01-15 17:34:17 +01:00

168 lines
5.7 KiB
Python

# Copyright 2014 Amazon.com, Inc. or its affiliates. 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. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file 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 datetime
import mock
from nose.tools import assert_equal, assert_raises
from botocore.exceptions import MD5UnavailableError
from botocore.compat import (
total_seconds, unquote_str, six, ensure_bytes, get_md5, compat_shell_split
)
from tests import BaseEnvVar, unittest
class TotalSecondsTest(BaseEnvVar):
def test_total_seconds(self):
delta = datetime.timedelta(days=1, seconds=45)
remaining = total_seconds(delta)
self.assertEqual(remaining, 86445.0)
delta = datetime.timedelta(seconds=33, microseconds=772)
remaining = total_seconds(delta)
self.assertEqual(remaining, 33.000772)
class TestUnquoteStr(unittest.TestCase):
def test_unquote_str(self):
value = u'%E2%9C%93'
# Note: decoded to unicode and utf-8 decoded as well.
# This would work in python2 and python3.
self.assertEqual(unquote_str(value), u'\u2713')
def test_unquote_normal(self):
value = u'foo'
# Note: decoded to unicode and utf-8 decoded as well.
# This would work in python2 and python3.
self.assertEqual(unquote_str(value), u'foo')
def test_unquote_with_spaces(self):
value = u'foo+bar'
# Note: decoded to unicode and utf-8 decoded as well.
# This would work in python2 and python3.
self.assertEqual(unquote_str(value), 'foo bar')
class TestEnsureBytes(unittest.TestCase):
def test_string(self):
value = 'foo'
response = ensure_bytes(value)
self.assertIsInstance(response, six.binary_type)
self.assertEqual(response, b'foo')
def test_binary(self):
value = b'bar'
response = ensure_bytes(value)
self.assertIsInstance(response, six.binary_type)
self.assertEqual(response, b'bar')
def test_unicode(self):
value = u'baz'
response = ensure_bytes(value)
self.assertIsInstance(response, six.binary_type)
self.assertEqual(response, b'baz')
def test_non_ascii(self):
value = u'\u2713'
response = ensure_bytes(value)
self.assertIsInstance(response, six.binary_type)
self.assertEqual(response, b'\xe2\x9c\x93')
def test_non_string_or_bytes_raises_error(self):
value = 500
with self.assertRaises(ValueError):
ensure_bytes(value)
class TestGetMD5(unittest.TestCase):
def test_available(self):
md5 = mock.Mock()
with mock.patch('botocore.compat.MD5_AVAILABLE', True):
with mock.patch('hashlib.md5', mock.Mock(return_value=md5)):
self.assertEqual(get_md5(), md5)
def test_unavailable_raises_error(self):
with mock.patch('botocore.compat.MD5_AVAILABLE', False):
with self.assertRaises(MD5UnavailableError):
get_md5()
def test_compat_shell_split_windows():
windows_cases = {
r'': [],
r'spam \\': [r'spam', '\\\\'],
r'spam ': [r'spam'],
r' spam': [r'spam'],
'spam eggs': [r'spam', r'eggs'],
'spam\teggs': [r'spam', r'eggs'],
'spam\neggs': ['spam\neggs'],
'""': [''],
'" "': [' '],
'"\t"': ['\t'],
'\\\\': ['\\\\'],
'\\\\ ': ['\\\\'],
'\\\\\t': ['\\\\'],
r'\"': ['"'],
# The following four test cases are official test cases given in
# Microsoft's documentation.
r'"abc" d e': [r'abc', r'd', r'e'],
r'a\\b d"e f"g h': [r'a\\b', r'de fg', r'h'],
r'a\\\"b c d': [r'a\"b', r'c', r'd'],
r'a\\\\"b c" d e': [r'a\\b c', r'd', r'e']
}
runner = ShellSplitTestRunner()
for input_string, expected_output in windows_cases.items():
yield runner.assert_equal, input_string, expected_output, "win32"
yield runner.assert_raises, r'"', ValueError, "win32"
def test_compat_shell_split_unix():
unix_cases = {
r'': [],
r'spam \\': [r'spam', '\\'],
r'spam ': [r'spam'],
r' spam': [r'spam'],
'spam eggs': [r'spam', r'eggs'],
'spam\teggs': [r'spam', r'eggs'],
'spam\neggs': ['spam', 'eggs'],
'""': [''],
'" "': [' '],
'"\t"': ['\t'],
'\\\\': ['\\'],
'\\\\ ': ['\\'],
'\\\\\t': ['\\'],
r'\"': ['"'],
# The following four test cases are official test cases given in
# Microsoft's documentation, but adapted to unix shell splitting.
r'"abc" d e': [r'abc', r'd', r'e'],
r'a\\b d"e f"g h': [r'a\b', r'de fg', r'h'],
r'a\\\"b c d': [r'a\"b', r'c', r'd'],
r'a\\\\"b c" d e': [r'a\\b c', r'd', r'e']
}
runner = ShellSplitTestRunner()
for input_string, expected_output in unix_cases.items():
yield runner.assert_equal, input_string, expected_output, "linux2"
yield runner.assert_equal, input_string, expected_output, "darwin"
yield runner.assert_raises, r'"', ValueError, "linux2"
yield runner.assert_raises, r'"', ValueError, "darwin"
class ShellSplitTestRunner(object):
def assert_equal(self, s, expected, platform):
assert_equal(compat_shell_split(s, platform), expected)
def assert_raises(self, s, exception_cls, platform):
assert_raises(exception_cls, compat_shell_split, s, platform)