-
-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathtest_changelog_format_restructuredtext.py
381 lines (327 loc) · 7.67 KB
/
test_changelog_format_restructuredtext.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
from __future__ import annotations
from pathlib import Path
from textwrap import dedent
from typing import TYPE_CHECKING
import pytest
from commitizen.changelog import Metadata
from commitizen.changelog_formats.restructuredtext import RestructuredText
from commitizen.config.base_config import BaseConfig
if TYPE_CHECKING:
from _pytest.mark.structures import ParameterSet
CASES: list[ParameterSet] = []
def case(
id: str,
content: str,
latest_version: str | None = None,
latest_version_position: int | None = None,
latest_version_tag: str | None = None,
unreleased_start: int | None = None,
unreleased_end: int | None = None,
):
CASES.append(
pytest.param(
dedent(content).strip(),
Metadata(
latest_version=latest_version,
latest_version_tag=latest_version_tag,
latest_version_position=latest_version_position,
unreleased_start=unreleased_start,
unreleased_end=unreleased_end,
),
id=id,
)
)
case(
"underlined title with intro and unreleased section",
"""
Changelog
#########
All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`,
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`.
Unreleased
==========
* Start using "changelog" over "change log" since it's the common usage.
1.0.0 - 2017-06-20
==================
Added
-----
* New visual identity by `@tylerfortune8 <https://github.com/tylerfortune8>`.
* Version navigation.
""",
latest_version="1.0.0",
latest_version_position=12,
unreleased_start=8,
unreleased_end=12,
)
case(
"unreleased section without preamble",
"""
Unreleased
==========
* Start using "changelog" over "change log" since it's the common usage.
1.2.0
=====
""",
latest_version="1.2.0",
latest_version_position=4,
unreleased_start=0,
unreleased_end=4,
)
case(
"basic underlined titles with v-prefixed version",
"""
Unreleased
==========
v1.0.0
======
""",
latest_version="1.0.0",
latest_version_tag="v1.0.0",
latest_version_position=3,
unreleased_start=0,
unreleased_end=3,
)
case(
"intermediate section in unreleased",
"""
Unreleased
==========
intermediate
------------
1.0.0
=====
""",
latest_version="1.0.0",
latest_version_position=6,
unreleased_start=0,
unreleased_end=6,
)
case(
"weird section with different level than versions",
"""
Unreleased
##########
1.0.0
=====
""",
latest_version="1.0.0",
latest_version_position=3,
unreleased_start=0,
unreleased_end=3,
)
case(
"overlined title without release and intro",
"""
==========
Unreleased
==========
* Start using "changelog" over "change log" since it's the common usage.
""",
unreleased_start=0,
unreleased_end=4,
)
case(
"underlined title with date",
"""
1.0.0 - 2017-06-20
==================
""",
latest_version="1.0.0",
latest_version_position=0,
)
UNDERLINED_TITLES = (
"""
title
=====
""",
"""
title
======
""",
"""
title
#####
""",
"""
title
.....
""",
"""
title
!!!!!
""",
)
NOT_UNDERLINED_TITLES = (
"""
title
=.=.=
""",
"""
title
====
""",
"""
title
aaaaa
""",
"""
title
""",
)
OVERLINED_TITLES = (
"""
=====
title
=====
""",
"""
======
title
======
""",
"""
#####
title
#####
""",
"""
.....
title
.....
""",
)
NOT_OVERLINED_TITLES = (
"""
====
title
=====
""",
"""
=====
title
====
""",
"""
====
title
====
""",
"""
=====
title
#####
""",
"""
#####
title
=====
""",
"""
=.=.=
title
=====
""",
"""
=====
title
=.=.=
""",
"""
title
=====
""",
"""
=====
title
""",
"""
aaaaa
title
aaaaa
""",
)
CHANGELOG = """
Changelog
#########
All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`,
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`.
Unreleased
==========
* Start using "changelog" over "change log" since it's the common usage.
{tag_formatted_version} - 2017-06-20
{underline}
Added
-----
* New visual identity by `@tylerfortune8 <https://github.com/tylerfortune8>`.
* Version navigation.
""".strip()
@pytest.fixture
def format(config: BaseConfig) -> RestructuredText:
return RestructuredText(config)
@pytest.fixture
def format_with_tags(config: BaseConfig, request) -> RestructuredText:
config.settings["tag_format"] = request.param
config.settings["legacy_tag_formats"] = ["legacy-${version}"]
return RestructuredText(config)
@pytest.mark.parametrize("content, expected", CASES)
def test_get_matadata(
tmp_path: Path, format: RestructuredText, content: str, expected: Metadata
):
changelog = tmp_path / format.default_changelog_file
changelog.write_text(content)
assert format.get_metadata(str(changelog)) == expected
@pytest.mark.parametrize(
"text, expected",
[(text, True) for text in UNDERLINED_TITLES]
+ [(text, False) for text in NOT_UNDERLINED_TITLES],
)
def test_is_underlined_title(format: RestructuredText, text: str, expected: bool):
_, first, second = dedent(text).splitlines()
assert format.is_underlined_title(first, second) is expected
@pytest.mark.parametrize(
"text, expected",
[(text, True) for text in OVERLINED_TITLES]
+ [(text, False) for text in NOT_OVERLINED_TITLES],
)
def test_is_overlined_title(format: RestructuredText, text: str, expected: bool):
_, first, second, third = dedent(text).splitlines()
assert format.is_overlined_title(first, second, third) is expected
@pytest.mark.parametrize(
"format_with_tags, tag_string, expected, ",
(
pytest.param("${version}-example", "1.0.0-example", "1.0.0"),
pytest.param("${version}", "1.0.0", "1.0.0"),
pytest.param("${version}example", "1.0.0example", "1.0.0"),
pytest.param("example${version}", "example1.0.0", "1.0.0"),
pytest.param("example-${version}", "example-1.0.0", "1.0.0"),
pytest.param("example-${major}-${minor}-${patch}", "example-1-0-0", "1.0.0"),
pytest.param("example-${major}-${minor}", "example-1-0-0", None),
pytest.param(
"${major}-${minor}-${patch}-${prerelease}-example",
"1-0-0-rc1-example",
"1.0.0-rc1",
),
pytest.param(
"${major}-${minor}-${patch}-${prerelease}${devrelease}-example",
"1-0-0-a1.dev1-example",
"1.0.0-a1.dev1",
),
pytest.param("new-${version}", "legacy-1.0.0", "1.0.0"),
),
indirect=["format_with_tags"],
)
def test_get_metadata_custom_tag_format(
tmp_path: Path,
format_with_tags: RestructuredText,
tag_string: str,
expected: Metadata,
):
content = CHANGELOG.format(
tag_formatted_version=tag_string,
underline="=" * len(tag_string) + "=============",
)
changelog = tmp_path / format_with_tags.default_changelog_file
changelog.write_text(content)
assert format_with_tags.get_metadata(str(changelog)).latest_version == expected