-
-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathtest_version_command.py
More file actions
298 lines (259 loc) · 8.08 KB
/
Copy pathtest_version_command.py
File metadata and controls
298 lines (259 loc) · 8.08 KB
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
import platform
import sys
import pytest
from pytest_mock import MockerFixture
from commitizen import commands
from commitizen.__version__ import __version__
from commitizen.config.base_config import BaseConfig
def test_version_for_showing_project_version_error(config, capsys):
# No version specified in config
commands.Version(
config,
{"project": True},
)()
captured = capsys.readouterr()
assert "No project information in this project." in captured.err
def test_version_for_showing_project_version(config, capsys):
config.settings["version"] = "0.0.1"
commands.Version(
config,
{"project": True},
)()
captured = capsys.readouterr()
assert "0.0.1" in captured.out
@pytest.mark.parametrize("project", [True, False])
def test_version_for_showing_commitizen_version(config, capsys, project: bool):
commands.Version(
config,
{"project": project, "commitizen": True},
)()
captured = capsys.readouterr()
assert f"{__version__}" in captured.out
def test_version_for_showing_both_versions_no_project(config, capsys):
commands.Version(
config,
{"verbose": True},
)()
captured = capsys.readouterr()
assert f"Installed Commitizen Version: {__version__}" in captured.out
assert "No project information in this project." in captured.err
def test_version_for_showing_both_versions(config, capsys):
config.settings["version"] = "0.0.1"
commands.Version(
config,
{"verbose": True},
)()
captured = capsys.readouterr()
expected_out = (
f"Installed Commitizen Version: {__version__}\nProject Version: 0.0.1"
)
assert expected_out in captured.out
def test_version_for_showing_commitizen_system_info(config, capsys):
commands.Version(
config,
{"report": True},
)()
captured = capsys.readouterr()
assert f"Commitizen Version: {__version__}" in captured.out
assert f"Python Version: {sys.version}" in captured.out
assert f"Operating System: {platform.system()}" in captured.out
@pytest.mark.parametrize("project", [True, False])
@pytest.mark.usefixtures("tmp_git_project")
def test_version_use_version_provider(
mocker: MockerFixture,
config: BaseConfig,
capsys: pytest.CaptureFixture,
project: bool,
):
version = "0.0.0"
mock = mocker.MagicMock(name="provider")
mock.get_version.return_value = version
get_provider = mocker.patch(
"commitizen.commands.version.get_provider", return_value=mock
)
commands.Version(
config,
{
"project": project,
"verbose": not project,
},
)()
captured = capsys.readouterr()
assert version in captured.out
get_provider.assert_called_once()
mock.get_version.assert_called_once()
mock.set_version.assert_not_called()
@pytest.mark.parametrize(
("version", "expected_version"),
[
("1.0.0", "1\n"),
("2.1.3", "2\n"),
("0.0.1", "0\n"),
("0.1.0", "0\n"),
],
)
def test_version_just_major(config, capsys, version: str, expected_version: str):
config.settings["version"] = version
commands.Version(
config,
{
"project": True,
"major": True,
},
)()
captured = capsys.readouterr()
assert expected_version == captured.out
@pytest.mark.parametrize(
("version", "expected_version"),
[
("1.0.0", "0\n"),
("2.1.3", "1\n"),
("0.0.1", "0\n"),
("0.1.0", "1\n"),
],
)
def test_version_just_minor(config, capsys, version: str, expected_version: str):
config.settings["version"] = version
commands.Version(
config,
{
"project": True,
"minor": True,
},
)()
captured = capsys.readouterr()
assert expected_version == captured.out
@pytest.mark.parametrize(
("args", "expected_error"),
[
(
{"major": True},
"can only be used with MANUAL_VERSION, --project or --verbose.",
),
(
{"minor": True},
"can only be used with MANUAL_VERSION, --project or --verbose.",
),
(
{"patch": True},
"can only be used with MANUAL_VERSION, --project or --verbose.",
),
({"tag": True}, "Tag can only be used with --project or --verbose."),
],
)
def test_version_invalid_combinations(config, capsys, args: dict, expected_error: str):
"""Test that certain flag combinations produce errors."""
commands.Version(config, args)() # type: ignore[arg-type]
captured = capsys.readouterr()
assert not captured.out
assert expected_error in captured.err
@pytest.mark.parametrize(
("version", "tag_format", "expected_output"),
[
("1.2.3", "v$version", "v1.2.3\n"),
("1.2.3", "$version", "1.2.3\n"),
("2.0.0", "release-$version", "release-2.0.0\n"),
("0.1.0", "ver$version", "ver0.1.0\n"),
],
)
def test_version_with_tag_format(
config, capsys, version: str, tag_format: str, expected_output: str
):
"""Test --tag option applies tag_format to version"""
config.settings["version"] = version
config.settings["tag_format"] = tag_format
commands.Version(
config,
{
"project": True,
"tag": True,
},
)()
captured = capsys.readouterr()
assert captured.out == expected_output
@pytest.mark.parametrize(
("next_increment", "current_version", "expected_version"),
[
("MAJOR", "1.1.0", "2.0.0"),
("MAJOR", "1.0.0", "2.0.0"),
("MAJOR", "0.0.1", "1.0.0"),
("MINOR", "1.1.0", "1.2.0"),
("MINOR", "1.0.0", "1.1.0"),
("MINOR", "0.0.1", "0.1.0"),
("PATCH", "1.1.0", "1.1.1"),
("PATCH", "1.0.0", "1.0.1"),
("PATCH", "0.0.1", "0.0.2"),
("NONE", "1.0.0", "1.0.0"),
],
)
def test_next_version(
config, capsys, next_increment: str, current_version: str, expected_version: str
):
config.settings["version"] = current_version
for project in (True, False):
commands.Version(
config,
{
"next": next_increment,
"project": project,
},
)()
captured = capsys.readouterr()
assert expected_version in captured.out
# Use the same settings to test the manual version
commands.Version(
config,
{
"manual_version": current_version,
"next": next_increment,
},
)()
captured = capsys.readouterr()
assert expected_version in captured.out
def test_next_version_invalid_version(config, capsys):
commands.Version(
config,
{
"manual_version": "INVALID",
},
)()
captured = capsys.readouterr()
assert "Invalid version: 'INVALID'" in captured.err
@pytest.mark.parametrize(
("version", "expected_version"),
[
("1.0.0", "0\n"),
("2.1.3", "3\n"),
("0.0.1", "1\n"),
("0.1.0", "0\n"),
],
)
def test_version_just_patch(config, capsys, version: str, expected_version: str):
config.settings["version"] = version
commands.Version(
config,
{
"project": True,
"patch": True,
},
)()
captured = capsys.readouterr()
assert expected_version == captured.out
def test_version_unknown_scheme(config, capsys):
config.settings["version"] = "1.0.0"
config.settings["version_scheme"] = "not_a_registered_scheme_name_xyz"
commands.Version(config, {"project": True})()
captured = capsys.readouterr()
assert "Unknown version scheme." in captured.err
def test_version_use_git_commits_not_implemented(config, capsys):
config.settings["version"] = "1.0.0"
commands.Version(
config,
{"project": True, "next": "USE_GIT_COMMITS"},
)()
captured = capsys.readouterr()
assert "USE_GIT_COMMITS is not implemented" in captured.err
def test_version_no_arguments_shows_commitizen_version(config, capsys):
commands.Version(config, {})()
captured = capsys.readouterr()
assert captured.out.strip() == __version__