Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2559 from kouk/nonasciiqueryargs
Browse files Browse the repository at this point in the history
Support non-ascii unicode strings in _get_all_query_args. Fixes: #2558, #2559.
  • Loading branch information
danielgtaylor committed Sep 2, 2014
2 parents 3ba380f + 258986e commit 069d04b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion boto/s3/bucket.py
Expand Up @@ -377,7 +377,9 @@ def _get_all_query_args(self, params, initial_query_string=''):
key = 'max-keys'
if not isinstance(value, six.string_types + (six.binary_type,)):
value = six.text_type(value)
if value != '':
if not isinstance(value, six.binary_type):
value = value.encode('utf-8')
if value:
pairs.append(u'%s=%s' % (
urllib.parse.quote(key),
urllib.parse.quote(value)
Expand Down
6 changes: 4 additions & 2 deletions tests/unit/s3/test_bucket.py
Expand Up @@ -92,6 +92,8 @@ def test__get_all_query_args(self):
'foo': 'true',
# Ensure Unicode chars get encoded.
'bar': '☃',
# Ensure unicode strings with non-ascii characters get encoded
'baz': u'χ',
# Underscores are bad, m'kay?
'some_other': 'thing',
# Change the variant of ``max-keys``.
Expand All @@ -104,14 +106,14 @@ def test__get_all_query_args(self):
qa = bukket._get_all_query_args(multiple_params)
self.assertEqual(
qa,
'bar=%E2%98%83&foo=true&max-keys=0&some-other=thing'
'bar=%E2%98%83&baz=%CF%87&foo=true&max-keys=0&some-other=thing'
)

# Multiple params with initial.
qa = bukket._get_all_query_args(multiple_params, 'initial=1')
self.assertEqual(
qa,
'initial=1&bar=%E2%98%83&foo=true&max-keys=0&some-other=thing'
'initial=1&bar=%E2%98%83&baz=%CF%87&foo=true&max-keys=0&some-other=thing'
)

@patch.object(S3Connection, 'head_bucket')
Expand Down

0 comments on commit 069d04b

Please sign in to comment.