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
|
import re
from typing import List
import pytest
from pip._vendor.packaging.version import Version
from pip._internal.commands.debug import create_vendor_txt_map
from pip._internal.utils import compatibility_tags
from tests.lib import PipTestEnvironment
@pytest.mark.parametrize(
"expected_text",
[
"sys.executable: ",
"sys.getdefaultencoding: ",
"sys.getfilesystemencoding: ",
"locale.getpreferredencoding: ",
"sys.platform: ",
"sys.implementation:",
"'cert' config value: ",
"REQUESTS_CA_BUNDLE: ",
"CURL_CA_BUNDLE: ",
"pip._vendor.certifi.where(): ",
"pip._vendor.DEBUNDLED: ",
"vendored library versions:",
],
)
def test_debug(script: PipTestEnvironment, expected_text: str) -> None:
"""
Check that certain strings are present in the output.
"""
args = ["debug"]
result = script.pip(*args, allow_stderr_warning=True)
stdout = result.stdout
assert expected_text in stdout
def test_debug__library_versions(script: PipTestEnvironment) -> None:
"""
Check the library versions normal output.
"""
args = ["debug"]
result = script.pip(*args, allow_stderr_warning=True)
print(result.stdout)
vendored_versions = create_vendor_txt_map()
for name, value in vendored_versions.items():
match = re.search(rf"{name}==(\S+)", result.stdout)
assert match is not None, f"Could not find {name} in output"
assert Version(match.group(1)) == Version(value)
@pytest.mark.parametrize(
"args",
[
[],
["--verbose"],
],
)
def test_debug__tags(script: PipTestEnvironment, args: List[str]) -> None:
"""
Check the compatible tag output.
"""
args = ["debug"] + args
result = script.pip(*args, allow_stderr_warning=True)
stdout = result.stdout
tags = compatibility_tags.get_supported()
expected_tag_header = "Compatible tags: {}".format(len(tags))
assert expected_tag_header in stdout
show_verbose_note = "--verbose" not in args
assert (
"...\n [First 10 tags shown. Pass --verbose to show all.]" in stdout
) == show_verbose_note
@pytest.mark.parametrize(
"args, expected",
[
(["--python-version", "3.7"], "(target: version_info='3.7')"),
],
)
def test_debug__target_options(
script: PipTestEnvironment, args: List[str], expected: str
) -> None:
"""
Check passing target-related options.
"""
args = ["debug"] + args
result = script.pip(*args, allow_stderr_warning=True)
stdout = result.stdout
assert "Compatible tags: " in stdout
assert expected in stdout
|