mirror of
https://github.com/httpie/cli.git
synced 2025-08-15 13:02:37 +02:00
Fix incorrect separators and introduce assert_output_matches()
(close #1027)
This commit is contained in:
190
tests/utils/matching/test_matching.py
Normal file
190
tests/utils/matching/test_matching.py
Normal file
@ -0,0 +1,190 @@
|
||||
"""
|
||||
Here we test our output parsing and matching implementation, not HTTPie itself.
|
||||
|
||||
"""
|
||||
from httpie.output.writer import MESSAGE_SEPARATOR
|
||||
from tests.utils import CRLF
|
||||
from tests.utils.matching import assert_output_does_not_match, assert_output_matches, Expect
|
||||
|
||||
|
||||
def test_assert_output_matches_headers_incomplete():
|
||||
assert_output_does_not_match(f'HTTP/1.1{CRLF}', [Expect.RESPONSE_HEADERS])
|
||||
|
||||
|
||||
def test_assert_output_matches_headers_unterminated():
|
||||
assert_output_does_not_match(
|
||||
(
|
||||
f'HTTP/1.1{CRLF}'
|
||||
f'AAA:BBB'
|
||||
f'{CRLF}'
|
||||
),
|
||||
[Expect.RESPONSE_HEADERS],
|
||||
)
|
||||
|
||||
|
||||
def test_assert_output_matches_response_headers():
|
||||
assert_output_matches(
|
||||
(
|
||||
f'HTTP/1.1 200 OK{CRLF}'
|
||||
f'AAA:BBB{CRLF}'
|
||||
f'{CRLF}'
|
||||
),
|
||||
[Expect.RESPONSE_HEADERS],
|
||||
)
|
||||
|
||||
|
||||
def test_assert_output_matches_request_headers():
|
||||
assert_output_matches(
|
||||
(
|
||||
f'GET / HTTP/1.1{CRLF}'
|
||||
f'AAA:BBB{CRLF}'
|
||||
f'{CRLF}'
|
||||
),
|
||||
[Expect.REQUEST_HEADERS],
|
||||
)
|
||||
|
||||
|
||||
def test_assert_output_matches_headers_and_separator():
|
||||
assert_output_matches(
|
||||
(
|
||||
f'HTTP/1.1{CRLF}'
|
||||
f'AAA:BBB{CRLF}'
|
||||
f'{CRLF}'
|
||||
f'{MESSAGE_SEPARATOR}'
|
||||
),
|
||||
[Expect.RESPONSE_HEADERS, Expect.SEPARATOR],
|
||||
)
|
||||
|
||||
|
||||
def test_assert_output_matches_body_unmatched_crlf():
|
||||
assert_output_does_not_match(f'AAA{CRLF}', [Expect.BODY])
|
||||
|
||||
|
||||
def test_assert_output_matches_body_unmatched_separator():
|
||||
assert_output_does_not_match(f'AAA{MESSAGE_SEPARATOR}', [Expect.BODY])
|
||||
|
||||
|
||||
def test_assert_output_matches_body_and_separator():
|
||||
assert_output_matches(f'AAA{MESSAGE_SEPARATOR}', [Expect.BODY, Expect.SEPARATOR])
|
||||
|
||||
|
||||
def test_assert_output_matches_body_r():
|
||||
assert_output_matches(f'AAA\r', [Expect.BODY])
|
||||
|
||||
|
||||
def test_assert_output_matches_body_n():
|
||||
assert_output_matches(f'AAA\n', [Expect.BODY])
|
||||
|
||||
|
||||
def test_assert_output_matches_body_r_body():
|
||||
assert_output_matches(f'AAA\rBBB', [Expect.BODY])
|
||||
|
||||
|
||||
def test_assert_output_matches_body_n_body():
|
||||
assert_output_matches(f'AAA\nBBB', [Expect.BODY])
|
||||
|
||||
|
||||
def test_assert_output_matches_headers_and_body():
|
||||
assert_output_matches(
|
||||
(
|
||||
f'HTTP/1.1{CRLF}'
|
||||
f'AAA:BBB{CRLF}'
|
||||
f'{CRLF}'
|
||||
f'CCC'
|
||||
),
|
||||
[Expect.RESPONSE_HEADERS, Expect.BODY]
|
||||
)
|
||||
|
||||
|
||||
def test_assert_output_matches_headers_with_body_and_separator():
|
||||
assert_output_matches(
|
||||
(
|
||||
f'HTTP/1.1 {CRLF}'
|
||||
f'AAA:BBB{CRLF}{CRLF}'
|
||||
f'CCC{MESSAGE_SEPARATOR}'
|
||||
),
|
||||
[Expect.RESPONSE_HEADERS, Expect.BODY, Expect.SEPARATOR]
|
||||
)
|
||||
|
||||
|
||||
def test_assert_output_matches_multiple_messages():
|
||||
assert_output_matches(
|
||||
(
|
||||
f'POST / HTTP/1.1{CRLF}'
|
||||
f'AAA:BBB{CRLF}'
|
||||
f'{CRLF}'
|
||||
|
||||
f'CCC'
|
||||
f'{MESSAGE_SEPARATOR}'
|
||||
|
||||
f'HTTP/1.1 200 OK{CRLF}'
|
||||
f'EEE:FFF{CRLF}'
|
||||
f'{CRLF}'
|
||||
|
||||
f'GGG'
|
||||
f'{MESSAGE_SEPARATOR}'
|
||||
), [
|
||||
Expect.REQUEST_HEADERS,
|
||||
Expect.BODY,
|
||||
Expect.SEPARATOR,
|
||||
Expect.RESPONSE_HEADERS,
|
||||
Expect.BODY,
|
||||
Expect.SEPARATOR,
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
def test_assert_output_matches_multipart_body():
|
||||
output = (
|
||||
'POST / HTTP/1.1\r\n'
|
||||
'User-Agent: HTTPie/2.4.0-dev\r\n'
|
||||
'Accept-Encoding: gzip, deflate\r\n'
|
||||
'Accept: */*\r\n'
|
||||
'Connection: keep-alive\r\n'
|
||||
'Content-Type: multipart/form-data; boundary=1e22169de43e4a2e8d9e41c0a1c93cc5\r\n'
|
||||
'Content-Length: 212\r\n'
|
||||
'Host: pie.dev\r\n'
|
||||
'\r\n'
|
||||
'--1e22169de43e4a2e8d9e41c0a1c93cc5\r\n'
|
||||
'Content-Disposition: form-data; name="AAA"\r\n'
|
||||
'\r\n'
|
||||
'BBB\r\n'
|
||||
'--1e22169de43e4a2e8d9e41c0a1c93cc5\r\n'
|
||||
'Content-Disposition: form-data; name="CCC"\r\n'
|
||||
'\r\n'
|
||||
'DDD\r\n'
|
||||
'--1e22169de43e4a2e8d9e41c0a1c93cc5--\r\n'
|
||||
)
|
||||
assert_output_matches(output, [Expect.REQUEST_HEADERS, Expect.BODY])
|
||||
|
||||
|
||||
def test_assert_output_matches_multipart_body_with_separator():
|
||||
output = (
|
||||
'POST / HTTP/1.1\r\n'
|
||||
'User-Agent: HTTPie/2.4.0-dev\r\n'
|
||||
'Accept-Encoding: gzip, deflate\r\n'
|
||||
'Accept: */*\r\n'
|
||||
'Connection: keep-alive\r\n'
|
||||
'Content-Type: multipart/form-data; boundary=1e22169de43e4a2e8d9e41c0a1c93cc5\r\n'
|
||||
'Content-Length: 212\r\n'
|
||||
'Host: pie.dev\r\n'
|
||||
'\r\n'
|
||||
'--1e22169de43e4a2e8d9e41c0a1c93cc5\r\n'
|
||||
'Content-Disposition: form-data; name="AAA"\r\n'
|
||||
'\r\n'
|
||||
'BBB\r\n'
|
||||
'--1e22169de43e4a2e8d9e41c0a1c93cc5\r\n'
|
||||
'Content-Disposition: form-data; name="CCC"\r\n'
|
||||
'\r\n'
|
||||
'DDD\r\n'
|
||||
'--1e22169de43e4a2e8d9e41c0a1c93cc5--\r\n'
|
||||
f'{MESSAGE_SEPARATOR}'
|
||||
)
|
||||
assert_output_matches(output, [Expect.REQUEST_HEADERS, Expect.BODY, Expect.SEPARATOR])
|
||||
|
||||
|
||||
def test_assert_output_matches_multiple_separators():
|
||||
assert_output_matches(
|
||||
MESSAGE_SEPARATOR + MESSAGE_SEPARATOR + 'AAA' + MESSAGE_SEPARATOR + MESSAGE_SEPARATOR,
|
||||
[Expect.SEPARATOR, Expect.SEPARATOR, Expect.BODY, Expect.SEPARATOR, Expect.SEPARATOR]
|
||||
)
|
Reference in New Issue
Block a user