2014-04-24 14:07:31 +02:00
|
|
|
"""
|
|
|
|
Tests for the provided defaults regarding HTTP method, and --json vs. --form.
|
|
|
|
|
|
|
|
"""
|
2014-04-24 15:17:04 +02:00
|
|
|
from tests import TestEnvironment, http, httpbin, HTTP_OK
|
|
|
|
from tests.fixtures import FILE_PATH
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
|
2014-04-25 11:39:59 +02:00
|
|
|
class TestImplicitHTTPMethod:
|
2014-04-24 14:07:31 +02:00
|
|
|
def test_implicit_GET(self):
|
|
|
|
r = http(httpbin('/get'))
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_implicit_GET_with_headers(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http(httpbin('/headers'), 'Foo:bar')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-25 12:18:35 +02:00
|
|
|
assert r.json['headers']['Foo'] == 'bar'
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_implicit_POST_json(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http(httpbin('/post'), 'hello=world')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-25 12:18:35 +02:00
|
|
|
assert r.json['json'] == {'hello': 'world'}
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_implicit_POST_form(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('--form', httpbin('/post'), 'foo=bar')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-25 12:18:35 +02:00
|
|
|
assert r.json['form'] == {'foo': 'bar'}
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_implicit_POST_stdin(self):
|
|
|
|
with open(FILE_PATH) as f:
|
2014-04-24 15:48:01 +02:00
|
|
|
env = TestEnvironment(stdin_isatty=False, stdin=f)
|
|
|
|
r = http('--form', httpbin('/post'), env=env)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
|
2014-04-25 11:39:59 +02:00
|
|
|
class TestAutoContentTypeAndAcceptHeaders:
|
2014-04-24 14:07:31 +02:00
|
|
|
"""
|
|
|
|
Test that Accept and Content-Type correctly defaults to JSON,
|
|
|
|
but can still be overridden. The same with Content-Type when --form
|
|
|
|
-f is used.
|
|
|
|
|
|
|
|
"""
|
2014-04-24 15:48:01 +02:00
|
|
|
|
2014-04-24 14:07:31 +02:00
|
|
|
def test_GET_no_data_no_auto_headers(self):
|
|
|
|
# https://github.com/jkbr/httpie/issues/62
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('GET', httpbin('/headers'))
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-25 12:18:35 +02:00
|
|
|
assert r.json['headers']['Accept'] == '*/*'
|
|
|
|
assert 'Content-Type' not in r.json['headers']
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_POST_no_data_no_auto_headers(self):
|
|
|
|
# JSON headers shouldn't be automatically set for POST with no data.
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('POST', httpbin('/post'))
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert '"Accept": "*/*"' in r
|
|
|
|
assert '"Content-Type": "application/json' not in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_POST_with_data_auto_JSON_headers(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('POST', httpbin('/post'), 'a=b')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert '"Accept": "application/json"' in r
|
|
|
|
assert '"Content-Type": "application/json; charset=utf-8' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_GET_with_data_auto_JSON_headers(self):
|
|
|
|
# JSON headers should automatically be set also for GET with data.
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('POST', httpbin('/post'), 'a=b')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-26 17:16:11 +02:00
|
|
|
assert '"Accept": "application/json"' in r, r
|
2014-04-24 14:58:15 +02:00
|
|
|
assert '"Content-Type": "application/json; charset=utf-8' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_POST_explicit_JSON_auto_JSON_accept(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('--json', 'POST', httpbin('/post'))
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert r.json['headers']['Accept'] == 'application/json'
|
2014-04-24 14:07:31 +02:00
|
|
|
# Make sure Content-Type gets set even with no data.
|
|
|
|
# https://github.com/jkbr/httpie/issues/137
|
2014-04-24 14:58:15 +02:00
|
|
|
assert 'application/json' in r.json['headers']['Content-Type']
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_GET_explicit_JSON_explicit_headers(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('--json', 'GET', httpbin('/headers'),
|
|
|
|
'Accept:application/xml',
|
|
|
|
'Content-Type:application/xml')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert '"Accept": "application/xml"' in r
|
|
|
|
assert '"Content-Type": "application/xml"' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_POST_form_auto_Content_Type(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('--form', 'POST', httpbin('/post'))
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert '"Content-Type": "application/x-www-form-urlencoded' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_POST_form_Content_Type_override(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('--form', 'POST', httpbin('/post'),
|
|
|
|
'Content-Type:application/xml')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert '"Content-Type": "application/xml"' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_print_only_body_when_stdout_redirected_by_default(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
env = TestEnvironment(stdin_isatty=True, stdout_isatty=False)
|
|
|
|
r = http('GET', httpbin('/get'), env=env)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert 'HTTP/' not in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_print_overridable_when_stdout_redirected(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
env = TestEnvironment(stdin_isatty=True, stdout_isatty=False)
|
|
|
|
r = http('--print=h', 'GET', httpbin('/get'), env=env)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|