-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_cli.py
191 lines (146 loc) · 5.16 KB
/
test_cli.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
# stdlib
import re
import sys
from typing import Dict, Tuple
# 3rd party
import pytest
from consolekit.testing import CliRunner, Result
from domdf_python_tools.compat import PYPY
from domdf_python_tools.paths import PathPlus, in_directory
from domdf_python_tools.utils import strtobool
from shippinglabel import read_pyvenv
# this package
from pyproject_devenv import __version__
from pyproject_devenv.__main__ import main
def test_mkdevenv(tmp_pathplus: PathPlus) -> None:
lib_requirements = [
"click",
"flask",
"werkzeug",
"consolekit",
"requests",
"apeye",
]
test_requirements = [
"pytest",
"hypothesis",
]
(tmp_pathplus / "pyproject.toml").write_lines([
"[build-system]",
'requires = ["setuptools", "wheel"]',
'',
"[project]",
"name = 'pyproject-devenv-demo'",
"dynamic = ['dependencies']",
])
(tmp_pathplus / "requirements.txt").write_lines(lib_requirements)
(tmp_pathplus / "tests").mkdir()
(tmp_pathplus / "tests/requirements.txt").write_lines(test_requirements)
with in_directory(tmp_pathplus):
runner = CliRunner()
result: Result = runner.invoke(main)
assert result.exit_code == 0
assert result.stdout == 'Successfully created development virtualenv.\n'
# Check list of packages in virtualenv
venv_dir = tmp_pathplus / "venv"
if PYPY and not sys.version_info >= (3, 8):
version_dirs = [venv_dir]
elif sys.platform == "win32":
version_dirs = [(venv_dir / "Lib")]
else:
version_dirs = list((venv_dir / "lib").glob("py*"))
for version_dir in version_dirs:
for package in lib_requirements:
assert (version_dir / "site-packages" / package).is_dir()
for package in test_requirements:
assert (version_dir / "site-packages" / package).is_dir()
assert len(version_dirs) == 1
pyvenv_config: Dict[str, str] = read_pyvenv(venv_dir)
assert "prompt" in pyvenv_config
assert pyvenv_config["prompt"] == "pyproject-devenv-demo"
assert "pyproject-devenv" in pyvenv_config
assert pyvenv_config["pyproject-devenv"] == __version__
assert "virtualenv" in pyvenv_config
assert "include-system-site-packages" in pyvenv_config
assert not strtobool(pyvenv_config["include-system-site-packages"])
@pytest.mark.parametrize(
"extra_args",
[
pytest.param(("--verbose", ), id="verbose"),
pytest.param(("--verbose", "--verbose"), id="very verbose"),
pytest.param(("-v", ), id="verbose short"),
pytest.param(("-v", "--verbose"), id="very verbose short"),
pytest.param(("-vv", ), id="very verbose short short"),
pytest.param(("--verbose", "--upgrade"), id="verbose upgrade"),
pytest.param(("-vU", ), id="verbose short upgrade short"),
]
)
def test_mkdevenv_verbose(tmp_pathplus: PathPlus, extra_args: Tuple[str, ...]) -> None:
lib_requirements = [
"click",
"flask",
"werkzeug",
"consolekit",
"requests",
"apeye",
]
test_requirements = [
"pytest",
"hypothesis",
]
(tmp_pathplus / "pyproject.toml").write_lines([
"[build-system]",
'requires = ["setuptools", "wheel"]',
'',
"[project]",
"name = 'pyproject-devenv-demo'",
"dynamic = ['dependencies']",
])
(tmp_pathplus / "requirements.txt").write_lines(lib_requirements)
(tmp_pathplus / "tests").mkdir()
(tmp_pathplus / "tests/requirements.txt").write_lines(test_requirements)
with in_directory(tmp_pathplus):
runner = CliRunner()
result: Result = runner.invoke(main, extra_args)
assert result.exit_code == 0
assert " Installing project requirements " in result.stdout
assert " Installing test requirements " in result.stdout
assert " Installing build requirements " in result.stdout
assert "Successfully created development virtualenv." in result.stdout
# Check list of packages in virtualenv
venv_dir = tmp_pathplus / "venv"
if PYPY and not sys.version_info >= (3, 8):
version_dirs = [venv_dir]
elif sys.platform == "win32":
version_dirs = [(venv_dir / "Lib")]
else:
version_dirs = list((venv_dir / "lib").glob("py*"))
for version_dir in version_dirs:
for package in lib_requirements:
assert (version_dir / "site-packages" / package).is_dir()
for package in test_requirements:
assert (version_dir / "site-packages" / package).is_dir()
assert len(version_dirs) == 1
pyvenv_config: Dict[str, str] = read_pyvenv(venv_dir)
assert "prompt" in pyvenv_config
assert pyvenv_config["prompt"] == "pyproject-devenv-demo"
assert "pyproject-devenv" in pyvenv_config
assert pyvenv_config["pyproject-devenv"] == __version__
assert "virtualenv" in pyvenv_config
assert "include-system-site-packages" in pyvenv_config
assert not strtobool(pyvenv_config["include-system-site-packages"])
def test_version(tmp_pathplus: PathPlus) -> None:
with in_directory(tmp_pathplus):
runner = CliRunner()
result: Result = runner.invoke(main, args=["--version"])
assert result.exit_code == 0
assert result.stdout == f"pyproject-devenv version {__version__}\n"
def test_version_version(tmp_pathplus: PathPlus) -> None:
with in_directory(tmp_pathplus):
runner = CliRunner()
result: Result = runner.invoke(main, args=["--version", "--version"])
assert result.exit_code == 0
assert re.match(
rf"pyproject-devenv version {re.escape(__version__)}, virualenv \d+\.\d+\.\d+\n",
result.stdout,
)