-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathtest_format.py
More file actions
767 lines (593 loc) · 20.7 KB
/
Copy pathtest_format.py
File metadata and controls
767 lines (593 loc) · 20.7 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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
import re
import pytest
from conventional_pre_commit.format import Commit, ConventionalCommit, is_conventional
CUSTOM_TYPES = ["one", "two"]
@pytest.fixture
def commit() -> Commit:
return Commit()
@pytest.fixture
def conventional_commit() -> ConventionalCommit:
return ConventionalCommit()
@pytest.fixture
def conventional_commit_scope_required(conventional_commit) -> ConventionalCommit:
conventional_commit.scope_optional = False
return conventional_commit
def test_commit_init():
input = (
"""feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
# ------------------------ >8 ------------------------
# Do not modify or remove the line above.
# Everything below it will be ignored.
diff --git c/README.md i/README.md
index ea80a93..fe8a527 100644
--- c/README.md
+++ i/README.md
@@ -20,3 +20,4 @@ Some hunk header
Context 1
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
Context 2
+Added line
"""
)
expected = "feat: some commit message\n"
assert Commit(input).message == expected
def test_r_or(commit):
result = commit._r_or(CUSTOM_TYPES)
regex = re.compile(result)
for item in CUSTOM_TYPES:
assert regex.match(item)
def test_r_autosquash_prefixes(commit):
regex = re.compile(commit.r_autosquash_prefixes)
for prefix in commit.AUTOSQUASH_PREFIXES:
assert regex.match(prefix)
def test_r_comment_single(commit):
regex = re.compile(commit.r_comment)
assert regex.match("# Some comment")
assert not regex.match("Some comment")
assert not regex.match(" # Some comment")
def test_strip_comments__consecutive(commit):
input = """feat(scope): message
# Please enter the commit message for your changes.
# These are comments usually added by editors, f.ex. with export EDITOR=vim
"""
result = commit._strip_comments(input)
assert result.count("\n") == 1
assert result.strip() == "feat(scope): message"
def test_strip_comments__spaced(commit):
input = """feat(scope): message
# Please enter the commit message for your changes.
# These are comments usually added by editors, f.ex. with export EDITOR=vim
"""
result = commit._strip_comments(input)
assert result.count("\n") == 2
assert result.strip() == "feat(scope): message"
def test_r_verbose_commit_ignored__does_not_match_no_verbose(commit):
regex = re.compile(commit.r_verbose_commit_ignored, re.DOTALL | re.MULTILINE)
input = """feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
"""
assert not regex.search(input)
def test_r_verbose_commit_ignored__matches_single_verbose_ignored(commit):
regex = re.compile(commit.r_verbose_commit_ignored, re.DOTALL | re.MULTILINE)
input = (
"""feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
# ------------------------ >8 ------------------------
# Do not modify or remove the line above.
# Everything below it will be ignored.
diff --git c/README.md i/README.md
index ea80a93..fe8a527 100644
--- c/README.md
+++ i/README.md
@@ -20,3 +20,4 @@ Some hunk header
Context 1
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
Context 2
+Added line
"""
)
assert regex.search(input)
def test_r_verbose_commit_ignored__matches_double_verbose_ignored(commit):
regex = re.compile(commit.r_verbose_commit_ignored, re.DOTALL | re.MULTILINE)
input = (
"""feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
# ------------------------ >8 ------------------------
# Do not modify or remove the line above.
# Everything below it will be ignored.
#
# Changes to be committed:
diff --git c/README.md i/README.md
index ea80a93..fe8a527 100644
--- c/README.md
+++ i/README.md
@@ -20,3 +20,4 @@ Some staged hunk header
Staged Context 1
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
Staged Context 2
+Staged added line
# --------------------------------------------------
# Changes not staged for commit:
diff --git i/README.md w/README.md
index fe8a527..1c00c14 100644
--- i/README.md
+++ w/README.md
@@ -10,6 +10,7 @@ Some unstaged hunk header
Context 1
Context 2
Context 3
-Removed line
+Added line
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
Context 4
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
"""
)
assert regex.search(input)
def test_strip_verbose_commit_ignored__does_not_strip_no_verbose(commit):
input = """feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
"""
expected = """feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
"""
result = commit._strip_verbose_commit_ignored(input)
assert result == expected
def test_strip_verbose_commit_ignored__strips_single_verbose_ignored(commit):
input = (
"""feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
# ------------------------ >8 ------------------------
# Do not modify or remove the line above.
# Everything below it will be ignored.
diff --git c/README.md i/README.md
index ea80a93..fe8a527 100644
--- c/README.md
+++ i/README.md
@@ -20,3 +20,4 @@ Some hunk header
Context 1
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
Context 2
+Added line
"""
)
expected = """feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
"""
result = commit._strip_verbose_commit_ignored(input)
assert result == expected
def test_strip_verbose_commit_ignored__strips_double_verbose_ignored(commit):
input = (
"""feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
# ------------------------ >8 ------------------------
# Do not modify or remove the line above.
# Everything below it will be ignored.
#
# Changes to be committed:
diff --git c/README.md i/README.md
index ea80a93..fe8a527 100644
--- c/README.md
+++ i/README.md
@@ -20,3 +20,4 @@ Some staged hunk header
Staged Context 1
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
Staged Context 2
+Staged added line
# --------------------------------------------------
# Changes not staged for commit:
diff --git i/README.md w/README.md
index fe8a527..1c00c14 100644
--- i/README.md
+++ w/README.md
@@ -10,6 +10,7 @@ Some unstaged hunk header
Context 1
Context 2
Context 3
-Removed line
+Added line
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
Context 4
"""
+ " " # This is on purpose to preserve the space from overly eager stripping.
+ """
"""
)
expected = """feat: some commit message
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch main
# Your branch is up to date with 'origin/main'.
#
# Changes to be committed:
# modified: README.md
#
# Changes not staged for commit:
# modified: README.md
#
"""
result = commit._strip_verbose_commit_ignored(input)
assert result == expected
@pytest.mark.parametrize(
"input,expected_result",
[
("amend! ", True),
("fixup! ", True),
("squash! ", True),
("squash! whatever .. $12 #", True),
("squash!", False),
(" squash! ", False),
("squash!:", False),
("feat(foo):", False),
],
)
def test_has_autosquash_prefix(commit, input, expected_result):
assert commit.has_autosquash_prefix(input) is expected_result
assert Commit(input).has_autosquash_prefix() is expected_result
@pytest.mark.parametrize(
"input,expected_result",
[
("Merge branch '2.x.x' into '1.x.x'", True),
("merge branch 'dev' into 'main'", True),
("Merge remote-tracking branch 'origin/master'", True),
("Merge pull request #123 from user/feature-branch", True),
("Merge tag 'v1.2.3' into main", True),
("Merge origin/master into develop", True),
("Merge refs/heads/main into develop", True),
("nope not a merge commit", False),
("type: subject", False),
("fix: merge bug in auth logic", False),
("chore: merged upstream changes", False),
("MergeSort implemented and tested", False),
],
)
def test_is_merge_commit(input, expected_result):
commit = Commit(input)
assert commit.is_merge() is expected_result
def test_r_scope__optional(conventional_commit):
regex = re.compile(conventional_commit.r_scope)
assert regex.match("")
def test_r_scope__not_optional(conventional_commit_scope_required):
regex = re.compile(conventional_commit_scope_required.r_scope)
assert not regex.match("")
assert not regex.match("scope")
assert regex.match("(scope)")
def test_r_scope__alphanumeric(conventional_commit_scope_required):
regex = re.compile(conventional_commit_scope_required.r_scope)
assert regex.match("(50m3t41N6)")
def test_r_scope__special_chars(conventional_commit_scope_required):
regex = re.compile(conventional_commit_scope_required.r_scope)
assert regex.match("(some-thing)")
assert regex.match("(some_thing)")
assert regex.match("(some/thing)")
assert regex.match("(some thing)")
assert regex.match("(some:thing)")
assert regex.match("(some,thing)")
assert regex.match("(some.thing)")
def test_r_scope__scopes(conventional_commit_scope_required):
conventional_commit_scope_required.scopes = ["api", "client"]
regex = re.compile(conventional_commit_scope_required.r_scope)
assert regex.match("(api)")
assert regex.match("(client)")
assert regex.match("(api, client)")
assert regex.match("(api: client)")
assert regex.match("(api/client)")
assert regex.match("(api-client)")
assert regex.match("(api.client)")
assert not regex.match("(test)")
assert not regex.match("(api; client)")
def test_r_scope__scopes_uppercase(conventional_commit_scope_required):
conventional_commit_scope_required.scopes = ["api", "client"]
regex = re.compile(conventional_commit_scope_required.r_scope)
assert regex.match("(API)")
assert regex.match("(CLIENT)")
assert regex.match("(API, CLIENT)")
assert regex.match("(API: CLIENT)")
assert regex.match("(API/CLIENT)")
assert regex.match("(API-CLIENT)")
assert regex.match("(API.CLIENT)")
assert not regex.match("(TEST)")
assert not regex.match("(API; CLIENT)")
def test_r_delim(conventional_commit):
regex = re.compile(conventional_commit.r_delim)
assert regex.match(":")
assert not regex.match("")
def test_r_delim__optional_breaking_indicator(conventional_commit):
regex = re.compile(conventional_commit.r_delim)
assert regex.match("!:")
def test_r_subject__starts_with_space(conventional_commit):
regex = re.compile(conventional_commit.r_subject)
assert not regex.match("something")
assert regex.match(" something")
def test_r_subject__alphanumeric(conventional_commit):
regex = re.compile(conventional_commit.r_subject)
assert regex.match(" 50m3t41N6")
def test_r_subject__special_chars(conventional_commit):
regex = re.compile(conventional_commit.r_subject)
assert regex.match(" some-thing")
assert regex.match(" some_thing")
assert regex.match(" some/thing")
assert regex.match(" some thing")
def test_types__default():
assert ConventionalCommit().types == ConventionalCommit.DEFAULT_TYPES
def test_types__custom():
result = ConventionalCommit(types=["custom"])
assert set(["custom", *ConventionalCommit.CONVENTIONAL_TYPES]) == set(result.types)
def test_regex(conventional_commit):
regex = conventional_commit.regex
assert isinstance(regex, re.Pattern)
assert "type" in regex.groupindex
assert "scope" in regex.groupindex
assert "delim" in regex.groupindex
assert "subject" in regex.groupindex
assert "body" in regex.groupindex
assert "multi" in regex.groupindex
assert "sep" in regex.groupindex
def test_match(conventional_commit):
match = conventional_commit.match("test: subject line")
assert isinstance(match, re.Match)
assert match.group("type") == "test"
assert match.group("scope") == ""
assert match.group("delim") == ":"
assert match.group("subject").strip() == "subject line"
assert match.group("body") == ""
def test_match_multiline(conventional_commit):
match = conventional_commit.match("""test(scope): subject line
body copy
""")
assert isinstance(match, re.Match)
assert match.group("type") == "test"
assert match.group("scope") == "(scope)"
assert match.group("delim") == ":"
assert match.group("subject").strip() == "subject line"
assert match.group("body").strip() == "body copy"
def test_match_dots(conventional_commit):
match = conventional_commit.match("""feat(foo.bar): hello world""")
assert isinstance(match, re.Match)
assert match.group("type") == "feat"
assert match.group("scope") == "(foo.bar)"
assert match.group("delim") == ":"
assert match.group("subject").strip() == "hello world"
assert match.group("body").strip() == ""
def test_match_invalid_type(conventional_commit):
match = conventional_commit.match("""invalid(scope): subject line
body copy
""")
assert isinstance(match, re.Match)
assert match.group("type") is None
assert match.group("scope") == ""
assert match.group("delim") is None
assert match.group("subject") is None
assert match.group("body") == ""
@pytest.mark.parametrize("type", ConventionalCommit.DEFAULT_TYPES)
def test_is_valid__default_type(conventional_commit, type):
input = f"{type}: message"
assert conventional_commit.is_valid(input)
@pytest.mark.parametrize("type", ConventionalCommit.DEFAULT_TYPES)
def test_is_valid__default_type_uppercase(conventional_commit, type):
input = f"{type.upper()}: message"
assert conventional_commit.is_valid(input)
@pytest.mark.parametrize("type", ConventionalCommit.CONVENTIONAL_TYPES)
def test_is_valid__conventional_type(conventional_commit, type):
input = f"{type}: message"
assert conventional_commit.is_valid(input)
@pytest.mark.parametrize("type", ConventionalCommit.CONVENTIONAL_TYPES)
def test_is_valid__conventional_type_uppercase(conventional_commit, type):
input = f"{type.upper()}: message"
assert conventional_commit.is_valid(input)
@pytest.mark.parametrize("type", CUSTOM_TYPES)
def test_is_valid__custom_type(type):
input = f"{type}: message"
conventional_commits = ConventionalCommit(types=CUSTOM_TYPES)
assert conventional_commits.is_valid(input)
@pytest.mark.parametrize("type", ConventionalCommit.CONVENTIONAL_TYPES)
def test_is_valid__conventional_custom_type(type):
input = f"{type}: message"
conventional_commits = ConventionalCommit(types=CUSTOM_TYPES)
assert conventional_commits.is_valid(input)
@pytest.mark.parametrize("type", ConventionalCommit.CONVENTIONAL_TYPES)
def test_is_valid__conventional_custom_type_uppercase(type):
input = f"{type.upper()}: message"
conventional_commits = ConventionalCommit(types=CUSTOM_TYPES)
assert conventional_commits.is_valid(input)
def test_is_valid__breaking_change(conventional_commit):
input = "fix!: message"
assert conventional_commit.is_valid(input)
def test_is_valid__with_scope(conventional_commit):
input = "feat(scope): message"
assert conventional_commit.is_valid(input)
def test_is_valid__body_multiline_body_bad_type(conventional_commit):
input = """wrong: message
more_message
"""
assert not conventional_commit.is_valid(input)
def test_is_valid__bad_body_multiline(conventional_commit):
input = """feat(scope): message
more message
"""
assert not conventional_commit.is_valid(input)
def test_is_valid__body_multiline(conventional_commit):
input = """feat(scope): message
more message
"""
assert conventional_commit.is_valid(input)
def test_is_valid__bad_body_multiline_paragraphs(conventional_commit):
input = """feat(scope): message
more message
more body message
"""
assert not conventional_commit.is_valid(input)
def test_is_valid__comment(conventional_commit):
input = """feat(scope): message
# Please enter the commit message for your changes.
# These are comments usually added by editors, f.ex. with export EDITOR=vim
"""
assert conventional_commit.is_valid(input)
@pytest.mark.parametrize("char", ['"', "'", "`", "#", "&"])
def test_is_valid__body_special_char(conventional_commit, char):
input = f"feat: message with {char}"
assert conventional_commit.is_valid(input)
def test_is_valid__wrong_type(conventional_commit):
input = "wrong: message"
assert not conventional_commit.is_valid(input)
def test_is_valid__scope_special_chars(conventional_commit):
input = "feat(%&*@()): message"
assert not conventional_commit.is_valid(input)
def test_is_valid__space_scope(conventional_commit):
input = "feat (scope): message"
assert not conventional_commit.is_valid(input)
def test_is_valid__scope_space(conventional_commit):
input = "feat(scope) : message"
assert not conventional_commit.is_valid(input)
def test_is_valid__scope_not_optional(conventional_commit_scope_required):
input = "feat: message"
assert not conventional_commit_scope_required.is_valid(input)
def test_is_valid__scope_not_optional_empty_parenthesis(conventional_commit_scope_required):
input = "feat(): message"
assert not conventional_commit_scope_required.is_valid(input)
def test_is_valid__missing_delimiter(conventional_commit):
input = "feat message"
assert not conventional_commit.is_valid(input)
@pytest.mark.parametrize(
"input,expected_result",
[
("feat: subject", True),
("feat(scope): subject", True),
(
"""feat(scope): subject
extended body
""",
True,
),
("feat", False),
("feat subject", False),
("feat(scope): ", False),
(": subject", False),
("(scope): subject", False),
(
"""feat(scope): subject
extended body no newline
""",
False,
),
],
)
def test_is_conventional(input, expected_result):
assert is_conventional(input) == expected_result