test_objectspec.py 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. # test_objectspec.py -- tests for objectspec.py
  2. # Copyright (C) 2014 Jelmer Vernooij <jelmer@jelmer.uk>
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Tests for revision spec parsing."""
  21. # TODO: Round-trip parse-serialize-parse and serialize-parse-serialize tests.
  22. from dulwich.objects import (
  23. Blob,
  24. )
  25. from dulwich.objectspec import (
  26. parse_object,
  27. parse_commit_range,
  28. parse_ref,
  29. parse_refs,
  30. parse_reftuple,
  31. parse_reftuples,
  32. parse_tree,
  33. )
  34. from dulwich.repo import MemoryRepo
  35. from dulwich.tests import (
  36. TestCase,
  37. )
  38. from dulwich.tests.utils import (
  39. build_commit_graph,
  40. )
  41. class ParseObjectTests(TestCase):
  42. """Test parse_object."""
  43. def test_nonexistent(self):
  44. r = MemoryRepo()
  45. self.assertRaises(KeyError, parse_object, r, "thisdoesnotexist")
  46. def test_blob_by_sha(self):
  47. r = MemoryRepo()
  48. b = Blob.from_string(b"Blah")
  49. r.object_store.add_object(b)
  50. self.assertEqual(b, parse_object(r, b.id))
  51. class ParseCommitRangeTests(TestCase):
  52. """Test parse_commit_range."""
  53. def test_nonexistent(self):
  54. r = MemoryRepo()
  55. self.assertRaises(KeyError, parse_commit_range, r, "thisdoesnotexist")
  56. def test_commit_by_sha(self):
  57. r = MemoryRepo()
  58. c1, c2, c3 = build_commit_graph(
  59. r.object_store, [[1], [2, 1], [3, 1, 2]])
  60. self.assertEqual([c1], list(parse_commit_range(r, c1.id)))
  61. class ParseRefTests(TestCase):
  62. def test_nonexistent(self):
  63. r = {}
  64. self.assertRaises(KeyError, parse_ref, r, b"thisdoesnotexist")
  65. def test_ambiguous_ref(self):
  66. r = {b"ambig1": 'bla',
  67. b"refs/ambig1": 'bla',
  68. b"refs/tags/ambig1": 'bla',
  69. b"refs/heads/ambig1": 'bla',
  70. b"refs/remotes/ambig1": 'bla',
  71. b"refs/remotes/ambig1/HEAD": "bla"}
  72. self.assertEqual(b"ambig1", parse_ref(r, b"ambig1"))
  73. def test_ambiguous_ref2(self):
  74. r = {b"refs/ambig2": 'bla',
  75. b"refs/tags/ambig2": 'bla',
  76. b"refs/heads/ambig2": 'bla',
  77. b"refs/remotes/ambig2": 'bla',
  78. b"refs/remotes/ambig2/HEAD": "bla"}
  79. self.assertEqual(b"refs/ambig2", parse_ref(r, b"ambig2"))
  80. def test_ambiguous_tag(self):
  81. r = {b"refs/tags/ambig3": 'bla',
  82. b"refs/heads/ambig3": 'bla',
  83. b"refs/remotes/ambig3": 'bla',
  84. b"refs/remotes/ambig3/HEAD": "bla"}
  85. self.assertEqual(b"refs/tags/ambig3", parse_ref(r, b"ambig3"))
  86. def test_ambiguous_head(self):
  87. r = {b"refs/heads/ambig4": 'bla',
  88. b"refs/remotes/ambig4": 'bla',
  89. b"refs/remotes/ambig4/HEAD": "bla"}
  90. self.assertEqual(b"refs/heads/ambig4", parse_ref(r, b"ambig4"))
  91. def test_ambiguous_remote(self):
  92. r = {b"refs/remotes/ambig5": 'bla',
  93. b"refs/remotes/ambig5/HEAD": "bla"}
  94. self.assertEqual(b"refs/remotes/ambig5", parse_ref(r, b"ambig5"))
  95. def test_ambiguous_remote_head(self):
  96. r = {b"refs/remotes/ambig6/HEAD": "bla"}
  97. self.assertEqual(b"refs/remotes/ambig6/HEAD", parse_ref(r, b"ambig6"))
  98. def test_heads_full(self):
  99. r = {b"refs/heads/foo": "bla"}
  100. self.assertEqual(b"refs/heads/foo", parse_ref(r, b"refs/heads/foo"))
  101. def test_heads_partial(self):
  102. r = {b"refs/heads/foo": "bla"}
  103. self.assertEqual(b"refs/heads/foo", parse_ref(r, b"heads/foo"))
  104. def test_tags_partial(self):
  105. r = {b"refs/tags/foo": "bla"}
  106. self.assertEqual(b"refs/tags/foo", parse_ref(r, b"tags/foo"))
  107. class ParseRefsTests(TestCase):
  108. def test_nonexistent(self):
  109. r = {}
  110. self.assertRaises(KeyError, parse_refs, r, [b"thisdoesnotexist"])
  111. def test_head(self):
  112. r = {b"refs/heads/foo": "bla"}
  113. self.assertEqual([b"refs/heads/foo"], parse_refs(r, [b"foo"]))
  114. def test_full(self):
  115. r = {b"refs/heads/foo": "bla"}
  116. self.assertEqual([b"refs/heads/foo"], parse_refs(r, b"refs/heads/foo"))
  117. class ParseReftupleTests(TestCase):
  118. def test_nonexistent(self):
  119. r = {}
  120. self.assertRaises(KeyError, parse_reftuple, r, r, b"thisdoesnotexist")
  121. def test_head(self):
  122. r = {b"refs/heads/foo": "bla"}
  123. self.assertEqual((b"refs/heads/foo", b"refs/heads/foo", False),
  124. parse_reftuple(r, r, b"foo"))
  125. self.assertEqual((b"refs/heads/foo", b"refs/heads/foo", True),
  126. parse_reftuple(r, r, b"+foo"))
  127. self.assertEqual((b"refs/heads/foo", b"refs/heads/foo", True),
  128. parse_reftuple(r, {}, b"+foo"))
  129. def test_full(self):
  130. r = {b"refs/heads/foo": "bla"}
  131. self.assertEqual((b"refs/heads/foo", b"refs/heads/foo", False),
  132. parse_reftuple(r, r, b"refs/heads/foo"))
  133. def test_no_left_ref(self):
  134. r = {b"refs/heads/foo": "bla"}
  135. self.assertEqual((None, b"refs/heads/foo", False),
  136. parse_reftuple(r, r, b":refs/heads/foo"))
  137. def test_no_right_ref(self):
  138. r = {b"refs/heads/foo": "bla"}
  139. self.assertEqual((b"refs/heads/foo", None, False),
  140. parse_reftuple(r, r, b"refs/heads/foo:"))
  141. class ParseReftuplesTests(TestCase):
  142. def test_nonexistent(self):
  143. r = {}
  144. self.assertRaises(KeyError, parse_reftuples, r, r,
  145. [b"thisdoesnotexist"])
  146. def test_head(self):
  147. r = {b"refs/heads/foo": "bla"}
  148. self.assertEqual([(b"refs/heads/foo", b"refs/heads/foo", False)],
  149. parse_reftuples(r, r, [b"foo"]))
  150. def test_full(self):
  151. r = {b"refs/heads/foo": "bla"}
  152. self.assertEqual([(b"refs/heads/foo", b"refs/heads/foo", False)],
  153. parse_reftuples(r, r, b"refs/heads/foo"))
  154. class ParseTreeTests(TestCase):
  155. """Test parse_tree."""
  156. def test_nonexistent(self):
  157. r = MemoryRepo()
  158. self.assertRaises(KeyError, parse_tree, r, "thisdoesnotexist")
  159. def test_from_commit(self):
  160. r = MemoryRepo()
  161. c1, c2, c3 = build_commit_graph(
  162. r.object_store, [[1], [2, 1], [3, 1, 2]])
  163. self.assertEqual(r[c1.tree], parse_tree(r, c1.id))
  164. self.assertEqual(r[c1.tree], parse_tree(r, c1.tree))