-
Notifications
You must be signed in to change notification settings - Fork 3k
/
test_show.py
339 lines (276 loc) · 11.5 KB
/
test_show.py
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
import os
import pathlib
import re
from pip import __version__
from pip._internal.commands.show import search_packages_info
from pip._internal.operations.install.legacy import (
write_installed_files_from_setuptools_record,
)
from pip._internal.utils.unpacking import untar_file
from tests.lib import PipTestEnvironment, TestData, create_test_package_with_setup
def test_basic_show(script: PipTestEnvironment) -> None:
"""
Test end to end test for show command.
"""
result = script.pip("show", "pip")
lines = result.stdout.splitlines()
assert len(lines) == 10
assert "Name: pip" in lines
assert f"Version: {__version__}" in lines
assert any(line.startswith("Location: ") for line in lines)
assert "Requires: " in lines
def test_show_with_files_not_found(script: PipTestEnvironment, data: TestData) -> None:
"""
Test for show command with installed files listing enabled and
installed-files.txt not found.
"""
editable = data.packages.joinpath("SetupPyUTF8")
script.pip("install", "-e", editable)
result = script.pip("show", "-f", "SetupPyUTF8")
lines = result.stdout.splitlines()
assert len(lines) == 12
assert "Name: SetupPyUTF8" in lines
assert "Version: 0.0.0" in lines
assert any(line.startswith("Location: ") for line in lines)
assert "Requires: " in lines
assert "Files:" in lines
assert "Cannot locate RECORD or installed-files.txt" in lines
def test_show_with_files_from_wheel(script: PipTestEnvironment, data: TestData) -> None:
"""
Test that a wheel's files can be listed.
"""
wheel_file = data.packages.joinpath("simple.dist-0.1-py2.py3-none-any.whl")
script.pip("install", "--no-index", wheel_file)
result = script.pip("show", "-f", "simple.dist")
lines = result.stdout.splitlines()
assert "Name: simple.dist" in lines
assert "Cannot locate RECORD or installed-files.txt" not in lines[6], lines[6]
assert re.search(r"Files:\n( .+\n)+", result.stdout)
assert f" simpledist{os.sep}__init__.py" in lines[6:]
def test_show_with_files_from_legacy(
tmp_path: pathlib.Path, script: PipTestEnvironment, data: TestData
) -> None:
"""
Test listing files in the show command (legacy installed-files.txt).
"""
# Since 'pip install' now always tries to build a wheel from sdist, it
# cannot properly generate a setup. The legacy code path is basically
# 'setup.py install' plus installed-files.txt, which we manually generate.
source_dir = tmp_path.joinpath("unpacked-sdist")
setuptools_record = tmp_path.joinpath("installed-record.txt")
untar_file(data.packages.joinpath("simple-1.0.tar.gz"), str(source_dir))
script.run(
"python",
"setup.py",
"install",
"--single-version-externally-managed",
"--record",
str(setuptools_record),
cwd=source_dir,
)
write_installed_files_from_setuptools_record(
setuptools_record.read_text().splitlines(),
root=None,
req_description="simple==1.0",
)
result = script.pip("show", "--files", "simple")
lines = result.stdout.splitlines()
assert "Cannot locate RECORD or installed-files.txt" not in lines[6], lines[6]
assert re.search(r"Files:\n( .+\n)+", result.stdout)
assert f" simple{os.sep}__init__.py" in lines[6:]
def test_missing_argument(script: PipTestEnvironment) -> None:
"""
Test show command with no arguments.
"""
result = script.pip("show", expect_error=True)
assert "ERROR: Please provide a package name or names." in result.stderr
def test_find_package_not_found() -> None:
"""
Test trying to get info about a nonexistent package.
"""
result = search_packages_info(["abcd3"])
assert len(list(result)) == 0
def test_report_single_not_found(script: PipTestEnvironment) -> None:
"""
Test passing one name and that isn't found.
"""
# We choose a non-canonicalized name to test that the non-canonical
# form is logged.
# Also, the following should report an error as there are no results
# to print. Consequently, there is no need to pass
# allow_stderr_warning=True since this is implied by expect_error=True.
result = script.pip("show", "Abcd-3", expect_error=True)
assert "WARNING: Package(s) not found: Abcd-3" in result.stderr
assert not result.stdout.splitlines()
def test_report_mixed_not_found(script: PipTestEnvironment) -> None:
"""
Test passing a mixture of found and not-found names.
"""
# We test passing non-canonicalized names.
result = script.pip("show", "Abcd3", "A-B-C", "pip", allow_stderr_warning=True)
assert "WARNING: Package(s) not found: A-B-C, Abcd3" in result.stderr
lines = result.stdout.splitlines()
assert len(lines) == 10
assert "Name: pip" in lines
def test_search_any_case() -> None:
"""
Search for a package in any case.
"""
result = list(search_packages_info(["PIP"]))
assert len(result) == 1
assert result[0].name == "pip"
def test_more_than_one_package() -> None:
"""
Search for more than one package.
"""
result = list(search_packages_info(["pIp", "pytest", "Virtualenv"]))
assert len(result) == 3
def test_show_verbose_with_classifiers(script: PipTestEnvironment) -> None:
"""
Test that classifiers can be listed
"""
result = script.pip("show", "pip", "--verbose")
lines = result.stdout.splitlines()
assert "Name: pip" in lines
assert re.search(r"Classifiers:\n( .+\n)+", result.stdout)
assert "Intended Audience :: Developers" in result.stdout
def test_show_verbose_installer(script: PipTestEnvironment, data: TestData) -> None:
"""
Test that the installer is shown (this currently needs a wheel install)
"""
wheel_file = data.packages.joinpath("simple.dist-0.1-py2.py3-none-any.whl")
script.pip("install", "--no-index", wheel_file)
result = script.pip("show", "--verbose", "simple.dist")
lines = result.stdout.splitlines()
assert "Name: simple.dist" in lines
assert "Installer: pip" in lines
def test_show_verbose_project_urls(script: PipTestEnvironment) -> None:
"""
Test that project urls can be listed
"""
result = script.pip("show", "pip", "--verbose")
lines = result.stdout.splitlines()
assert "Name: pip" in lines
assert re.search(r"Project-URLs:\n( .+\n)+", result.stdout)
assert "Source, https://github.com/pypa/pip" in result.stdout
def test_show_verbose(script: PipTestEnvironment) -> None:
"""
Test end to end test for verbose show command.
"""
result = script.pip("show", "--verbose", "pip")
lines = result.stdout.splitlines()
assert any(line.startswith("Metadata-Version: ") for line in lines)
assert any(line.startswith("Installer: ") for line in lines)
assert "Entry-points:" in lines
assert "Classifiers:" in lines
assert "Project-URLs:" in lines
def test_all_fields(script: PipTestEnvironment) -> None:
"""
Test that all the fields are present
"""
result = script.pip("show", "pip")
lines = result.stdout.splitlines()
expected = {
"Name",
"Version",
"Summary",
"Home-page",
"Author",
"Author-email",
"License",
"Location",
"Requires",
"Required-by",
}
actual = {re.sub(":.*$", "", line) for line in lines}
assert actual == expected
def test_pip_show_is_short(script: PipTestEnvironment) -> None:
"""
Test that pip show stays short
"""
result = script.pip("show", "pip")
lines = result.stdout.splitlines()
assert len(lines) <= 10
def test_pip_show_divider(script: PipTestEnvironment, data: TestData) -> None:
"""
Expect a divider between packages
"""
script.pip("install", "pip-test-package", "--no-index", "-f", data.packages)
result = script.pip("show", "pip", "pip-test-package")
lines = result.stdout.splitlines()
assert "---" in lines
def test_package_name_is_canonicalized(
script: PipTestEnvironment, data: TestData
) -> None:
script.pip("install", "pip-test-package", "--no-index", "-f", data.packages)
dash_show_result = script.pip("show", "pip-test-package")
underscore_upper_show_result = script.pip("show", "pip-test_Package")
assert underscore_upper_show_result.returncode == 0
assert underscore_upper_show_result.stdout == dash_show_result.stdout
def test_show_required_by_packages_basic(
script: PipTestEnvironment, data: TestData
) -> None:
"""
Test that installed packages that depend on this package are shown
"""
editable_path = os.path.join(data.src, "requires_simple")
script.pip("install", "--no-index", "-f", data.find_links, editable_path)
result = script.pip("show", "simple")
lines = result.stdout.splitlines()
assert "Name: simple" in lines
assert "Required-by: requires-simple" in lines
def test_show_required_by_packages_capitalized(
script: PipTestEnvironment, data: TestData
) -> None:
"""
Test that the installed packages which depend on a package are shown
where the package has a capital letter
"""
editable_path = os.path.join(data.src, "requires_capitalized")
script.pip("install", "--no-index", "-f", data.find_links, editable_path)
result = script.pip("show", "simple")
lines = result.stdout.splitlines()
assert "Name: simple" in lines
assert "Required-by: Requires-Capitalized" in lines
def test_show_required_by_packages_requiring_capitalized(
script: PipTestEnvironment, data: TestData
) -> None:
"""
Test that the installed packages which depend on a package are shown
where the package has a name with a mix of
lower and upper case letters
"""
required_package_path = os.path.join(data.src, "requires_capitalized")
script.pip("install", "--no-index", "-f", data.find_links, required_package_path)
editable_path = os.path.join(data.src, "requires_requires_capitalized")
script.pip("install", "--no-index", "-f", data.find_links, editable_path)
result = script.pip("show", "Requires_Capitalized")
lines = result.stdout.splitlines()
print(lines)
assert "Name: Requires-Capitalized" in lines
assert "Required-by: requires-requires-capitalized" in lines
def test_show_skip_work_dir_pkg(script: PipTestEnvironment) -> None:
"""
Test that show should not include package
present in working directory
"""
# Create a test package and create .egg-info dir
pkg_path = create_test_package_with_setup(script, name="simple", version="1.0")
script.run("python", "setup.py", "egg_info", expect_stderr=True, cwd=pkg_path)
# Show should not include package simple when run from package directory
result = script.pip("show", "simple", expect_error=True, cwd=pkg_path)
assert "WARNING: Package(s) not found: simple" in result.stderr
def test_show_include_work_dir_pkg(script: PipTestEnvironment) -> None:
"""
Test that show should include package in working directory
if working directory is added in PYTHONPATH
"""
# Create a test package and create .egg-info dir
pkg_path = create_test_package_with_setup(script, name="simple", version="1.0")
script.run("python", "setup.py", "egg_info", expect_stderr=True, cwd=pkg_path)
script.environ.update({"PYTHONPATH": pkg_path})
# Show should include package simple when run from package directory,
# when package directory is in PYTHONPATH
result = script.pip("show", "simple", cwd=pkg_path)
lines = result.stdout.splitlines()
assert "Name: simple" in lines