summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStéphane Bidoul <stephane.bidoul@gmail.com>2023-04-11 09:34:00 +0200
committerStéphane Bidoul <stephane.bidoul@gmail.com>2023-04-11 12:54:39 +0200
commit2f271838e7fb32930a7b21a35b9bbdc87a103f34 (patch)
tree27654177386366decb37e716ad238c2bcd65876c /tests
parent55f1251fa28ba69876f33e8a917dc17cee1b7995 (diff)
downloadpip-2f271838e7fb32930a7b21a35b9bbdc87a103f34.tar.gz
Report requested_extras for direct URLs
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/test_install_report.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/functional/test_install_report.py b/tests/functional/test_install_report.py
index 83f5b5c2c..e7fec8985 100644
--- a/tests/functional/test_install_report.py
+++ b/tests/functional/test_install_report.py
@@ -1,4 +1,5 @@
import json
+import textwrap
from pathlib import Path
from typing import Any, Dict
@@ -178,6 +179,51 @@ def test_install_report_vcs_editable(
assert pip_test_package_report["download_info"]["dir_info"]["editable"] is True
+@pytest.mark.network
+def test_install_report_local_path_with_extras(
+ script: PipTestEnvironment, tmp_path: Path, shared_data: TestData
+) -> None:
+ """Test report remote editable."""
+ project_path = tmp_path / "pkga"
+ project_path.mkdir()
+ project_path.joinpath("pyproject.toml").write_text(
+ textwrap.dedent(
+ """\
+ [project]
+ name = "pkga"
+ version = "1.0"
+
+ [project.optional-dependencies]
+ test = ["simple"]
+ """
+ )
+ )
+ report_path = tmp_path / "report.json"
+ script.pip(
+ "install",
+ "--dry-run",
+ "--no-build-isolation",
+ "--no-index",
+ "--find-links",
+ str(shared_data.root / "packages/"),
+ "--report",
+ str(report_path),
+ str(project_path) + "[test]",
+ )
+ report = json.loads(report_path.read_text())
+ assert len(report["install"]) == 2
+ pkga_report = report["install"][0]
+ assert pkga_report["metadata"]["name"] == "pkga"
+ assert pkga_report["is_direct"] is True
+ assert pkga_report["requested"] is True
+ assert pkga_report["requested_extras"] == ["test"]
+ simple_report = report["install"][1]
+ assert simple_report["metadata"]["name"] == "simple"
+ assert simple_report["is_direct"] is False
+ assert simple_report["requested"] is False
+ assert "requested_extras" not in simple_report
+
+
def test_install_report_to_stdout(
script: PipTestEnvironment, shared_data: TestData
) -> None: