mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 00:44:45 +01:00
264d45cdf5
Simple concatenations were kept for readability purpose.
50 lines
1.1 KiB
Python
50 lines
1.1 KiB
Python
"""Miscellaneous regression tests"""
|
|
import pytest
|
|
|
|
from httpie.compat import is_windows
|
|
from .utils.matching import assert_output_matches, Expect
|
|
from .utils import HTTP_OK, MockEnvironment, http
|
|
|
|
|
|
def test_Host_header_overwrite(httpbin):
|
|
"""
|
|
https://github.com/httpie/httpie/issues/235
|
|
|
|
"""
|
|
host = 'pie.dev'
|
|
url = httpbin.url + '/get'
|
|
r = http('--print=hH', url, f'host:{host}')
|
|
assert HTTP_OK in r
|
|
assert r.lower().count('host:') == 1
|
|
assert f'host: {host}' in r
|
|
|
|
|
|
@pytest.mark.skipif(is_windows, reason='Unix-only')
|
|
def test_output_devnull(httpbin):
|
|
"""
|
|
https://github.com/httpie/httpie/issues/252
|
|
|
|
"""
|
|
http('--output=/dev/null', httpbin + '/get')
|
|
|
|
|
|
def test_verbose_redirected_stdout_separator(httpbin):
|
|
"""
|
|
|
|
<https://github.com/httpie/httpie/issues/1006>
|
|
"""
|
|
r = http(
|
|
'-v',
|
|
httpbin.url + '/post',
|
|
'a=b',
|
|
env=MockEnvironment(stdout_isatty=False),
|
|
)
|
|
assert '}HTTP/' not in r
|
|
assert_output_matches(r, [
|
|
Expect.REQUEST_HEADERS,
|
|
Expect.BODY,
|
|
Expect.SEPARATOR,
|
|
Expect.RESPONSE_HEADERS,
|
|
Expect.BODY,
|
|
])
|