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
|
from __future__ import annotations
from math import inf
from typing import TYPE_CHECKING
from unittest.mock import PropertyMock
import pytest
from pipdeptree._freeze import PipBaseDistributionAdapter
from pipdeptree._render.freeze import render_freeze
if TYPE_CHECKING:
from pipdeptree._models.dag import PackageDAG
@pytest.fixture
def patch_pip_adapter(monkeypatch: pytest.MonkeyPatch) -> None:
"""
Patches `PipBaseDistributionAdapter` such that `editable` returns `False` and `direct_url` returns `None`.
This will have the pip API always return a frozen req in the "name==version" format.
"""
monkeypatch.setattr(PipBaseDistributionAdapter, "editable", PropertyMock(return_value=False))
monkeypatch.setattr(PipBaseDistributionAdapter, "direct_url", PropertyMock(return_value=None))
@pytest.mark.parametrize(
("list_all", "expected_output"),
[
(
True,
[
"a==3.4.0",
" b==2.3.1",
" d==2.35",
" e==0.12.1",
" c==5.10.0",
" d==2.35",
" e==0.12.1",
" e==0.12.1",
"b==2.3.1",
" d==2.35",
" e==0.12.1",
"c==5.10.0",
" d==2.35",
" e==0.12.1",
" e==0.12.1",
"d==2.35",
" e==0.12.1",
"e==0.12.1",
"f==3.1",
" b==2.3.1",
" d==2.35",
" e==0.12.1",
"g==6.8.3rc1",
" e==0.12.1",
" f==3.1",
" b==2.3.1",
" d==2.35",
" e==0.12.1",
],
),
(
False,
[
"a==3.4.0",
" b==2.3.1",
" d==2.35",
" e==0.12.1",
" c==5.10.0",
" d==2.35",
" e==0.12.1",
" e==0.12.1",
"g==6.8.3rc1",
" e==0.12.1",
" f==3.1",
" b==2.3.1",
" d==2.35",
" e==0.12.1",
],
),
],
)
@pytest.mark.usefixtures("patch_pip_adapter")
def test_render_freeze(
example_dag: PackageDAG,
capsys: pytest.CaptureFixture[str],
list_all: bool,
expected_output: list[str],
) -> None:
render_freeze(example_dag, max_depth=inf, list_all=list_all)
captured = capsys.readouterr()
assert "\n".join(expected_output).strip() == captured.out.strip()
@pytest.mark.parametrize(
("depth", "expected_output"),
[
(
0,
[
"a==3.4.0",
"b==2.3.1",
"c==5.10.0",
"d==2.35",
"e==0.12.1",
"f==3.1",
"g==6.8.3rc1",
],
),
(
2,
[
"a==3.4.0",
" b==2.3.1",
" d==2.35",
" c==5.10.0",
" d==2.35",
" e==0.12.1",
"b==2.3.1",
" d==2.35",
" e==0.12.1",
"c==5.10.0",
" d==2.35",
" e==0.12.1",
" e==0.12.1",
"d==2.35",
" e==0.12.1",
"e==0.12.1",
"f==3.1",
" b==2.3.1",
" d==2.35",
"g==6.8.3rc1",
" e==0.12.1",
" f==3.1",
" b==2.3.1",
],
),
],
)
@pytest.mark.usefixtures("patch_pip_adapter")
def test_render_freeze_given_depth(
example_dag: PackageDAG,
capsys: pytest.CaptureFixture[str],
depth: int,
expected_output: list[str],
) -> None:
render_freeze(example_dag, max_depth=depth)
captured = capsys.readouterr()
assert "\n".join(expected_output).strip() == captured.out.strip()
|