mirror of
https://github.com/httpie/cli.git
synced 2024-11-07 16:34:35 +01:00
0001297f41
* Add --raw to allow specifying the raw request body without extra processing As an alternative to `stdin`. Co-authored-by: Elena Lape <elapinskaite@gmail.com> Co-authored-by: Jakub Roztocil <jakub@roztocil.co> * Update README.rst Co-authored-by: Jakub Roztocil <jakub@roztocil.co> * Update README.rst Co-authored-by: Jakub Roztocil <jakub@roztocil.co> * Fix default HTTP method on empty data Co-authored-by: Elena Lape <elapinskaite@gmail.com> Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
97 lines
1.9 KiB
Python
97 lines
1.9 KiB
Python
from .fixtures import FILE_CONTENT, FILE_PATH_ARG
|
|
from .utils import http
|
|
|
|
|
|
def test_offline():
|
|
r = http(
|
|
'--offline',
|
|
'https://this-should.never-resolve/foo',
|
|
)
|
|
assert 'GET /foo' in r
|
|
|
|
|
|
def test_offline_raw():
|
|
r = http(
|
|
'--offline',
|
|
'--raw',
|
|
'foo bar',
|
|
'https://this-should.never-resolve/foo',
|
|
)
|
|
assert 'POST /foo' in r
|
|
assert 'foo bar' in r
|
|
|
|
|
|
def test_offline_raw_empty_should_use_POST():
|
|
r = http(
|
|
'--offline',
|
|
'--raw',
|
|
'',
|
|
'https://this-should.never-resolve/foo',
|
|
)
|
|
assert 'POST /foo' in r
|
|
|
|
|
|
def test_offline_form():
|
|
r = http(
|
|
'--offline',
|
|
'--form',
|
|
'https://this-should.never-resolve/foo',
|
|
'foo=bar'
|
|
)
|
|
assert 'POST /foo' in r
|
|
assert 'foo=bar' in r
|
|
|
|
|
|
def test_offline_json():
|
|
r = http(
|
|
'--offline',
|
|
'https://this-should.never-resolve/foo',
|
|
'foo=bar'
|
|
)
|
|
assert 'POST /foo' in r
|
|
assert r.json == {'foo': 'bar'}
|
|
|
|
|
|
def test_offline_multipart():
|
|
r = http(
|
|
'--offline',
|
|
'--multipart',
|
|
'https://this-should.never-resolve/foo',
|
|
'foo=bar'
|
|
)
|
|
assert 'POST /foo' in r
|
|
assert 'name="foo"' in r
|
|
|
|
|
|
def test_offline_from_file():
|
|
r = http(
|
|
'--offline',
|
|
'https://this-should.never-resolve/foo',
|
|
f'@{FILE_PATH_ARG}'
|
|
)
|
|
assert 'POST /foo' in r
|
|
assert FILE_CONTENT in r
|
|
|
|
|
|
def test_offline_chunked():
|
|
r = http(
|
|
'--offline',
|
|
'--chunked',
|
|
'--form',
|
|
'https://this-should.never-resolve/foo',
|
|
'hello=world'
|
|
)
|
|
assert 'POST /foo' in r
|
|
assert 'Transfer-Encoding: chunked' in r, r
|
|
assert 'hello=world' in r
|
|
|
|
|
|
def test_offline_download():
|
|
"""Absence of response should be handled gracefully with --download"""
|
|
r = http(
|
|
'--offline',
|
|
'--download',
|
|
'https://this-should.never-resolve/foo',
|
|
)
|
|
assert 'GET /foo' in r
|