test_release_robot.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. # release_robot.py
  2. #
  3. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  4. # General Public License as public by the Free Software Foundation; version 2.0
  5. # or (at your option) any later version. You can redistribute it and/or
  6. # modify it under the terms of either of these two licenses.
  7. #
  8. # Unless required by applicable law or agreed to in writing, software
  9. # distributed under the License is distributed on an "AS IS" BASIS,
  10. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. # See the License for the specific language governing permissions and
  12. # limitations under the License.
  13. #
  14. # You should have received a copy of the licenses; if not, see
  15. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  16. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  17. # License, Version 2.0.
  18. #
  19. """Tests for release_robot."""
  20. import datetime
  21. import os
  22. import re
  23. import shutil
  24. import tempfile
  25. import time
  26. import unittest
  27. from dulwich.contrib import release_robot
  28. from ..repo import Repo
  29. from ..tests.utils import make_commit, make_tag
  30. BASEDIR = os.path.abspath(os.path.dirname(__file__)) # this directory
  31. def gmtime_to_datetime(gmt):
  32. return datetime.datetime(*time.gmtime(gmt)[:6])
  33. class TagPatternTests(unittest.TestCase):
  34. """test tag patterns"""
  35. def test_tag_pattern(self):
  36. """test tag patterns"""
  37. test_cases = {
  38. "0.3": "0.3",
  39. "v0.3": "0.3",
  40. "release0.3": "0.3",
  41. "Release-0.3": "0.3",
  42. "v0.3rc1": "0.3rc1",
  43. "v0.3-rc1": "0.3-rc1",
  44. "v0.3-rc.1": "0.3-rc.1",
  45. "version 0.3": "0.3",
  46. "version_0.3_rc_1": "0.3_rc_1",
  47. "v1": "1",
  48. "0.3rc1": "0.3rc1",
  49. }
  50. for testcase, version in test_cases.items():
  51. matches = re.match(release_robot.PATTERN, testcase)
  52. self.assertEqual(matches.group(1), version)
  53. class GetRecentTagsTest(unittest.TestCase):
  54. """test get recent tags"""
  55. # Git repo for dulwich project
  56. test_repo = os.path.join(BASEDIR, "dulwich_test_repo.zip")
  57. committer = b"Mark Mikofski <mark.mikofski@sunpowercorp.com>"
  58. test_tags = [b"v0.1a", b"v0.1"]
  59. tag_test_data = {
  60. test_tags[0]: [1484788003, b"3" * 40, None],
  61. test_tags[1]: [1484788314, b"1" * 40, (1484788401, b"2" * 40)],
  62. }
  63. @classmethod
  64. def setUpClass(cls):
  65. cls.projdir = tempfile.mkdtemp() # temporary project directory
  66. cls.repo = Repo.init(cls.projdir) # test repo
  67. obj_store = cls.repo.object_store # test repo object store
  68. # commit 1 ('2017-01-19T01:06:43')
  69. cls.c1 = make_commit(
  70. id=cls.tag_test_data[cls.test_tags[0]][1],
  71. commit_time=cls.tag_test_data[cls.test_tags[0]][0],
  72. message=b"unannotated tag",
  73. author=cls.committer,
  74. )
  75. obj_store.add_object(cls.c1)
  76. # tag 1: unannotated
  77. cls.t1 = cls.test_tags[0]
  78. cls.repo[b"refs/tags/" + cls.t1] = cls.c1.id # add unannotated tag
  79. # commit 2 ('2017-01-19T01:11:54')
  80. cls.c2 = make_commit(
  81. id=cls.tag_test_data[cls.test_tags[1]][1],
  82. commit_time=cls.tag_test_data[cls.test_tags[1]][0],
  83. message=b"annotated tag",
  84. parents=[cls.c1.id],
  85. author=cls.committer,
  86. )
  87. obj_store.add_object(cls.c2)
  88. # tag 2: annotated ('2017-01-19T01:13:21')
  89. cls.t2 = make_tag(
  90. cls.c2,
  91. id=cls.tag_test_data[cls.test_tags[1]][2][1],
  92. name=cls.test_tags[1],
  93. tag_time=cls.tag_test_data[cls.test_tags[1]][2][0],
  94. )
  95. obj_store.add_object(cls.t2)
  96. cls.repo[b"refs/heads/master"] = cls.c2.id
  97. cls.repo[b"refs/tags/" + cls.t2.name] = cls.t2.id # add annotated tag
  98. @classmethod
  99. def tearDownClass(cls):
  100. cls.repo.close()
  101. shutil.rmtree(cls.projdir)
  102. def test_get_recent_tags(self):
  103. """test get recent tags"""
  104. tags = release_robot.get_recent_tags(self.projdir) # get test tags
  105. for tag, metadata in tags:
  106. tag = tag.encode("utf-8")
  107. test_data = self.tag_test_data[tag] # test data tag
  108. # test commit date, id and author name
  109. self.assertEqual(metadata[0], gmtime_to_datetime(test_data[0]))
  110. self.assertEqual(metadata[1].encode("utf-8"), test_data[1])
  111. self.assertEqual(metadata[2].encode("utf-8"), self.committer)
  112. # skip unannotated tags
  113. tag_obj = test_data[2]
  114. if not tag_obj:
  115. continue
  116. # tag date, id and name
  117. self.assertEqual(metadata[3][0], gmtime_to_datetime(tag_obj[0]))
  118. self.assertEqual(metadata[3][1].encode("utf-8"), tag_obj[1])
  119. self.assertEqual(metadata[3][2].encode("utf-8"), tag)