1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
from __future__ import annotations
import stat
import sys
from pathlib import Path
from zipfile import ZIP_DEFLATED, ZipFile
import pytest
from pytest import MonkeyPatch, TempPathFactory
from wheel.wheelfile import WheelError, WheelFile
@pytest.fixture
def wheel_path(tmp_path: Path) -> Path:
return tmp_path.joinpath("test-1.0-py2.py3-none-any.whl")
@pytest.mark.parametrize(
"filename",
[
"foo-2-py3-none-any.whl",
"foo-2-py2.py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
],
)
def test_wheelfile_re(filename: str, tmp_path: Path) -> None:
# Regression test for #208 and #485
path = tmp_path / filename
with WheelFile(path, "w") as wf:
assert wf.parsed_filename.group("namever") == "foo-2"
@pytest.mark.parametrize(
"filename",
[
"test.whl",
"test-1.0.whl",
"test-1.0-py2.whl",
"test-1.0-py2-none.whl",
"test-1.0-py2-none-any",
"test-1.0-py 2-none-any.whl",
],
)
def test_bad_wheel_filename(filename: str) -> None:
exc = pytest.raises(WheelError, WheelFile, filename)
exc.match(f"^Bad wheel filename {filename!r}$")
def test_missing_record(wheel_path: Path) -> None:
with ZipFile(wheel_path, "w") as zf:
zf.writestr("hello/héllö.py", 'print("Héllö, w0rld!")\n')
exc = pytest.raises(WheelError, WheelFile, wheel_path)
exc.match("^Missing test-1.0.dist-info/RECORD file$")
def test_unsupported_hash_algorithm(wheel_path: Path) -> None:
with ZipFile(wheel_path, "w") as zf:
zf.writestr("hello/héllö.py", 'print("Héllö, w0rld!")\n')
zf.writestr(
"test-1.0.dist-info/RECORD",
"hello/héllö.py,sha000=bv-QV3RciQC2v3zL8Uvhd_arp40J5A9xmyubN34OVwo,25",
)
exc = pytest.raises(WheelError, WheelFile, wheel_path)
exc.match("^Unsupported hash algorithm: sha000$")
@pytest.mark.parametrize(
"algorithm, digest",
[
pytest.param("md5", "4J-scNa2qvSgy07rS4at-Q", id="md5"),
pytest.param("sha1", "QjCnGu5Qucb6-vir1a6BVptvOA4", id="sha1"),
],
)
def test_weak_hash_algorithm(wheel_path: Path, algorithm: str, digest: str) -> None:
hash_string = f"{algorithm}={digest}"
with ZipFile(wheel_path, "w") as zf:
zf.writestr("hello/héllö.py", 'print("Héllö, w0rld!")\n')
zf.writestr("test-1.0.dist-info/RECORD", f"hello/héllö.py,{hash_string},25")
exc = pytest.raises(WheelError, WheelFile, wheel_path)
exc.match(rf"^Weak hash algorithm \({algorithm}\) is not permitted by PEP 427$")
@pytest.mark.parametrize(
"algorithm, digest",
[
pytest.param(
"sha256", "bv-QV3RciQC2v3zL8Uvhd_arp40J5A9xmyubN34OVwo", id="sha256"
),
pytest.param(
"sha384",
"cDXriAy_7i02kBeDkN0m2RIDz85w6pwuHkt2PZ4VmT2PQc1TZs8Ebvf6eKDFcD_S",
id="sha384",
),
pytest.param(
"sha512",
"kdX9CQlwNt4FfOpOKO_X0pn_v1opQuksE40SrWtMyP1NqooWVWpzCE3myZTfpy8g2azZON_"
"iLNpWVxTwuDWqBQ",
id="sha512",
),
],
)
def test_testzip(wheel_path: Path, algorithm: str, digest: str) -> None:
hash_string = f"{algorithm}={digest}"
with ZipFile(wheel_path, "w") as zf:
zf.writestr("hello/héllö.py", 'print("Héllö, world!")\n')
zf.writestr("test-1.0.dist-info/RECORD", f"hello/héllö.py,{hash_string},25")
with WheelFile(wheel_path) as wf:
wf.testzip()
def test_testzip_missing_hash(wheel_path: Path) -> None:
with ZipFile(wheel_path, "w") as zf:
zf.writestr("hello/héllö.py", 'print("Héllö, world!")\n')
zf.writestr("test-1.0.dist-info/RECORD", "")
with WheelFile(wheel_path) as wf:
exc = pytest.raises(WheelError, wf.testzip)
exc.match("^No hash found for file 'hello/héllö.py'$")
def test_testzip_bad_hash(wheel_path: Path) -> None:
with ZipFile(wheel_path, "w") as zf:
zf.writestr("hello/héllö.py", 'print("Héllö, w0rld!")\n')
zf.writestr(
"test-1.0.dist-info/RECORD",
"hello/héllö.py,sha256=bv-QV3RciQC2v3zL8Uvhd_arp40J5A9xmyubN34OVwo,25",
)
with WheelFile(wheel_path) as wf:
exc = pytest.raises(WheelError, wf.testzip)
exc.match("^Hash mismatch for file 'hello/héllö.py'$")
def test_write_str(wheel_path: Path) -> None:
with WheelFile(wheel_path, "w") as wf:
wf.writestr("hello/héllö.py", 'print("Héllö, world!")\n')
wf.writestr("hello/h,ll,.py", 'print("Héllö, world!")\n')
with ZipFile(wheel_path, "r") as zf:
infolist = zf.infolist()
assert len(infolist) == 3
assert infolist[0].filename == "hello/héllö.py"
assert infolist[0].file_size == 25
assert infolist[1].filename == "hello/h,ll,.py"
assert infolist[1].file_size == 25
assert infolist[2].filename == "test-1.0.dist-info/RECORD"
record = zf.read("test-1.0.dist-info/RECORD")
assert record.decode("utf-8") == (
"hello/héllö.py,sha256=bv-QV3RciQC2v3zL8Uvhd_arp40J5A9xmyubN34OVwo,25\n"
'"hello/h,ll,.py",sha256=bv-QV3RciQC2v3zL8Uvhd_arp40J5A9xmyubN34OVwo,25\n'
"test-1.0.dist-info/RECORD,,\n"
)
def test_timestamp(
tmp_path_factory: TempPathFactory, wheel_path: Path, monkeypatch: MonkeyPatch
) -> None:
# An environment variable can be used to influence the timestamp on
# TarInfo objects inside the zip. See issue #143.
build_dir = tmp_path_factory.mktemp("build")
for filename in ("one", "two", "three"):
build_dir.joinpath(filename).write_text(filename + "\n", encoding="utf-8")
# The earliest date representable in TarInfos, 1980-01-01
monkeypatch.setenv("SOURCE_DATE_EPOCH", "315576060")
with WheelFile(wheel_path, "w") as wf:
wf.write_files(str(build_dir))
with ZipFile(wheel_path, "r") as zf:
for info in zf.infolist():
assert info.date_time[:3] == (1980, 1, 1)
assert info.compress_type == ZIP_DEFLATED
@pytest.mark.skipif(
sys.platform == "win32", reason="Windows does not support UNIX-like permissions"
)
def test_attributes(tmp_path_factory: TempPathFactory, wheel_path: Path) -> None:
# With the change from ZipFile.write() to .writestr(), we need to manually
# set member attributes.
build_dir = tmp_path_factory.mktemp("build")
files = (("foo", 0o644), ("bar", 0o755))
for filename, mode in files:
path = build_dir.joinpath(filename)
path.write_text(filename + "\n", encoding="utf-8")
path.chmod(mode)
with WheelFile(wheel_path, "w") as wf:
wf.write_files(str(build_dir))
with ZipFile(wheel_path, "r") as zf:
for filename, mode in files:
info = zf.getinfo(filename)
assert info.external_attr == (mode | stat.S_IFREG) << 16
assert info.compress_type == ZIP_DEFLATED
info = zf.getinfo("test-1.0.dist-info/RECORD")
assert info.external_attr == (0o664 | stat.S_IFREG) << 16
|