mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 09:13:25 +01:00
07a0359316
* Make sure there’s no trailing \n in test files for easier output inspection * Refactor output matching test utils * More robust `test_http_307_allow_redirect_post_verbose()` * Changelog * Mention HTTP 307 Temporary Redirect re-post behaviour in README
52 lines
985 B
Python
52 lines
985 B
Python
from enum import Enum, auto
|
|
|
|
|
|
class Expect(Enum):
|
|
"""
|
|
Predefined token types we can expect in the output.
|
|
|
|
"""
|
|
REQUEST_HEADERS = auto()
|
|
RESPONSE_HEADERS = auto()
|
|
BODY = auto()
|
|
SEPARATOR = auto()
|
|
|
|
|
|
class ExpectSequence:
|
|
"""
|
|
Standard combined chunks. These predefined requests and responses assume a body.
|
|
|
|
"""
|
|
RAW_REQUEST = [
|
|
Expect.REQUEST_HEADERS,
|
|
Expect.BODY,
|
|
]
|
|
RAW_RESPONSE = [
|
|
Expect.RESPONSE_HEADERS,
|
|
Expect.BODY,
|
|
]
|
|
RAW_EXCHANGE = [
|
|
*RAW_REQUEST,
|
|
Expect.SEPARATOR, # Good choice?
|
|
*RAW_RESPONSE,
|
|
]
|
|
RAW_BODY = [
|
|
Expect.BODY,
|
|
]
|
|
TERMINAL_REQUEST = [
|
|
*RAW_REQUEST,
|
|
Expect.SEPARATOR,
|
|
]
|
|
TERMINAL_RESPONSE = [
|
|
*RAW_RESPONSE,
|
|
Expect.SEPARATOR,
|
|
]
|
|
TERMINAL_EXCHANGE = [
|
|
*TERMINAL_REQUEST,
|
|
*TERMINAL_RESPONSE,
|
|
]
|
|
TERMINAL_BODY = [
|
|
RAW_BODY,
|
|
Expect.SEPARATOR
|
|
]
|