diff options
author | Victor Stinner <victor.stinner@enovance.com> | 2014-03-24 18:16:51 +0100 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2014-03-28 15:48:50 +0000 |
commit | 12f86fdcc57896bac62d36c74a80fd19adeeac58 (patch) | |
tree | edf38583f4ad8925e5d3b4162e77f4de13b9a1ed /tests/test_swiftclient.py | |
parent | cdf6f84c360088d39af1b8e1745c102fc44ac362 (diff) | |
download | python-swiftclient-12f86fdcc57896bac62d36c74a80fd19adeeac58.tar.gz |
Python 3: Get compatible types from six
* Replace unicode with six.text_type
* Replace basestring with six.string_types
* The long type doesn't exist in Python 3 anymore: replace 1L with long(1) and
only test this type with Python 2
* Fix quote(): quote the URL if the string is a byte string. Use "bytes" type
instead of "str" to be Python 3 compatible.
Change-Id: I1df5aa85e4e7d07191fb5c654d52fc4bd8b9f440
Diffstat (limited to 'tests/test_swiftclient.py')
-rw-r--r-- | tests/test_swiftclient.py | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/tests/test_swiftclient.py b/tests/test_swiftclient.py index 8f70947..a31026e 100644 --- a/tests/test_swiftclient.py +++ b/tests/test_swiftclient.py @@ -177,9 +177,9 @@ class TestHttpHelpers(MockHttpTest): def test_quote(self): value = 'standard string' - self.assertEqual('standard%20string', c.quote(value)) + self.assertEqual(b'standard%20string', c.quote(value)) value = u'\u0075nicode string' - self.assertEqual('unicode%20string', c.quote(value)) + self.assertEqual(b'unicode%20string', c.quote(value)) def test_http_connection(self): url = 'http://www.test.com' @@ -204,7 +204,10 @@ class TestHttpHelpers(MockHttpTest): headers) def test_validate_headers_with_other_than_str(self): - for t in (None, 1, 1.0, 1L, u"A"): + values = [None, 1, 1.0, u"A"] + if six.PY2: + values.append(long(1)) + for t in values: self.assertEqual(c.validate_headers({'key': t}), None) @@ -572,7 +575,7 @@ class TestPutObject(MockHttpTest): c.http_connection = self.fake_http_connection(200) args = ('http://www.test.com', 'asdf', 'asdf', 'asdf', 'asdf') value = c.put_object(*args) - self.assertTrue(isinstance(value, basestring)) + self.assertTrue(isinstance(value, six.string_types)) def test_unicode_ok(self): conn = c.http_connection(u'http://www.test.com/') @@ -589,7 +592,7 @@ class TestPutObject(MockHttpTest): conn[1].getresponse = resp.fake_response conn[1]._request = resp._fake_request value = c.put_object(*args, headers=headers, http_conn=conn) - self.assertTrue(isinstance(value, basestring)) + self.assertTrue(isinstance(value, six.string_types)) # Test for RFC-2616 encoded symbols self.assertTrue("a-b: .x:yz mn:fg:lp" in resp.buffer[0], "[a-b: .x:yz mn:fg:lp] header is missing") @@ -969,7 +972,7 @@ class TestLogging(MockHttpTest): c.http_connection = self.fake_http_connection(200) args = ('http://www.test.com', 'asdf', 'asdf', 'asdf', 'asdf') value = c.put_object(*args) - self.assertTrue(isinstance(value, basestring)) + self.assertTrue(isinstance(value, six.string_types)) def test_head_error(self): c.http_connection = self.fake_http_connection(500) |