Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dry-run and fast-deps behavior testing #12193

Merged
merged 6 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/12183.trivial.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add test cases for some behaviors of ``install --dry-run`` and ``--use-feature=fast-deps``.
30 changes: 30 additions & 0 deletions tests/functional/test_fast_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
import json
import os
import pathlib
import re
from os.path import basename
from typing import Iterable

from pip._vendor.packaging.utils import canonicalize_name
from pytest import mark

from pip._internal.utils.misc import hash_file
from tests.lib import PipTestEnvironment, TestData, TestPipResult


Expand Down Expand Up @@ -101,3 +103,31 @@ def test_hash_mismatch(script: PipTestEnvironment, tmp_path: pathlib.Path) -> No
expect_error=True,
)
assert "DO NOT MATCH THE HASHES" in result.stderr


@mark.network
def test_hash_mismatch_existing_download(
script: PipTestEnvironment, tmp_path: pathlib.Path
) -> None:
reqs = tmp_path / "requirements.txt"
reqs.write_text("idna==2.10")
dl_dir = tmp_path / "downloads"
dl_dir.mkdir()
idna_wheel = dl_dir / "idna-2.10-py2.py3-none-any.whl"
idna_wheel.write_text("asdf")
result = script.pip(
"download",
"--use-feature=fast-deps",
cosmicexplorer marked this conversation as resolved.
Show resolved Hide resolved
"-r",
str(reqs),
"-d",
str(dl_dir),
allow_stderr_warning=True,
)
assert re.search(
r"WARNING: Previously-downloaded file.*has bad hash", result.stderr
)
cosmicexplorer marked this conversation as resolved.
Show resolved Hide resolved
assert (
hash_file(str(idna_wheel))[0].hexdigest()
== "b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0"
cosmicexplorer marked this conversation as resolved.
Show resolved Hide resolved
)
67 changes: 61 additions & 6 deletions tests/functional/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import textwrap
from os.path import curdir, join, pardir
from pathlib import Path
from typing import Dict, List, Tuple
from typing import Callable, Dict, Iterable, List, Optional, Tuple

import pytest

Expand All @@ -20,6 +20,7 @@
PipTestEnvironment,
ResolverVariant,
TestData,
TestPipResult,
_create_svn_repo,
_create_test_package,
create_basic_wheel_for_package,
Expand Down Expand Up @@ -2371,14 +2372,68 @@ def test_install_logs_pip_version_in_debug(
assert_re_match(pattern, result.stdout)


def test_install_dry_run(script: PipTestEnvironment, data: TestData) -> None:
"""Test that pip install --dry-run logs what it would install."""
result = script.pip(
"install", "--dry-run", "--find-links", data.find_links, "simple"
)
@pytest.fixture
def install_find_links(
script: PipTestEnvironment,
data: TestData,
) -> Callable[[Iterable[str], bool, Optional[Path]], TestPipResult]:
def install(
args: Iterable[str], dry_run: bool, target_dir: Optional[Path]
) -> TestPipResult:
return script.pip(
"install",
*(
(
"--target",
str(target_dir),
)
if target_dir is not None
else ()
),
*(("--dry-run",) if dry_run else ()),
"--no-index",
"--find-links",
data.find_links,
*args,
)

return install
cosmicexplorer marked this conversation as resolved.
Show resolved Hide resolved


@pytest.mark.parametrize(
"with_target_dir",
(True, False),
)
def test_install_dry_run_nothing_installed(
script: PipTestEnvironment,
tmpdir: Path,
install_find_links: Callable[[Iterable[str], bool, Optional[Path]], TestPipResult],
with_target_dir: bool,
) -> None:
"""Test that pip install --dry-run logs what it would install, but doesn't actually
install anything."""
if with_target_dir:
install_dir = tmpdir / "fake-install"
install_dir.mkdir()
else:
install_dir = None

result = install_find_links(["simple"], True, install_dir)
cosmicexplorer marked this conversation as resolved.
Show resolved Hide resolved
assert "Would install simple-3.0" in result.stdout
assert "Successfully installed" not in result.stdout

script.assert_not_installed("simple")
if with_target_dir:
assert not os.listdir(install_dir)

# Ensure that the same install command would normally have worked if not for
# --dry-run.
install_find_links(["simple"], False, install_dir)
if with_target_dir:
assert os.listdir(install_dir)
else:
script.assert_installed(simple="3.0")

cosmicexplorer marked this conversation as resolved.
Show resolved Hide resolved

@pytest.mark.skipif(
sys.version_info < (3, 11),
Expand Down
14 changes: 14 additions & 0 deletions tests/unit/metadata/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,17 @@ def test_dist_found_in_zip(tmp_path: Path) -> None:
dist = get_environment([location]).get_distribution("pkg")
assert dist is not None and dist.location is not None
assert Path(dist.location) == Path(location)


@pytest.mark.parametrize(
"path",
(
"/path/to/foo.egg-info".replace("/", os.path.sep),
# Tests issue fixed by https://github.com/pypa/pip/pull/2530
"/path/to/foo.egg-info/".replace("/", os.path.sep),
),
)
def test_trailing_slash_directory_metadata(path: str) -> None:
dist = get_directory_distribution(path)
assert dist.raw_name == dist.canonical_name == "foo"
assert dist.location == "/path/to".replace("/", os.path.sep)
17 changes: 0 additions & 17 deletions tests/unit/test_req.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
PreviousBuildDirError,
)
from pip._internal.index.package_finder import PackageFinder
from pip._internal.metadata import select_backend
from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo
from pip._internal.models.link import Link
from pip._internal.network.session import PipSession
Expand Down Expand Up @@ -600,22 +599,6 @@ def test_url_preserved_editable_req(self) -> None:
assert req.link is not None
assert req.link.url == url

@pytest.mark.parametrize(
"path",
(
"/path/to/foo.egg-info".replace("/", os.path.sep),
# Tests issue fixed by https://github.com/pypa/pip/pull/2530
"/path/to/foo.egg-info/".replace("/", os.path.sep),
),
)
def test_get_dist(self, path: str) -> None:
req = install_req_from_line("foo")
req.metadata_directory = path
dist = req.get_dist()
assert isinstance(dist, select_backend().Distribution)
assert dist.raw_name == dist.canonical_name == "foo"
assert dist.location == "/path/to".replace("/", os.path.sep)

def test_markers(self) -> None:
for line in (
# recommended syntax
Expand Down