* tests: fully type the test suite * chore: require more typing Signed-off-by: Henry Schreiner <henryfs@princeton.edu> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: Henry Schreiner <henryfs@princeton.edu> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
import ssl
|
|
from pathlib import Path
|
|
|
|
import certifi
|
|
import pytest
|
|
|
|
from cibuildwheel.util.file import download
|
|
|
|
DOWNLOAD_URL = "https://cdn.jsdelivr.net/gh/pypa/cibuildwheel@v1.6.3/requirements-dev.txt"
|
|
|
|
|
|
def test_download(monkeypatch: pytest.MonkeyPatch, tmp_path: Path) -> None:
|
|
monkeypatch.delenv("SSL_CERT_FILE", raising=False)
|
|
dest = tmp_path / "file.txt"
|
|
download(DOWNLOAD_URL, dest)
|
|
assert len(dest.read_bytes()) == 134
|
|
|
|
|
|
def test_download_good_ssl_cert_file(monkeypatch: pytest.MonkeyPatch, tmp_path: Path) -> None:
|
|
monkeypatch.setenv("SSL_CERT_FILE", certifi.where())
|
|
dest = tmp_path / "file.txt"
|
|
download(DOWNLOAD_URL, dest)
|
|
assert len(dest.read_bytes()) == 134
|
|
|
|
|
|
def test_download_bad_ssl_cert_file(monkeypatch: pytest.MonkeyPatch, tmp_path: Path) -> None:
|
|
bad_cafile = tmp_path / "ca.pem"
|
|
bad_cafile.write_text("bad certificates")
|
|
monkeypatch.setenv("SSL_CERT_FILE", str(bad_cafile))
|
|
dest = tmp_path / "file.txt"
|
|
with pytest.raises(ssl.SSLError):
|
|
download(DOWNLOAD_URL, dest)
|