server_utils.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. # server_utils.py -- Git server compatibility utilities
  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. """Utilities for testing git server compatibility."""
  20. import errno
  21. import os
  22. import shutil
  23. import socket
  24. import tempfile
  25. from dulwich.repo import Repo
  26. from dulwich.objects import hex_to_sha
  27. from dulwich.server import (
  28. ReceivePackHandler,
  29. )
  30. from dulwich.tests.utils import (
  31. tear_down_repo,
  32. )
  33. from dulwich.tests.compat.utils import (
  34. run_git_or_fail,
  35. )
  36. from dulwich.tests.compat.utils import require_git_version
  37. class _StubRepo(object):
  38. """A stub repo that just contains a path to tear down."""
  39. def __init__(self, name):
  40. temp_dir = tempfile.mkdtemp()
  41. self.path = os.path.join(temp_dir, name)
  42. os.mkdir(self.path)
  43. def close(self):
  44. pass
  45. def _get_shallow(repo):
  46. shallow_file = repo.get_named_file('shallow')
  47. if not shallow_file:
  48. return []
  49. shallows = []
  50. with shallow_file:
  51. for line in shallow_file:
  52. sha = line.strip()
  53. if not sha:
  54. continue
  55. hex_to_sha(sha)
  56. shallows.append(sha)
  57. return shallows
  58. class ServerTests(object):
  59. """Base tests for testing servers.
  60. Does not inherit from TestCase so tests are not automatically run.
  61. """
  62. min_single_branch_version = (1, 7, 10,)
  63. def import_repos(self):
  64. self._old_repo = self.import_repo('server_old.export')
  65. self._new_repo = self.import_repo('server_new.export')
  66. def url(self, port):
  67. return '%s://localhost:%s/' % (self.protocol, port)
  68. def branch_args(self, branches=None):
  69. if branches is None:
  70. branches = ['master', 'branch']
  71. return ['%s:%s' % (b, b) for b in branches]
  72. def test_push_to_dulwich(self):
  73. self.import_repos()
  74. self.assertReposNotEqual(self._old_repo, self._new_repo)
  75. port = self._start_server(self._old_repo)
  76. run_git_or_fail(['push', self.url(port)] + self.branch_args(),
  77. cwd=self._new_repo.path)
  78. self.assertReposEqual(self._old_repo, self._new_repo)
  79. def test_push_to_dulwich_no_op(self):
  80. self._old_repo = self.import_repo('server_old.export')
  81. self._new_repo = self.import_repo('server_old.export')
  82. self.assertReposEqual(self._old_repo, self._new_repo)
  83. port = self._start_server(self._old_repo)
  84. run_git_or_fail(['push', self.url(port)] + self.branch_args(),
  85. cwd=self._new_repo.path)
  86. self.assertReposEqual(self._old_repo, self._new_repo)
  87. def test_push_to_dulwich_remove_branch(self):
  88. self._old_repo = self.import_repo('server_old.export')
  89. self._new_repo = self.import_repo('server_old.export')
  90. self.assertReposEqual(self._old_repo, self._new_repo)
  91. port = self._start_server(self._old_repo)
  92. run_git_or_fail(['push', self.url(port), ":master"],
  93. cwd=self._new_repo.path)
  94. self.assertEqual(
  95. list(self._old_repo.get_refs().keys()), [b"refs/heads/branch"])
  96. def test_fetch_from_dulwich(self):
  97. self.import_repos()
  98. self.assertReposNotEqual(self._old_repo, self._new_repo)
  99. port = self._start_server(self._new_repo)
  100. run_git_or_fail(['fetch', self.url(port)] + self.branch_args(),
  101. cwd=self._old_repo.path)
  102. # flush the pack cache so any new packs are picked up
  103. self._old_repo.object_store._pack_cache_time = 0
  104. self.assertReposEqual(self._old_repo, self._new_repo)
  105. def test_fetch_from_dulwich_no_op(self):
  106. self._old_repo = self.import_repo('server_old.export')
  107. self._new_repo = self.import_repo('server_old.export')
  108. self.assertReposEqual(self._old_repo, self._new_repo)
  109. port = self._start_server(self._new_repo)
  110. run_git_or_fail(['fetch', self.url(port)] + self.branch_args(),
  111. cwd=self._old_repo.path)
  112. # flush the pack cache so any new packs are picked up
  113. self._old_repo.object_store._pack_cache_time = 0
  114. self.assertReposEqual(self._old_repo, self._new_repo)
  115. def test_clone_from_dulwich_empty(self):
  116. old_repo_dir = tempfile.mkdtemp()
  117. self.addCleanup(shutil.rmtree, old_repo_dir)
  118. self._old_repo = Repo.init_bare(old_repo_dir)
  119. port = self._start_server(self._old_repo)
  120. new_repo_base_dir = tempfile.mkdtemp()
  121. self.addCleanup(shutil.rmtree, new_repo_base_dir)
  122. new_repo_dir = os.path.join(new_repo_base_dir, 'empty_new')
  123. run_git_or_fail(['clone', self.url(port), new_repo_dir],
  124. cwd=new_repo_base_dir)
  125. new_repo = Repo(new_repo_dir)
  126. self.assertReposEqual(self._old_repo, new_repo)
  127. def test_lsremote_from_dulwich(self):
  128. self._repo = self.import_repo('server_old.export')
  129. port = self._start_server(self._repo)
  130. o = run_git_or_fail(['ls-remote', self.url(port)])
  131. self.assertEqual(len(o.split(b'\n')), 4)
  132. def test_new_shallow_clone_from_dulwich(self):
  133. require_git_version(self.min_single_branch_version)
  134. self._source_repo = self.import_repo('server_new.export')
  135. self._stub_repo = _StubRepo('shallow')
  136. self.addCleanup(tear_down_repo, self._stub_repo)
  137. port = self._start_server(self._source_repo)
  138. # Fetch at depth 1
  139. run_git_or_fail(['clone', '--mirror', '--depth=1', '--no-single-branch',
  140. self.url(port), self._stub_repo.path])
  141. clone = self._stub_repo = Repo(self._stub_repo.path)
  142. expected_shallow = [b'94de09a530df27ac3bb613aaecdd539e0a0655e1',
  143. b'da5cd81e1883c62a25bb37c4d1f8ad965b29bf8d']
  144. self.assertEqual(expected_shallow, _get_shallow(clone))
  145. self.assertReposNotEqual(clone, self._source_repo)
  146. def test_fetch_same_depth_into_shallow_clone_from_dulwich(self):
  147. require_git_version(self.min_single_branch_version)
  148. self._source_repo = self.import_repo('server_new.export')
  149. self._stub_repo = _StubRepo('shallow')
  150. self.addCleanup(tear_down_repo, self._stub_repo)
  151. port = self._start_server(self._source_repo)
  152. # Fetch at depth 1
  153. run_git_or_fail(['clone', '--mirror', '--depth=1', '--no-single-branch',
  154. self.url(port), self._stub_repo.path])
  155. clone = self._stub_repo = Repo(self._stub_repo.path)
  156. # Fetching at the same depth is a no-op.
  157. run_git_or_fail(
  158. ['fetch', '--depth=1', self.url(port)] + self.branch_args(),
  159. cwd=self._stub_repo.path)
  160. expected_shallow = [b'94de09a530df27ac3bb613aaecdd539e0a0655e1',
  161. b'da5cd81e1883c62a25bb37c4d1f8ad965b29bf8d']
  162. self.assertEqual(expected_shallow, _get_shallow(clone))
  163. self.assertReposNotEqual(clone, self._source_repo)
  164. def test_fetch_full_depth_into_shallow_clone_from_dulwich(self):
  165. require_git_version(self.min_single_branch_version)
  166. self._source_repo = self.import_repo('server_new.export')
  167. self._stub_repo = _StubRepo('shallow')
  168. self.addCleanup(tear_down_repo, self._stub_repo)
  169. port = self._start_server(self._source_repo)
  170. # Fetch at depth 1
  171. run_git_or_fail(['clone', '--mirror', '--depth=1', '--no-single-branch',
  172. self.url(port), self._stub_repo.path])
  173. clone = self._stub_repo = Repo(self._stub_repo.path)
  174. # Fetching at the same depth is a no-op.
  175. run_git_or_fail(
  176. ['fetch', '--depth=1', self.url(port)] + self.branch_args(),
  177. cwd=self._stub_repo.path)
  178. # The whole repo only has depth 3, so it should equal server_new.
  179. run_git_or_fail(
  180. ['fetch', '--depth=3', self.url(port)] + self.branch_args(),
  181. cwd=self._stub_repo.path)
  182. self.assertEqual([], _get_shallow(clone))
  183. self.assertReposEqual(clone, self._source_repo)
  184. def test_fetch_from_dulwich_issue_88_standard(self):
  185. # Basically an integration test to see that the ACK/NAK
  186. # generation works on repos with common head.
  187. self._source_repo = self.import_repo('issue88_expect_ack_nak_server.export')
  188. self._client_repo = self.import_repo('issue88_expect_ack_nak_client.export')
  189. port = self._start_server(self._source_repo)
  190. run_git_or_fail(['fetch', self.url(port), 'master',],
  191. cwd=self._client_repo.path)
  192. self.assertObjectStoreEqual(
  193. self._source_repo.object_store,
  194. self._client_repo.object_store)
  195. def test_fetch_from_dulwich_issue_88_alternative(self):
  196. # likewise, but the case where the two repos have no common parent
  197. self._source_repo = self.import_repo('issue88_expect_ack_nak_other.export')
  198. self._client_repo = self.import_repo('issue88_expect_ack_nak_client.export')
  199. port = self._start_server(self._source_repo)
  200. self.assertRaises(KeyError, self._client_repo.get_object,
  201. b'02a14da1fc1fc13389bbf32f0af7d8899f2b2323')
  202. run_git_or_fail(['fetch', self.url(port), 'master',],
  203. cwd=self._client_repo.path)
  204. self.assertEqual(b'commit', self._client_repo.get_object(
  205. b'02a14da1fc1fc13389bbf32f0af7d8899f2b2323').type_name)
  206. def test_push_to_dulwich_issue_88_standard(self):
  207. # Same thing, but we reverse the role of the server/client
  208. # and do a push instead.
  209. self._source_repo = self.import_repo('issue88_expect_ack_nak_client.export')
  210. self._client_repo = self.import_repo('issue88_expect_ack_nak_server.export')
  211. port = self._start_server(self._source_repo)
  212. run_git_or_fail(['push', self.url(port), 'master',],
  213. cwd=self._client_repo.path)
  214. self.assertReposEqual(self._source_repo, self._client_repo)
  215. # TODO(dborowitz): Come up with a better way of testing various permutations of
  216. # capabilities. The only reason it is the way it is now is that side-band-64k
  217. # was only recently introduced into git-receive-pack.
  218. class NoSideBand64kReceivePackHandler(ReceivePackHandler):
  219. """ReceivePackHandler that does not support side-band-64k."""
  220. @classmethod
  221. def capabilities(cls):
  222. return tuple(c for c in ReceivePackHandler.capabilities()
  223. if c != b'side-band-64k')
  224. def ignore_error(error):
  225. """Check whether this error is safe to ignore."""
  226. (e_type, e_value, e_tb) = error
  227. return (issubclass(e_type, socket.error) and
  228. e_value[0] in (errno.ECONNRESET, errno.EPIPE))