mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 08:55:05 +01:00
c6cbc7dfa5
* Uniformize UTF-8 naming
Replace `utf8` -> `utf-8` everywhere.
It should have no impact, `utf8` is an alias of `utf-8` [1].
[1] ee03bad25e/Lib/encodings/aliases.py (L534)
* Always specify the encoding
Let's be explicit over implicit. And prevent future warnings from PEP-597 [1].
[1] https://www.python.org/dev/peps/pep-0597/#using-the-default-encoding-is-a-common-mistake
* Update `UTF8` constant (`utf-8` -> `utf_8`)
* Remove default argument from `str.encode()` and `bytes.decode()`
* Clean-up
112 lines
3.2 KiB
Python
112 lines
3.2 KiB
Python
"""
|
|
Various unicode handling related tests.
|
|
|
|
"""
|
|
from .utils import http, HTTP_OK
|
|
from .fixtures import UNICODE
|
|
|
|
|
|
def test_unicode_headers(httpbin):
|
|
# httpbin doesn't interpret UFT-8 headers
|
|
r = http(httpbin.url + '/headers', f'Test:{UNICODE}')
|
|
assert HTTP_OK in r
|
|
|
|
|
|
def test_unicode_headers_verbose(httpbin):
|
|
# httpbin doesn't interpret UTF-8 headers
|
|
r = http('--verbose', httpbin.url + '/headers', f'Test:{UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert UNICODE in r
|
|
|
|
|
|
def test_unicode_raw(httpbin):
|
|
r = http('--raw', f'test {UNICODE}', 'POST', httpbin.url + '/post')
|
|
assert HTTP_OK in r
|
|
assert r.json['data'] == f'test {UNICODE}'
|
|
|
|
|
|
def test_unicode_raw_verbose(httpbin):
|
|
r = http('--verbose', '--raw', f'test {UNICODE}',
|
|
'POST', httpbin.url + '/post')
|
|
assert HTTP_OK in r
|
|
assert UNICODE in r
|
|
|
|
|
|
def test_unicode_form_item(httpbin):
|
|
r = http('--form', 'POST', httpbin.url + '/post', f'test={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert r.json['form'] == {'test': UNICODE}
|
|
|
|
|
|
def test_unicode_form_item_verbose(httpbin):
|
|
r = http('--verbose', '--form',
|
|
'POST', httpbin.url + '/post', f'test={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert UNICODE in r
|
|
|
|
|
|
def test_unicode_json_item(httpbin):
|
|
r = http('--json', 'POST', httpbin.url + '/post', f'test={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert r.json['json'] == {'test': UNICODE}
|
|
|
|
|
|
def test_unicode_json_item_verbose(httpbin):
|
|
r = http('--verbose', '--json',
|
|
'POST', httpbin.url + '/post', f'test={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert UNICODE in r
|
|
|
|
|
|
def test_unicode_raw_json_item(httpbin):
|
|
r = http('--json', 'POST', httpbin.url + '/post',
|
|
f'test:={{ "{UNICODE}" : [ "{UNICODE}" ] }}')
|
|
assert HTTP_OK in r
|
|
assert r.json['json'] == {'test': {UNICODE: [UNICODE]}}
|
|
|
|
|
|
def test_unicode_raw_json_item_verbose(httpbin):
|
|
r = http('--json', 'POST', httpbin.url + '/post',
|
|
f'test:={{ "{UNICODE}" : [ "{UNICODE}" ] }}')
|
|
assert HTTP_OK in r
|
|
assert r.json['json'] == {'test': {UNICODE: [UNICODE]}}
|
|
|
|
|
|
def test_unicode_url_query_arg_item(httpbin):
|
|
r = http(httpbin.url + '/get', f'test=={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert r.json['args'] == {'test': UNICODE}, r
|
|
|
|
|
|
def test_unicode_url_query_arg_item_verbose(httpbin):
|
|
r = http('--verbose', httpbin.url + '/get', f'test=={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert UNICODE in r
|
|
|
|
|
|
def test_unicode_url(httpbin):
|
|
r = http(f'{httpbin.url}/get?test={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert r.json['args'] == {'test': UNICODE}
|
|
|
|
|
|
def test_unicode_url_verbose(httpbin):
|
|
r = http('--verbose', f'{httpbin.url}/get?test={UNICODE}')
|
|
assert HTTP_OK in r
|
|
assert r.json['args'] == {'test': UNICODE}
|
|
|
|
|
|
def test_unicode_basic_auth(httpbin):
|
|
# it doesn't really authenticate us because httpbin
|
|
# doesn't interpret the UTF-8-encoded auth
|
|
http('--verbose', '--auth', f'test:{UNICODE}',
|
|
f'{httpbin.url}/basic-auth/test/{UNICODE}')
|
|
|
|
|
|
def test_unicode_digest_auth(httpbin):
|
|
# it doesn't really authenticate us because httpbin
|
|
# doesn't interpret the UTF-8-encoded auth
|
|
http('--auth-type=digest',
|
|
'--auth', f'test:{UNICODE}',
|
|
f'{httpbin.url}/digest-auth/auth/test/{UNICODE}')
|