2014-04-24 14:07:31 +02:00
|
|
|
import os
|
|
|
|
|
2014-04-24 17:08:40 +02:00
|
|
|
import pytest
|
|
|
|
|
2014-04-24 14:07:31 +02:00
|
|
|
from httpie.input import ParseError
|
2014-04-28 11:29:41 +02:00
|
|
|
from utils import TestEnvironment, http, httpbin, HTTP_OK
|
|
|
|
from fixtures import FILE_PATH_ARG, FILE_PATH, FILE_CONTENT
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
|
2014-04-25 11:39:59 +02:00
|
|
|
class TestMultipartFormDataFileUpload:
|
2014-04-24 14:07:31 +02:00
|
|
|
def test_non_existent_file_raises_parse_error(self):
|
2014-04-24 17:08:40 +02:00
|
|
|
with pytest.raises(ParseError):
|
2014-04-24 15:48:01 +02:00
|
|
|
http('--form', 'POST', httpbin('/post'), 'foo@/__does_not_exist__')
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_upload_ok(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('--form', '--verbose', 'POST', httpbin('/post'),
|
|
|
|
'test-file@%s' % FILE_PATH_ARG, 'foo=bar')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert 'Content-Disposition: form-data; name="foo"' in r
|
|
|
|
assert 'Content-Disposition: form-data; name="test-file";' \
|
|
|
|
' filename="%s"' % os.path.basename(FILE_PATH) in r
|
|
|
|
assert r.count(FILE_CONTENT) == 2
|
|
|
|
assert '"foo": "bar"' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
|
2014-04-25 11:39:59 +02:00
|
|
|
class TestRequestBodyFromFilePath:
|
2014-04-24 14:07:31 +02:00
|
|
|
"""
|
|
|
|
`http URL @file'
|
|
|
|
|
|
|
|
"""
|
2014-04-24 15:48:01 +02:00
|
|
|
|
2014-04-24 14:07:31 +02:00
|
|
|
def test_request_body_from_file_by_path(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('--verbose', 'POST', httpbin('/post'), '@' + FILE_PATH_ARG)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-26 17:53:01 +02:00
|
|
|
assert FILE_CONTENT in r, r
|
2014-04-24 14:58:15 +02:00
|
|
|
assert '"Content-Type": "text/plain"' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_request_body_from_file_by_path_with_explicit_content_type(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('POST', httpbin('/post'), '@' + FILE_PATH_ARG,
|
|
|
|
'Content-Type:x-foo/bar')
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert FILE_CONTENT in r
|
|
|
|
assert '"Content-Type": "x-foo/bar"' in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_request_body_from_file_by_path_no_field_name_allowed(self):
|
|
|
|
env = TestEnvironment(stdin_isatty=True)
|
2014-04-24 15:48:01 +02:00
|
|
|
r = http('POST', httpbin('/post'), 'field-name@' + FILE_PATH_ARG,
|
2014-04-26 15:06:51 +02:00
|
|
|
env=env, error_exit_ok=True)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert 'perhaps you meant --form?' in r.stderr
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_request_body_from_file_by_path_no_data_items_allowed(self):
|
2014-04-24 15:48:01 +02:00
|
|
|
env = TestEnvironment(stdin_isatty=False)
|
|
|
|
r = http('POST', httpbin('/post'), '@' + FILE_PATH_ARG, 'foo=bar',
|
2014-04-26 15:06:51 +02:00
|
|
|
env=env, error_exit_ok=True)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert 'cannot be mixed' in r.stderr
|