* Add debug logs to ASGIDispatch * Tidy up ASGIDispatch * Log entire scope and ASGI messages * Obfuscate sensitive headers using common utility * Update utils.py
211 lines
6.1 KiB
Python
211 lines
6.1 KiB
Python
import asyncio
|
|
import logging
|
|
import os
|
|
|
|
import pytest
|
|
|
|
import httpx
|
|
from httpx import utils
|
|
from httpx.utils import (
|
|
ElapsedTimer,
|
|
get_ca_bundle_from_env,
|
|
get_environment_proxies,
|
|
get_netrc_login,
|
|
guess_json_utf,
|
|
obfuscate_sensitive_headers,
|
|
parse_header_links,
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"encoding",
|
|
(
|
|
"utf-32",
|
|
"utf-8-sig",
|
|
"utf-16",
|
|
"utf-8",
|
|
"utf-16-be",
|
|
"utf-16-le",
|
|
"utf-32-be",
|
|
"utf-32-le",
|
|
),
|
|
)
|
|
def test_encoded(encoding):
|
|
data = "{}".encode(encoding)
|
|
assert guess_json_utf(data) == encoding
|
|
|
|
|
|
def test_bad_utf_like_encoding():
|
|
assert guess_json_utf(b"\x00\x00\x00\x00") is None
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("encoding", "expected"),
|
|
(
|
|
("utf-16-be", "utf-16"),
|
|
("utf-16-le", "utf-16"),
|
|
("utf-32-be", "utf-32"),
|
|
("utf-32-le", "utf-32"),
|
|
),
|
|
)
|
|
def test_guess_by_bom(encoding, expected):
|
|
data = "\ufeff{}".encode(encoding)
|
|
assert guess_json_utf(data) == expected
|
|
|
|
|
|
def test_bad_get_netrc_login():
|
|
assert get_netrc_login("url") is None
|
|
|
|
os.environ["NETRC"] = "tests/.netrc"
|
|
assert get_netrc_login("url") is None
|
|
|
|
os.environ["NETRC"] = "wrongpath"
|
|
assert get_netrc_login("url") is None
|
|
|
|
from httpx import utils
|
|
|
|
utils.NETRC_STATIC_FILES = ()
|
|
os.environ["NETRC"] = ""
|
|
assert utils.get_netrc_login("url") is None
|
|
|
|
|
|
def test_get_netrc_login():
|
|
os.environ["NETRC"] = "tests/.netrc"
|
|
assert get_netrc_login("netrcexample.org") == (
|
|
"example-username",
|
|
None,
|
|
"example-password",
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"value, expected",
|
|
(
|
|
(
|
|
'<http:/.../front.jpeg>; rel=front; type="image/jpeg"',
|
|
[{"url": "http:/.../front.jpeg", "rel": "front", "type": "image/jpeg"}],
|
|
),
|
|
("<http:/.../front.jpeg>", [{"url": "http:/.../front.jpeg"}]),
|
|
("<http:/.../front.jpeg>;", [{"url": "http:/.../front.jpeg"}]),
|
|
(
|
|
'<http:/.../front.jpeg>; type="image/jpeg",<http://.../back.jpeg>;',
|
|
[
|
|
{"url": "http:/.../front.jpeg", "type": "image/jpeg"},
|
|
{"url": "http://.../back.jpeg"},
|
|
],
|
|
),
|
|
("", []),
|
|
),
|
|
)
|
|
def test_parse_header_links(value, expected):
|
|
assert parse_header_links(value) == expected
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize("httpx_debug", ["0", "1", "True", "False"])
|
|
async def test_httpx_debug_enabled_stderr_logging(server, capsys, httpx_debug):
|
|
os.environ["HTTPX_DEBUG"] = httpx_debug
|
|
|
|
# Force a reload on the logging handlers
|
|
utils._LOGGER_INITIALIZED = False
|
|
utils.get_logger("httpx")
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
await client.get(server.url)
|
|
|
|
if httpx_debug in ("1", "True"):
|
|
assert "httpx.dispatch.connection_pool" in capsys.readouterr().err
|
|
else:
|
|
assert "httpx.dispatch.connection_pool" not in capsys.readouterr().err
|
|
|
|
# Reset the logger so we don't have verbose output in all unit tests
|
|
logging.getLogger("httpx").handlers = []
|
|
|
|
|
|
def test_get_ssl_cert_file():
|
|
# Two environments is not set.
|
|
assert get_ca_bundle_from_env() is None
|
|
|
|
os.environ["SSL_CERT_DIR"] = "tests/"
|
|
# SSL_CERT_DIR is correctly set, SSL_CERT_FILE is not set.
|
|
assert get_ca_bundle_from_env() == "tests"
|
|
|
|
del os.environ["SSL_CERT_DIR"]
|
|
os.environ["SSL_CERT_FILE"] = "tests/test_utils.py"
|
|
# SSL_CERT_FILE is correctly set, SSL_CERT_DIR is not set.
|
|
assert get_ca_bundle_from_env() == "tests/test_utils.py"
|
|
|
|
os.environ["SSL_CERT_FILE"] = "wrongfile"
|
|
# SSL_CERT_FILE is set with wrong file, SSL_CERT_DIR is not set.
|
|
assert get_ca_bundle_from_env() is None
|
|
|
|
del os.environ["SSL_CERT_FILE"]
|
|
os.environ["SSL_CERT_DIR"] = "wrongpath"
|
|
# SSL_CERT_DIR is set with wrong path, SSL_CERT_FILE is not set.
|
|
assert get_ca_bundle_from_env() is None
|
|
|
|
os.environ["SSL_CERT_DIR"] = "tests/"
|
|
os.environ["SSL_CERT_FILE"] = "tests/test_utils.py"
|
|
# Two environments is correctly set.
|
|
assert get_ca_bundle_from_env() == "tests/test_utils.py"
|
|
|
|
os.environ["SSL_CERT_FILE"] = "wrongfile"
|
|
# Two environments is set but SSL_CERT_FILE is not a file.
|
|
assert get_ca_bundle_from_env() == "tests"
|
|
|
|
os.environ["SSL_CERT_DIR"] = "wrongpath"
|
|
# Two environments is set but both are not correct.
|
|
assert get_ca_bundle_from_env() is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_elapsed_timer():
|
|
with ElapsedTimer() as timer:
|
|
assert timer.elapsed.total_seconds() == pytest.approx(0, abs=0.05)
|
|
await asyncio.sleep(0.1)
|
|
await asyncio.sleep(
|
|
0.1
|
|
) # test to ensure time spent after timer exits isn't accounted for.
|
|
assert timer.elapsed.total_seconds() == pytest.approx(0.1, abs=0.05)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
["environment", "proxies"],
|
|
[
|
|
({}, {}),
|
|
({"HTTP_PROXY": "http://127.0.0.1"}, {"http": "http://127.0.0.1"}),
|
|
(
|
|
{"https_proxy": "http://127.0.0.1", "HTTP_PROXY": "https://127.0.0.1"},
|
|
{"https": "http://127.0.0.1", "http": "https://127.0.0.1"},
|
|
),
|
|
(
|
|
{"all_proxy": "http://127.0.0.1", "ALL_PROXY": "https://1.1.1.1"},
|
|
{"all": "http://127.0.0.1"},
|
|
),
|
|
(
|
|
{"https_proxy": "http://127.0.0.1", "HTTPS_PROXY": "https://1.1.1.1"},
|
|
{"https": "http://127.0.0.1"},
|
|
),
|
|
({"TRAVIS_APT_PROXY": "http://127.0.0.1"}, {}),
|
|
],
|
|
)
|
|
def test_get_environment_proxies(environment, proxies):
|
|
os.environ.update(environment)
|
|
|
|
assert get_environment_proxies() == proxies
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"headers, output",
|
|
[
|
|
([("content-type", "text/html")], [("content-type", "text/html")]),
|
|
([("authorization", "s3kr3t")], [("authorization", "[secure]")]),
|
|
([("proxy-authorization", "s3kr3t")], [("proxy-authorization", "[secure]")]),
|
|
],
|
|
)
|
|
def test_obfuscate_sensitive_headers(headers, output):
|
|
bytes_headers = [(k.encode(), v.encode()) for k, v in headers]
|
|
bytes_output = [(k.encode(), v.encode()) for k, v in output]
|
|
assert list(obfuscate_sensitive_headers(headers)) == output
|
|
assert list(obfuscate_sensitive_headers(bytes_headers)) == bytes_output
|