38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
from __future__ import annotations
|
|
|
|
import ssl
|
|
|
|
import certifi
|
|
import pytest
|
|
|
|
from cibuildwheel.util.file import download
|
|
|
|
TYPE_CHECKING = False
|
|
if TYPE_CHECKING:
|
|
from pathlib import Path
|
|
|
|
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)
|