server_utils.py 13 KB

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