forked from python/blurb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_blurb.py
More file actions
389 lines (335 loc) · 11.3 KB
/
test_blurb.py
File metadata and controls
389 lines (335 loc) · 11.3 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
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
382
383
384
385
386
387
388
389
import pytest
import time_machine
from blurb import blurb
def test_section_names():
assert tuple(blurb.sections) == (
'Security', 'Core and Builtins', 'Library', 'Documentation',
'Tests', 'Build', 'Windows', 'macOS', 'IDLE', 'Tools/Demos',
'C API',
)
UNCHANGED_SECTIONS = (
"Library",
)
@pytest.mark.parametrize("section", UNCHANGED_SECTIONS)
def test_sanitize_section_no_change(section):
sanitized = blurb.sanitize_section(section)
assert sanitized == section
@pytest.mark.parametrize(
"section, expected",
(
("C API", "C_API"),
("Core and Builtins", "Core_and_Builtins"),
("Tools/Demos", "Tools-Demos"),
),
)
def test_sanitize_section_changed(section, expected):
sanitized = blurb.sanitize_section(section)
assert sanitized == expected
@pytest.mark.parametrize("section", UNCHANGED_SECTIONS)
def test_unsanitize_section_no_change(section):
unsanitized = blurb.unsanitize_section(section)
assert unsanitized == section
@pytest.mark.parametrize(
"section, expected",
(
("Tools-Demos", "Tools/Demos"),
),
)
def test_unsanitize_section_changed(section, expected):
unsanitized = blurb.unsanitize_section(section)
assert unsanitized == expected
@pytest.mark.parametrize(
"body, subsequent_indent, expected",
(
(
"This is a test of the textwrap_body function with a string. It should wrap the text to 79 characters.",
"",
"This is a test of the textwrap_body function with a string. It should wrap\n"
"the text to 79 characters.\n",
),
(
[
"This is a test of the textwrap_body function",
"with an iterable of strings.",
"It should wrap the text to 79 characters.",
],
"",
"This is a test of the textwrap_body function with an iterable of strings. It\n"
"should wrap the text to 79 characters.\n",
),
(
"This is a test of the textwrap_body function with a string and subsequent indent.",
" ",
"This is a test of the textwrap_body function with a string and subsequent\n"
" indent.\n",
),
(
"This is a test of the textwrap_body function with a bullet list and subsequent indent. The list should not be wrapped.\n"
"\n"
"* Item 1\n"
"* Item 2\n",
" ",
"This is a test of the textwrap_body function with a bullet list and\n"
" subsequent indent. The list should not be wrapped.\n"
"\n"
" * Item 1\n"
" * Item 2\n",
),
),
)
def test_textwrap_body(body, subsequent_indent, expected):
assert blurb.textwrap_body(body, subsequent_indent=subsequent_indent) == expected
@time_machine.travel("2025-01-07")
def test_current_date():
assert blurb.current_date() == "2025-01-07"
@time_machine.travel("2025-01-07 16:28:41")
def test_sortable_datetime():
assert blurb.sortable_datetime() == "2025-01-07-16-28-41"
@pytest.mark.parametrize(
"version1, version2",
(
("2", "3"),
("3.5.0a1", "3.5.0b1"),
("3.5.0a1", "3.5.0rc1"),
("3.5.0a1", "3.5.0"),
("3.6.0b1", "3.6.0b2"),
("3.6.0b1", "3.6.0rc1"),
("3.6.0b1", "3.6.0"),
("3.7.0rc1", "3.7.0rc2"),
("3.7.0rc1", "3.7.0"),
("3.8", "3.8.1"),
),
)
def test_version_key(version1, version2):
# Act
key1 = blurb.version_key(version1)
key2 = blurb.version_key(version2)
# Assert
assert key1 < key2
def test_glob_versions(fs):
# Arrange
fake_version_blurbs = (
"Misc/NEWS.d/3.7.0.rst",
"Misc/NEWS.d/3.7.0a1.rst",
"Misc/NEWS.d/3.7.0a2.rst",
"Misc/NEWS.d/3.7.0b1.rst",
"Misc/NEWS.d/3.7.0b2.rst",
"Misc/NEWS.d/3.7.0rc1.rst",
"Misc/NEWS.d/3.7.0rc2.rst",
"Misc/NEWS.d/3.9.0b1.rst",
"Misc/NEWS.d/3.12.0a1.rst",
)
for fn in fake_version_blurbs:
fs.create_file(fn)
# Act
versions = blurb.glob_versions()
# Assert
assert versions == [
"3.12.0a1",
"3.9.0b1",
"3.7.0",
"3.7.0rc2",
"3.7.0rc1",
"3.7.0b2",
"3.7.0b1",
"3.7.0a2",
"3.7.0a1",
]
def test_glob_blurbs_next(fs):
# Arrange
fake_news_entries = (
"Misc/NEWS.d/next/Library/2022-04-11-18-34-33.gh-issue-11111.pC7gnM.rst",
"Misc/NEWS.d/next/Core and Builtins/2023-03-17-12-09-45.gh-issue-33333.Pf_BI7.rst",
"Misc/NEWS.d/next/Tools-Demos/2023-03-21-01-27-07.gh-issue-44444.2F1Byz.rst",
"Misc/NEWS.d/next/C API/2023-03-27-22-09-07.gh-issue-66666.3SN8Bs.rst",
)
fake_readmes = (
"Misc/NEWS.d/next/Library/README.rst",
"Misc/NEWS.d/next/Core and Builtins/README.rst",
"Misc/NEWS.d/next/Tools-Demos/README.rst",
"Misc/NEWS.d/next/C API/README.rst",
)
for fn in fake_news_entries + fake_readmes:
fs.create_file(fn)
# Act
filenames = blurb.glob_blurbs("next")
# Assert
assert set(filenames) == set(fake_news_entries)
def test_glob_blurbs_sort_order(fs):
"""
It shouldn't make a difference to sorting whether
section names have spaces or underscores.
"""
# Arrange
fake_news_entries = (
"Misc/NEWS.d/next/Core and Builtins/2023-07-23-12-01-00.gh-issue-33331.Pf_BI1.rst",
"Misc/NEWS.d/next/Core_and_Builtins/2023-07-23-12-02-00.gh-issue-33332.Pf_BI2.rst",
"Misc/NEWS.d/next/Core and Builtins/2023-07-23-12-03-00.gh-issue-33333.Pf_BI3.rst",
"Misc/NEWS.d/next/Core_and_Builtins/2023-07-23-12-04-00.gh-issue-33334.Pf_BI4.rst",
)
# As fake_news_entries, but reverse sorted by *filename* only
expected = [
"Misc/NEWS.d/next/Core_and_Builtins/2023-07-23-12-04-00.gh-issue-33334.Pf_BI4.rst",
"Misc/NEWS.d/next/Core and Builtins/2023-07-23-12-03-00.gh-issue-33333.Pf_BI3.rst",
"Misc/NEWS.d/next/Core_and_Builtins/2023-07-23-12-02-00.gh-issue-33332.Pf_BI2.rst",
"Misc/NEWS.d/next/Core and Builtins/2023-07-23-12-01-00.gh-issue-33331.Pf_BI1.rst",
]
fake_readmes = (
"Misc/NEWS.d/next/Library/README.rst",
"Misc/NEWS.d/next/Core and Builtins/README.rst",
"Misc/NEWS.d/next/Tools-Demos/README.rst",
"Misc/NEWS.d/next/C API/README.rst",
)
for fn in fake_news_entries + fake_readmes:
fs.create_file(fn)
# Act
filenames = blurb.glob_blurbs("next")
# Assert
assert filenames == expected
@pytest.mark.parametrize(
"version, expected",
(
("next", "next"),
("3.12.0a1", "3.12.0 alpha 1"),
("3.12.0b2", "3.12.0 beta 2"),
("3.12.0rc2", "3.12.0 release candidate 2"),
("3.12.0", "3.12.0 final"),
("3.12.1", "3.12.1 final"),
),
)
def test_printable_version(version, expected):
# Act / Assert
assert blurb.printable_version(version) == expected
@pytest.mark.parametrize(
"news_entry, expected_section",
(
(
"Misc/NEWS.d/next/Library/2022-04-11-18-34-33.gh-issue-33333.pC7gnM.rst",
"Library",
),
(
"Misc/NEWS.d/next/Core_and_Builtins/2023-03-17-12-09-45.gh-issue-44444.Pf_BI7.rst",
"Core and Builtins",
),
(
"Misc/NEWS.d/next/Core and Builtins/2023-03-17-12-09-45.gh-issue-55555.Pf_BI7.rst",
"Core and Builtins",
),
(
"Misc/NEWS.d/next/Tools-Demos/2023-03-21-01-27-07.gh-issue-66666.2F1Byz.rst",
"Tools/Demos",
),
(
"Misc/NEWS.d/next/C_API/2023-03-27-22-09-07.gh-issue-77777.3SN8Bs.rst",
"C API",
),
(
"Misc/NEWS.d/next/C API/2023-03-27-22-09-07.gh-issue-88888.3SN8Bs.rst",
"C API",
),
),
)
def test_load_next(news_entry, expected_section, fs):
# Arrange
fs.create_file(news_entry, contents="testing")
blurbs = blurb.Blurbs()
# Act
blurbs.load_next(news_entry)
# Assert
metadata = blurbs[0][0]
assert metadata["section"] == expected_section
@pytest.mark.parametrize(
"news_entry, expected_path",
(
(
"Misc/NEWS.d/next/Library/2022-04-11-18-34-33.gh-issue-33333.pC7gnM.rst",
"root/Misc/NEWS.d/next/Library/2022-04-11-18-34-33.gh-issue-33333.pC7gnM.rst",
),
(
"Misc/NEWS.d/next/Core and Builtins/2023-03-17-12-09-45.gh-issue-44444.Pf_BI7.rst",
"root/Misc/NEWS.d/next/Core_and_Builtins/2023-03-17-12-09-45.gh-issue-44444.Pf_BI7.rst",
),
(
"Misc/NEWS.d/next/Tools-Demos/2023-03-21-01-27-07.gh-issue-55555.2F1Byz.rst",
"root/Misc/NEWS.d/next/Tools-Demos/2023-03-21-01-27-07.gh-issue-55555.2F1Byz.rst",
),
(
"Misc/NEWS.d/next/C API/2023-03-27-22-09-07.gh-issue-66666.3SN8Bs.rst",
"root/Misc/NEWS.d/next/C_API/2023-03-27-22-09-07.gh-issue-66666.3SN8Bs.rst",
),
),
)
def test_extract_next_filename(news_entry, expected_path, fs):
# Arrange
fs.create_file(news_entry, contents="testing")
blurb.root = "root"
blurbs = blurb.Blurbs()
blurbs.load_next(news_entry)
# Act
path = blurbs._extract_next_filename()
# Assert
assert path == expected_path
def test_version(capfd):
# Act
blurb.version()
# Assert
captured = capfd.readouterr()
assert captured.out.startswith("blurb version ")
def test_parse():
# Arrange
contents = ".. gh-issue: 123456\n.. section: IDLE\nHello world!"
blurbs = blurb.Blurbs()
# Act
blurbs.parse(contents)
# Assert
metadata, body = blurbs[0]
assert metadata["gh-issue"] == "123456"
assert metadata["section"] == "IDLE"
assert body == "Hello world!\n"
@pytest.mark.parametrize(
"contents, expected_error",
(
(
"",
r"Blurb 'body' text must not be empty!",
),
(
"gh-issue: Hello world!",
r"Blurb 'body' can't start with 'gh-'!",
),
(
".. gh-issue: 1\n.. section: IDLE\nHello world!",
r"Invalid gh-issue number: '1' \(must be >= 32426\)",
),
(
".. bpo: one-two\n.. section: IDLE\nHello world!",
r"Invalid bpo number: 'one-two'",
),
(
".. gh-issue: one-two\n.. section: IDLE\nHello world!",
r"Invalid GitHub number: 'one-two'",
),
(
".. gh-issue: 123456\n.. section: Funky Kong\nHello world!",
r"Invalid section 'Funky Kong'! You must use one of the predefined sections",
),
(
".. gh-issue: 123456\nHello world!",
r"No 'section' specified. You must provide one!",
),
(
".. gh-issue: 123456\n.. section: IDLE\n.. section: IDLE\nHello world!",
r"Blurb metadata sets 'section' twice!",
),
(
".. section: IDLE\nHello world!",
r"'gh-issue:' or 'bpo:' must be specified in the metadata!",
),
),
)
def test_parse_no_body(contents, expected_error):
# Arrange
blurbs = blurb.Blurbs()
# Act / Assert
with pytest.raises(blurb.BlurbError, match=expected_error):
blurbs.parse(contents)