def test_automatic_session_cookies_not_getting_passed_on_subsequent_requests():

    # on the 1st request that gets a response with cookies we SHOULD be able to read them

    response1 = get("https://httpbin.org/cookies/set/foo2/bar2",
                    allow_redirects=False)
    assert response1.cookies["foo2"] == "bar2"

    # ...but the 2nd request should NOT contain the cookie set above!

    response2 = get("https://httpbin.org/cookies")
    assert response2.json()["cookies"] == {}
def test_sessions_automatically_reused_for_same_scheme_and_netloc(caplog):

    # we will capture the debug logs that will print sth like "Got session from cache"
    caplog.set_level(logging.DEBUG)

    get("https://httpbin.org/ip")
    get("https://httpbin.org/user-agent")

    second_request_reused_session = False
    for record in caplog.records:
        if "Got session from cache!" in record.getMessage():
            second_request_reused_session = True
            break

    assert second_request_reused_session
def test_exception_on_4xx():

    requests_extra.defaults.retries_total = 0

    with pytest.raises(HTTPError):
        print(get("https://httpbin.org/status/400"))

    requests_extra.defaults.retries_total = 2
def test_exception_on_5xx():

    requests_extra.defaults.retries_total = 0

    with pytest.raises(HTTPError):
        # let's use one of the code that DO NOT trigger autoretry
        # - otherwise this will be much longer
        print(get("https://httpbin.org/status/501"))

    requests_extra.defaults.retries_total = 2
def test_timeouts_enabled_by_default():

    requests_extra.defaults.timeout = 1
    requests_extra.defaults.retries_total = 0

    with pytest.raises(ConnectionError):
        print(get("https://httpbin.org/delay/2"))

    requests_extra.defaults.timeout = 10
    requests_extra.defaults.retries_total = 2
def test_brotli_enabled_by_default():
    response = get("https://httpbin.org/headers")
    assert "br" in response.request.headers["accept-encoding"]
def test_automatic_session_cookies_working_on_first_request():

    # on the 1st request that gets a response with cookies we SHOULD be able to read them
    response1 = get("https://httpbin.org/cookies/set/foo/bar",
                    allow_redirects=False)
    assert response1.cookies["foo"] == "bar"
Esempio n. 8
0
def test_retries_enabled_by_default():

    # this should fail as each retry will always get HTTP 429
    with pytest.raises(RetryError):
        print(get("https://httpbin.org/status/429"))