server_utils.py 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 select
  21. import socket
  22. import threading
  23. from dulwich.server import (
  24. ReceivePackHandler,
  25. )
  26. from dulwich.tests.utils import (
  27. tear_down_repo,
  28. )
  29. from utils import (
  30. import_repo,
  31. run_git,
  32. )
  33. class ServerTests(object):
  34. """Base tests for testing servers.
  35. Does not inherit from TestCase so tests are not automatically run.
  36. """
  37. def setUp(self):
  38. self._old_repo = import_repo('server_old.export')
  39. self._new_repo = import_repo('server_new.export')
  40. self._server = None
  41. def tearDown(self):
  42. if self._server is not None:
  43. self._server.shutdown()
  44. self._server = None
  45. tear_down_repo(self._old_repo)
  46. tear_down_repo(self._new_repo)
  47. def test_push_to_dulwich(self):
  48. self.assertReposNotEqual(self._old_repo, self._new_repo)
  49. port = self._start_server(self._old_repo)
  50. all_branches = ['master', 'branch']
  51. branch_args = ['%s:%s' % (b, b) for b in all_branches]
  52. url = '%s://localhost:%s/' % (self.protocol, port)
  53. returncode, _ = run_git(['push', url] + branch_args,
  54. cwd=self._new_repo.path)
  55. self.assertEqual(0, returncode)
  56. self.assertReposEqual(self._old_repo, self._new_repo)
  57. def test_fetch_from_dulwich(self):
  58. self.assertReposNotEqual(self._old_repo, self._new_repo)
  59. port = self._start_server(self._new_repo)
  60. all_branches = ['master', 'branch']
  61. branch_args = ['%s:%s' % (b, b) for b in all_branches]
  62. url = '%s://localhost:%s/' % (self.protocol, port)
  63. returncode, _ = run_git(['fetch', url] + branch_args,
  64. cwd=self._old_repo.path)
  65. # flush the pack cache so any new packs are picked up
  66. self._old_repo.object_store._pack_cache = None
  67. self.assertEqual(0, returncode)
  68. self.assertReposEqual(self._old_repo, self._new_repo)
  69. class ShutdownServerMixIn:
  70. """Mixin that allows serve_forever to be shut down.
  71. The methods in this mixin are backported from SocketServer.py in the Python
  72. 2.6.4 standard library. The mixin is unnecessary in 2.6 and later, when
  73. BaseServer supports the shutdown method directly.
  74. """
  75. def __init__(self):
  76. self.__is_shut_down = threading.Event()
  77. self.__serving = False
  78. def serve_forever(self, poll_interval=0.5):
  79. """Handle one request at a time until shutdown.
  80. Polls for shutdown every poll_interval seconds. Ignores
  81. self.timeout. If you need to do periodic tasks, do them in
  82. another thread.
  83. """
  84. self.__serving = True
  85. self.__is_shut_down.clear()
  86. while self.__serving:
  87. # XXX: Consider using another file descriptor or
  88. # connecting to the socket to wake this up instead of
  89. # polling. Polling reduces our responsiveness to a
  90. # shutdown request and wastes cpu at all other times.
  91. r, w, e = select.select([self], [], [], poll_interval)
  92. if r:
  93. self._handle_request_noblock()
  94. self.__is_shut_down.set()
  95. serve = serve_forever # override alias from TCPGitServer
  96. def shutdown(self):
  97. """Stops the serve_forever loop.
  98. Blocks until the loop has finished. This must be called while
  99. serve_forever() is running in another thread, or it will deadlock.
  100. """
  101. self.__serving = False
  102. self.__is_shut_down.wait()
  103. def handle_request(self):
  104. """Handle one request, possibly blocking.
  105. Respects self.timeout.
  106. """
  107. # Support people who used socket.settimeout() to escape
  108. # handle_request before self.timeout was available.
  109. timeout = self.socket.gettimeout()
  110. if timeout is None:
  111. timeout = self.timeout
  112. elif self.timeout is not None:
  113. timeout = min(timeout, self.timeout)
  114. fd_sets = select.select([self], [], [], timeout)
  115. if not fd_sets[0]:
  116. self.handle_timeout()
  117. return
  118. self._handle_request_noblock()
  119. def _handle_request_noblock(self):
  120. """Handle one request, without blocking.
  121. I assume that select.select has returned that the socket is
  122. readable before this function was called, so there should be
  123. no risk of blocking in get_request().
  124. """
  125. try:
  126. request, client_address = self.get_request()
  127. except socket.error:
  128. return
  129. if self.verify_request(request, client_address):
  130. try:
  131. self.process_request(request, client_address)
  132. except:
  133. self.handle_error(request, client_address)
  134. self.close_request(request)
  135. # TODO(dborowitz): Come up with a better way of testing various permutations of
  136. # capabilities. The only reason it is the way it is now is that side-band-64k
  137. # was only recently introduced into git-receive-pack.
  138. class NoSideBand64kReceivePackHandler(ReceivePackHandler):
  139. """ReceivePackHandler that does not support side-band-64k."""
  140. @classmethod
  141. def capabilities(cls):
  142. return tuple(c for c in ReceivePackHandler.capabilities()
  143. if c != 'side-band-64k')