httpie-cli/tests/test_redirects.py
Jakub Roztocil 5408fb0fb9 Cleanup
2016-02-29 14:31:27 +08:00

23 lines
674 B
Python

"""High-level tests."""
from httpie import ExitStatus
from utils import http, HTTP_OK
def test_follow_no_show_redirects(httpbin):
r = http('--follow', httpbin.url + '/redirect/2')
assert r.count('HTTP/1.1') == 1
assert HTTP_OK in r
def test_follow_show_redirects(httpbin):
r = http('--follow', '--show-redirects', httpbin.url + '/redirect/2')
assert r.count('HTTP/1.1') == 3
assert r.count('HTTP/1.1 302 FOUND', 2)
assert HTTP_OK in r
def test_max_redirects(httpbin):
r = http('--max-redirects=1', '--follow', httpbin.url + '/redirect/3',
error_exit_ok=True)
assert r.exit_status == ExitStatus.ERROR_TOO_MANY_REDIRECTS