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
|
"""Tests for the Angular conventionntion."""
from __future__ import annotations
from git_changelog import AngularConvention, Commit
def test_angular_convention_breaking_change() -> None:
"""Breaking change (singular) is correctly identified."""
subject = "feat: this is a new breaking feature"
body = ["BREAKING CHANGE: there is a breaking feature in this code"]
commit = Commit(
commit_hash="aaaaaaa",
subject=subject,
body=body,
author_date="1574340645",
committer_date="1574340645",
)
convention = AngularConvention()
commit_dict = convention.parse_commit(commit)
assert commit_dict["is_major"]
assert not commit_dict["is_minor"]
assert not commit_dict["is_patch"]
def test_angular_convention_breaking_changes() -> None:
"""Breaking changes (plural) are correctly identified."""
subject = "feat: this is a new breaking feature"
body = ["BREAKING CHANGES: there is a breaking feature in this code"]
commit = Commit(
commit_hash="aaaaaaa",
subject=subject,
body=body,
author_date="1574340645",
committer_date="1574340645",
)
convention = AngularConvention()
commit_dict = convention.parse_commit(commit)
assert commit_dict["is_major"]
assert not commit_dict["is_minor"]
assert not commit_dict["is_patch"]
def test_angular_convention_feat() -> None:
"""Feature commit is correctly identified."""
subject = "feat: this is a new feature"
commit = Commit(
commit_hash="aaaaaaa",
subject=subject,
author_date="1574340645",
committer_date="1574340645",
)
convention = AngularConvention()
commit_dict = convention.parse_commit(commit)
assert not commit_dict["is_major"]
assert commit_dict["is_minor"]
assert not commit_dict["is_patch"]
def test_angular_convention_fix() -> None:
"""Bug fix commit is correctly identified."""
subject = "fix: this is a bug fix"
commit = Commit(
commit_hash="aaaaaaa",
subject=subject,
author_date="1574340645",
committer_date="1574340645",
)
convention = AngularConvention()
commit_dict = convention.parse_commit(commit)
assert not commit_dict["is_major"]
assert not commit_dict["is_minor"]
assert commit_dict["is_patch"]
|