2014-04-24 14:07:31 +02:00
|
|
|
"""High-level tests."""
|
2015-01-23 22:04:42 +01:00
|
|
|
import pytest
|
2016-07-02 11:50:30 +02:00
|
|
|
|
|
|
|
from httpie.input import ParseError
|
2014-06-28 16:35:57 +02:00
|
|
|
from utils import TestEnvironment, http, HTTP_OK
|
2014-04-28 11:29:41 +02:00
|
|
|
from fixtures import FILE_PATH, FILE_CONTENT
|
2015-01-23 22:04:42 +01:00
|
|
|
|
2014-04-24 18:32:15 +02:00
|
|
|
import httpie
|
2015-01-23 22:04:42 +01:00
|
|
|
from httpie.compat import is_py26
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
|
2016-03-03 11:47:12 +01:00
|
|
|
def test_debug():
|
|
|
|
r = http('--debug')
|
|
|
|
assert r.exit_status == httpie.ExitStatus.OK
|
|
|
|
assert 'HTTPie %s' % httpie.__version__ in r.stderr
|
|
|
|
|
|
|
|
|
|
|
|
def test_help():
|
|
|
|
r = http('--help', error_exit_ok=True)
|
|
|
|
assert r.exit_status == httpie.ExitStatus.OK
|
|
|
|
assert 'https://github.com/jkbrzt/httpie/issues' in r
|
|
|
|
|
|
|
|
|
|
|
|
def test_version():
|
|
|
|
r = http('--version', error_exit_ok=True)
|
|
|
|
assert r.exit_status == httpie.ExitStatus.OK
|
|
|
|
# FIXME: py3 has version in stdout, py2 in stderr
|
|
|
|
assert httpie.__version__ == r.stderr.strip() + r.strip()
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_GET(httpbin_both):
|
|
|
|
r = http('GET', httpbin_both + '/get')
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_DELETE(httpbin_both):
|
|
|
|
r = http('DELETE', httpbin_both + '/delete')
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_PUT(httpbin_both):
|
|
|
|
r = http('PUT', httpbin_both + '/put', 'foo=bar')
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert r.json['json']['foo'] == 'bar'
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_POST_JSON_data(httpbin_both):
|
|
|
|
r = http('POST', httpbin_both + '/post', 'foo=bar')
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert r.json['json']['foo'] == 'bar'
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_POST_form(httpbin_both):
|
|
|
|
r = http('--form', 'POST', httpbin_both + '/post', 'foo=bar')
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert '"foo": "bar"' in r
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_POST_form_multiple_values(httpbin_both):
|
|
|
|
r = http('--form', 'POST', httpbin_both + '/post', 'foo=bar', 'foo=baz')
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert r.json['form'] == {'foo': ['bar', 'baz']}
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_POST_stdin(httpbin_both):
|
2016-03-03 11:47:12 +01:00
|
|
|
with open(FILE_PATH) as f:
|
|
|
|
env = TestEnvironment(stdin=f, stdin_isatty=False)
|
2016-03-06 10:42:35 +01:00
|
|
|
r = http('--form', 'POST', httpbin_both + '/post', env=env)
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert FILE_CONTENT in r
|
|
|
|
|
|
|
|
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_headers(httpbin_both):
|
|
|
|
r = http('GET', httpbin_both + '/headers', 'Foo:bar')
|
2016-03-03 11:47:12 +01:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert '"User-Agent": "HTTPie' in r, r
|
|
|
|
assert '"Foo": "bar"' in r
|
|
|
|
|
|
|
|
|
2016-07-02 11:50:30 +02:00
|
|
|
def test_headers_unset(httpbin_both):
|
|
|
|
r = http('GET', httpbin_both + '/headers')
|
|
|
|
assert 'Accept' in r.json['headers'] # default Accept present
|
|
|
|
|
|
|
|
r = http('GET', httpbin_both + '/headers', 'Accept:')
|
|
|
|
assert 'Accept' not in r.json['headers'] # default Accept unset
|
|
|
|
|
|
|
|
|
|
|
|
def test_headers_empty_value(httpbin_both):
|
|
|
|
r = http('GET', httpbin_both + '/headers')
|
|
|
|
assert r.json['headers']['Accept'] # default Accept has value
|
|
|
|
|
|
|
|
r = http('GET', httpbin_both + '/headers', 'Accept;')
|
|
|
|
assert r.json['headers']['Accept'] == '' # Accept has no value
|
|
|
|
|
|
|
|
|
|
|
|
def test_headers_empty_value_with_value_gives_error(httpbin):
|
|
|
|
with pytest.raises(ParseError):
|
|
|
|
http('GET', httpbin + '/headers', 'Accept;SYNTAX_ERROR')
|
|
|
|
|
|
|
|
|
2016-03-03 11:47:12 +01:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
is_py26,
|
|
|
|
reason='the `object_pairs_hook` arg for `json.loads()` is Py>2.6 only'
|
|
|
|
)
|
2016-03-06 10:42:35 +01:00
|
|
|
def test_json_input_preserve_order(httpbin_both):
|
|
|
|
r = http('PATCH', httpbin_both + '/patch',
|
2016-03-03 11:47:12 +01:00
|
|
|
'order:={"map":{"1":"first","2":"second"}}')
|
|
|
|
assert HTTP_OK in r
|
|
|
|
assert r.json['data'] == \
|
|
|
|
'{"order": {"map": {"1": "first", "2": "second"}}}'
|