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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
from __future__ import annotations
import shutil
import pytest
from unearth import Link
from pdm.models.candidates import Candidate
from pdm.models.requirements import Requirement, parse_requirement
from pdm.models.specifiers import PySpecSet
from pdm.utils import is_path_relative_to, path_to_url
from tests import FIXTURES
def to_lines(requirements: list[Requirement]) -> list[str]:
return sorted([r.as_line() for r in requirements])
@pytest.mark.usefixtures("local_finder")
def test_parse_local_directory_metadata(project, is_editable):
requirement_line = f"{(FIXTURES / 'projects/demo').as_posix()}"
req = parse_requirement(requirement_line, is_editable)
candidate = Candidate(req)
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == [
'chardet; os_name == "nt"',
"idna",
]
assert candidate.name == "demo"
assert candidate.version == "0.0.1"
@pytest.mark.usefixtures("vcs", "local_finder")
def test_parse_vcs_metadata(project, is_editable):
requirement_line = "git+https://github.com/test-root/demo.git@master#egg=demo"
req = parse_requirement(requirement_line, is_editable)
candidate = Candidate(req)
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == [
'chardet; os_name == "nt"',
"idna",
]
assert candidate.name == "demo"
assert candidate.version == "0.0.1"
lockfile = candidate.as_lockfile_entry(project.root)
assert lockfile["ref"] == "master"
if is_editable:
assert "revision" not in lockfile
else:
assert lockfile["revision"] == "1234567890abcdef"
@pytest.mark.usefixtures("local_finder")
@pytest.mark.parametrize(
"requirement_line",
[
f"{(FIXTURES / 'artifacts/demo-0.0.1.tar.gz').as_posix()}",
f"{(FIXTURES / 'artifacts/demo-0.0.1-py2.py3-none-any.whl').as_posix()}",
],
)
def test_parse_artifact_metadata(requirement_line, project):
req = parse_requirement(requirement_line)
candidate = Candidate(req)
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == [
'chardet; os_name == "nt"',
"idna",
]
assert candidate.name == "demo"
assert candidate.version == "0.0.1"
@pytest.mark.usefixtures("local_finder")
def test_parse_metadata_with_extras(project):
req = parse_requirement(
f"demo[tests,security] @ file://{(FIXTURES / 'artifacts/demo-0.0.1-py2.py3-none-any.whl').as_posix()}"
)
candidate = Candidate(req)
prepared = candidate.prepare(project.environment)
assert prepared.link.is_wheel
assert to_lines(prepared.get_dependencies_from_metadata()) == [
"pytest",
'requests; python_version >= "3.6"',
]
@pytest.mark.usefixtures("local_finder")
def test_parse_remote_link_metadata(project):
req = parse_requirement("http://fixtures.test/artifacts/demo-0.0.1-py2.py3-none-any.whl")
candidate = Candidate(req)
prepared = candidate.prepare(project.environment)
assert prepared.link.is_wheel
assert to_lines(prepared.get_dependencies_from_metadata()) == [
'chardet; os_name == "nt"',
"idna",
]
assert candidate.name == "demo"
assert candidate.version == "0.0.1"
@pytest.mark.usefixtures("local_finder")
@pytest.mark.parametrize(
"req_str",
[
"demo @ file:///${PROJECT_ROOT}/tests/fixtures/artifacts/demo-0.0.1-py2.py3-none-any.whl",
"demo @ file:///${PROJECT_ROOT}/tests/fixtures/artifacts/demo-0.0.1.tar.gz",
"demo @ file:///${PROJECT_ROOT}/tests/fixtures/projects/demo",
"-e ./tests/fixtures/projects/demo",
"-e file:///${PROJECT_ROOT}/tests/fixtures/projects/demo#egg=demo",
"-e file:///${PROJECT_ROOT}/tests/fixtures/projects/demo-#-with-hash#egg=demo",
],
)
def test_expand_project_root_in_url(req_str, core):
project = core.create_project(FIXTURES.parent.parent)
if req_str.startswith("-e "):
req = parse_requirement(req_str[3:], True)
else:
req = parse_requirement(req_str)
req.relocate(project.backend)
candidate = Candidate(req)
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == [
'chardet; os_name == "nt"',
"idna",
]
lockfile_entry = candidate.as_lockfile_entry(project.root)
if "path" in lockfile_entry:
assert lockfile_entry["path"].startswith("./")
else:
assert "${PROJECT_ROOT}" in lockfile_entry["url"]
@pytest.mark.usefixtures("local_finder")
def test_parse_project_file_on_build_error(project):
req = parse_requirement(f"{(FIXTURES / 'projects/demo-failure').as_posix()}")
candidate = Candidate(req)
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == [
'chardet; os_name == "nt"',
"idna",
]
assert candidate.name == "demo"
assert candidate.version == "0.0.1"
@pytest.mark.usefixtures("local_finder")
def test_parse_project_file_on_build_error_with_extras(project):
req = parse_requirement(f"{(FIXTURES / 'projects/demo-failure').as_posix()}")
req.extras = ("security", "tests")
candidate = Candidate(req)
deps = to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata())
assert 'requests; python_version >= "3.6"' in deps
assert "pytest" in deps
assert candidate.name == "demo"
assert candidate.version == "0.0.1"
@pytest.mark.usefixtures("local_finder")
def test_parse_project_file_on_build_error_no_dep(project):
req = parse_requirement(f"{(FIXTURES / 'projects/demo-failure-no-dep').as_posix()}")
candidate = Candidate(req)
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == []
assert candidate.name == "demo"
assert candidate.version == "0.0.1"
@pytest.mark.usefixtures("local_finder")
def test_parse_poetry_project_metadata(project, is_editable):
req = parse_requirement(f"{(FIXTURES / 'projects/poetry-demo').as_posix()}", is_editable)
candidate = Candidate(req)
requests_dep = "requests<3.0,>=2.6"
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == [requests_dep]
assert candidate.name == "poetry-demo"
assert candidate.version == "0.1.0"
@pytest.mark.usefixtures("local_finder")
def test_parse_flit_project_metadata(project, is_editable):
req = parse_requirement(f"{(FIXTURES / 'projects/flit-demo').as_posix()}", is_editable)
candidate = Candidate(req)
deps = to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata())
requests_dep = "requests>=2.6"
assert requests_dep in deps
assert 'configparser; python_version == "2.7"' in deps
assert candidate.name == "pyflit"
assert candidate.version == "0.1.0"
@pytest.mark.usefixtures("vcs", "local_finder")
def test_vcs_candidate_in_subdirectory(project, is_editable):
line = "git+https://github.com/test-root/demo-parent-package.git@master#egg=package-a&subdirectory=package-a"
req = parse_requirement(line, is_editable)
candidate = Candidate(req)
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == ["flask"]
assert candidate.version == "0.1.0"
line = "git+https://github.com/test-root/demo-parent-package.git@master#egg=package-b&subdirectory=package-b"
req = parse_requirement(line, is_editable)
candidate = Candidate(req)
expected_deps = ["django"]
assert to_lines(candidate.prepare(project.environment).get_dependencies_from_metadata()) == expected_deps
tail = "+editable" if is_editable else ""
assert candidate.version == f"0.1.0{tail}"
@pytest.mark.usefixtures("local_finder")
def test_sdist_candidate_with_wheel_cache(project, mocker):
file_link = Link(path_to_url((FIXTURES / "artifacts/demo-0.0.1.tar.gz").as_posix()))
built_path = FIXTURES / "artifacts/demo-0.0.1-py2.py3-none-any.whl"
wheel_cache = project.make_wheel_cache()
cache_path = wheel_cache.get_path_for_link(file_link, project.environment.spec)
if not cache_path.exists():
cache_path.mkdir(parents=True)
shutil.copy2(built_path, cache_path)
req = parse_requirement(file_link.url)
downloader = mocker.patch("unearth.finder.unpack_link")
prepared = Candidate(req).prepare(project.environment)
prepared.metadata
downloader.assert_not_called()
assert prepared._cached.name == built_path.name
prepared._cached = None
builder = mocker.patch("pdm.builders.WheelBuilder.build")
wheel = prepared.build()
builder.assert_not_called()
assert wheel.name == built_path.name
@pytest.mark.usefixtures("vcs", "local_finder")
def test_cache_vcs_immutable_revision(project):
req = parse_requirement("git+https://github.com/test-root/demo.git@master#egg=demo")
candidate = Candidate(req)
candidate.prepare(project.environment).build()
assert not is_path_relative_to(candidate.prepared._get_build_cache(), project.cache_dir)
assert candidate.get_revision() == "1234567890abcdef"
req = parse_requirement("git+https://github.com/test-root/demo.git@1234567890abcdef#egg=demo")
candidate = Candidate(req)
candidate.prepare(project.environment).build()
assert is_path_relative_to(candidate.prepared._get_build_cache(), project.cache_dir)
assert candidate.get_revision() == "1234567890abcdef"
# test the revision can be got correctly after cached
prepared = Candidate(req).prepare(project.environment)
assert not prepared._source_dir
assert prepared.revision == "1234567890abcdef"
@pytest.mark.usefixtures("local_finder")
def test_cache_egg_info_sdist(project):
req = parse_requirement("demo @ http://fixtures.test/artifacts/demo-0.0.1.tar.gz")
candidate = Candidate(req)
candidate.prepare(project.environment).build()
assert is_path_relative_to(candidate.prepared._get_build_cache(), project.cache_dir)
def test_invalidate_incompatible_wheel_link(project):
project.project_config["pypi.url"] = "https://my.pypi.org/simple"
project.environment.python_requires = PySpecSet(">=3.6")
project.environment.__dict__["spec"] = project.environment.spec.replace(platform="linux")
req = parse_requirement("demo")
prepared = Candidate(
req,
name="demo",
version="0.0.1",
link=Link("http://fixtures.test/artifacts/demo-0.0.1-cp36-cp36m-win_amd64.whl"),
).prepare(project.environment)
prepared._obtain(True)
assert prepared._cached.name == prepared.link.filename == "demo-0.0.1-cp36-cp36m-win_amd64.whl"
prepared._obtain(False)
assert prepared._cached.name == prepared.link.filename == "demo-0.0.1-py2.py3-none-any.whl"
def test_legacy_pep345_tag_link(project):
project.project_config["pypi.url"] = "https://my.pypi.org/simple"
req = parse_requirement("pep345-legacy")
repo = project.get_repository()
_ = next(iter(repo.find_candidates(req)))
@pytest.mark.filterwarnings("ignore::FutureWarning")
def test_ignore_invalid_py_version(project):
project.project_config["pypi.url"] = "https://my.pypi.org/simple"
req = parse_requirement("wheel")
repo = project.get_repository()
_ = next(iter(repo.find_candidates(req)))
def test_find_candidates_from_find_links(project):
project.pyproject.settings["source"] = [
{"name": "test", "url": "http://fixtures.test/index/demo.html", "verify_ssl": False, "type": "find_links"}
]
project.pyproject.write(False)
repo = project.get_repository()
candidates = list(repo.find_candidates(parse_requirement("demo")))
assert len(candidates) == 1
assert candidates[0].link.filename == "demo-0.0.1-py2.py3-none-any.whl"
def test_parse_metadata_from_pep621(project, mocker):
builder = mocker.patch("pdm.builders.wheel.WheelBuilder.build")
req = parse_requirement(f"test-hatch @ file://{FIXTURES.as_posix()}/projects/test-hatch-static")
candidate = Candidate(req)
distribution = candidate.prepare(project.environment).metadata
assert sorted(distribution.requires) == ["click", "requests"]
assert distribution.metadata["Summary"] == "Test hatch project"
builder.assert_not_called()
def test_parse_metadata_with_dynamic_fields(project, local_finder):
req = parse_requirement(f"demo-package @ file://{FIXTURES.as_posix()}/projects/demo-src-package")
candidate = Candidate(req)
metadata = candidate.prepare(project.environment).metadata
assert not metadata.requires
assert metadata.version == "0.1.0"
def test_get_metadata_for_non_existing_path(project):
req = parse_requirement("file:///${PROJECT_ROOT}/non-existing-path")
candidate = Candidate(req)
with pytest.raises(FileNotFoundError, match="No such file or directory"):
candidate.prepare(project.environment).metadata
|