test_repository.py 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # test_repo.py -- Git repo compatibility tests
  2. # Copyright (C) 2010 Google, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # of the License or (at your option) any later version of
  8. # the License.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18. # MA 02110-1301, USA.
  19. """Compatibility tests for dulwich repositories."""
  20. from io import BytesIO
  21. from itertools import chain
  22. import os
  23. from dulwich.objects import (
  24. hex_to_sha,
  25. )
  26. from dulwich.repo import (
  27. check_ref_format,
  28. )
  29. from dulwich.tests.utils import (
  30. tear_down_repo,
  31. skipIfPY3,
  32. )
  33. from dulwich.tests.compat.utils import (
  34. run_git_or_fail,
  35. import_repo,
  36. CompatTestCase,
  37. )
  38. @skipIfPY3
  39. class ObjectStoreTestCase(CompatTestCase):
  40. """Tests for git repository compatibility."""
  41. def setUp(self):
  42. super(ObjectStoreTestCase, self).setUp()
  43. self._repo = import_repo('server_new.export')
  44. self.addCleanup(tear_down_repo, self._repo)
  45. def _run_git(self, args):
  46. return run_git_or_fail(args, cwd=self._repo.path)
  47. def _parse_refs(self, output):
  48. refs = {}
  49. for line in BytesIO(output):
  50. fields = line.rstrip('\n').split(' ')
  51. self.assertEqual(3, len(fields))
  52. refname, type_name, sha = fields
  53. check_ref_format(refname[5:])
  54. hex_to_sha(sha)
  55. refs[refname] = (type_name, sha)
  56. return refs
  57. def _parse_objects(self, output):
  58. return set(s.rstrip('\n').split(' ')[0] for s in BytesIO(output))
  59. def test_bare(self):
  60. self.assertTrue(self._repo.bare)
  61. self.assertFalse(os.path.exists(os.path.join(self._repo.path, '.git')))
  62. def test_head(self):
  63. output = self._run_git(['rev-parse', 'HEAD'])
  64. head_sha = output.rstrip('\n')
  65. hex_to_sha(head_sha)
  66. self.assertEqual(head_sha, self._repo.refs['HEAD'])
  67. def test_refs(self):
  68. output = self._run_git(
  69. ['for-each-ref', '--format=%(refname) %(objecttype) %(objectname)'])
  70. expected_refs = self._parse_refs(output)
  71. actual_refs = {}
  72. for refname, sha in self._repo.refs.as_dict().iteritems():
  73. if refname == 'HEAD':
  74. continue # handled in test_head
  75. obj = self._repo[sha]
  76. self.assertEqual(sha, obj.id)
  77. actual_refs[refname] = (obj.type_name, obj.id)
  78. self.assertEqual(expected_refs, actual_refs)
  79. # TODO(dborowitz): peeled ref tests
  80. def _get_loose_shas(self):
  81. output = self._run_git(['rev-list', '--all', '--objects', '--unpacked'])
  82. return self._parse_objects(output)
  83. def _get_all_shas(self):
  84. output = self._run_git(['rev-list', '--all', '--objects'])
  85. return self._parse_objects(output)
  86. def assertShasMatch(self, expected_shas, actual_shas_iter):
  87. actual_shas = set()
  88. for sha in actual_shas_iter:
  89. obj = self._repo[sha]
  90. self.assertEqual(sha, obj.id)
  91. actual_shas.add(sha)
  92. self.assertEqual(expected_shas, actual_shas)
  93. def test_loose_objects(self):
  94. # TODO(dborowitz): This is currently not very useful since fast-imported
  95. # repos only contained packed objects.
  96. expected_shas = self._get_loose_shas()
  97. self.assertShasMatch(expected_shas,
  98. self._repo.object_store._iter_loose_objects())
  99. def test_packed_objects(self):
  100. expected_shas = self._get_all_shas() - self._get_loose_shas()
  101. self.assertShasMatch(expected_shas,
  102. chain(*self._repo.object_store.packs))
  103. def test_all_objects(self):
  104. expected_shas = self._get_all_shas()
  105. self.assertShasMatch(expected_shas, iter(self._repo.object_store))