-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bennetrr
committed
Apr 5, 2024
1 parent
46b2a4b
commit 18ca971
Showing
9 changed files
with
1,803 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[FORMAT] | ||
max-line-length=120 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
"""Test all scenarios where a hotfix / cherrypick is made.""" | ||
# pylint: disable=too-many-locals | ||
import unittest | ||
from unittest import TestCase | ||
|
||
from utils import ActionInputs, ActionOutputs, CommitMessages, TestRepo, run_action, setup_logging | ||
|
||
|
||
class HotfixTestCase(TestCase): | ||
"""Test all scenarios where a hotfix / cherrypick is made.""" | ||
repo: TestRepo | ||
|
||
@classmethod | ||
def setUpClass(cls): | ||
setup_logging() | ||
|
||
def setUp(self): | ||
self.repo = TestRepo() | ||
|
||
def tearDown(self): | ||
self.repo.close() | ||
|
||
def test_feature_then_hotfix(self): | ||
"""Test Case: Run the action after a ``feat:`` commit and after a hotfix.""" | ||
# Arrange | ||
# Feature | ||
args_feat_release = ActionInputs( | ||
prefix='v', | ||
suffix='pre', | ||
previous_version_suffix='pre', | ||
create_tag=True | ||
) | ||
|
||
expected_output_feat_release = ActionOutputs( | ||
version='0.1.0-pre', | ||
version_name='v0.1.0-pre', | ||
previous_version='', | ||
previous_version_name='', | ||
has_changes=True | ||
) | ||
|
||
args_feat_beta = ActionInputs( | ||
prefix='v', | ||
suffix='beta', | ||
previous_version_suffix='pre', | ||
create_tag=True | ||
) | ||
|
||
expected_output_feat_beta = ActionOutputs( | ||
version='0.1.0-beta', | ||
version_name='v0.1.0-beta', | ||
previous_version='', | ||
previous_version_name='', | ||
has_changes=True | ||
) | ||
|
||
args_feat_prod = ActionInputs( | ||
prefix='v', | ||
suffix='', | ||
previous_version_suffix='beta', | ||
create_tag=True | ||
) | ||
|
||
expected_output_feat_prod = ActionOutputs( | ||
version='0.1.0', | ||
version_name='v0.1.0', | ||
previous_version='', | ||
previous_version_name='', | ||
has_changes=True | ||
) | ||
|
||
# Hotfix | ||
args_hotfix_release = ActionInputs( | ||
prefix='v', | ||
suffix='pre', | ||
previous_version_suffix='pre', | ||
bumping_suffix='hotfix', | ||
only_bump_suffix=True, | ||
create_tag=True | ||
) | ||
|
||
expected_output_hotfix_release = ActionOutputs( | ||
version='0.1.0-pre-hotfix.1', | ||
version_name='v0.1.0-pre-hotfix.1', | ||
previous_version='0.1.0-pre', | ||
previous_version_name='v0.1.0-pre', | ||
has_changes=True | ||
) | ||
|
||
args_hotfix_beta = ActionInputs( | ||
prefix='v', | ||
suffix='beta', | ||
previous_version_suffix='pre', | ||
bumping_suffix='hotfix', | ||
only_bump_suffix=True, | ||
create_tag=True | ||
) | ||
|
||
expected_output_hotfix_beta = ActionOutputs( | ||
version='0.1.0-beta-hotfix.1', | ||
version_name='v0.1.0-beta-hotfix.1', | ||
previous_version='0.1.0-beta', | ||
previous_version_name='v0.1.0-beta', | ||
has_changes=True | ||
) | ||
|
||
args_hotfix_prod = ActionInputs( | ||
prefix='v', | ||
suffix='', | ||
previous_version_suffix='beta', | ||
bumping_suffix='hotfix', | ||
only_bump_suffix=True, | ||
create_tag=True | ||
) | ||
|
||
expected_output_hotfix_prod = ActionOutputs( | ||
version='0.1.0-hotfix.1', | ||
version_name='v0.1.0-hotfix.1', | ||
previous_version='0.1.0', | ||
previous_version_name='v0.1.0', | ||
has_changes=True | ||
) | ||
|
||
# Act | ||
# Feature | ||
self.repo.commit(CommitMessages.FEATURE) | ||
|
||
self.repo.merge('main', 'release') | ||
actual_output_feat_release = run_action(args_feat_release) | ||
tag_feat_release = self.repo.get_latest_tag_name() | ||
|
||
self.repo.merge('release', 'release-beta') | ||
actual_output_feat_beta = run_action(args_feat_beta) | ||
tag_feat_beta = self.repo.get_latest_tag_name() | ||
|
||
self.repo.merge('release-beta', 'release-prod') | ||
actual_output_feat_prod = run_action(args_feat_prod) | ||
tag_feat_prod = self.repo.get_latest_tag_name() | ||
|
||
# Hotfix | ||
self.repo.checkout('main') | ||
commit = self.repo.commit(CommitMessages.FIX) | ||
|
||
self.repo.cherrypick(commit, 'release') | ||
actual_output_hotfix_release = run_action(args_hotfix_release) | ||
tag_hotfix_release = self.repo.get_latest_tag_name() | ||
|
||
self.repo.cherrypick(commit, 'release-beta') | ||
actual_output_hotfix_beta = run_action(args_hotfix_beta) | ||
tag_hotfix_beta = self.repo.get_latest_tag_name() | ||
|
||
self.repo.cherrypick(commit, 'release-prod') | ||
actual_output_hotfix_prod = run_action(args_hotfix_prod) | ||
tag_hotfix_prod = self.repo.get_latest_tag_name() | ||
|
||
# Assert | ||
# Feature | ||
self.assertEqual(expected_output_feat_release, actual_output_feat_release) | ||
self.assertEqual(expected_output_feat_release.version_name, tag_feat_release) | ||
|
||
self.assertEqual(expected_output_feat_beta, actual_output_feat_beta) | ||
self.assertEqual(expected_output_feat_beta.version_name, tag_feat_beta) | ||
|
||
self.assertEqual(expected_output_feat_prod, actual_output_feat_prod) | ||
self.assertEqual(expected_output_feat_prod.version_name, tag_feat_prod) | ||
|
||
# Hotfix | ||
self.assertEqual(expected_output_hotfix_release, actual_output_hotfix_release) | ||
self.assertEqual(expected_output_hotfix_release.version_name, tag_hotfix_release) | ||
|
||
self.assertEqual(expected_output_hotfix_beta, actual_output_hotfix_beta) | ||
self.assertEqual(expected_output_hotfix_beta.version_name, tag_hotfix_beta) | ||
|
||
self.assertEqual(expected_output_hotfix_prod, actual_output_hotfix_prod) | ||
self.assertEqual(expected_output_hotfix_prod.version_name, tag_hotfix_prod) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
Oops, something went wrong.