test_server.py 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # test_server.py -- Compatibility tests for git server.
  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. """Compatibility tests between Dulwich and the cgit server.
  21. Warning: these tests should be fairly stable, but when writing/debugging new
  22. tests, deadlocks may freeze the test process such that it cannot be
  23. Ctrl-C'ed. On POSIX systems, you can kill the tests with Ctrl-Z, "kill %".
  24. """
  25. import threading
  26. import os
  27. import sys
  28. from dulwich.server import (
  29. DictBackend,
  30. TCPGitServer,
  31. )
  32. from dulwich.tests import skipIf
  33. from dulwich.tests.compat.server_utils import (
  34. ServerTests,
  35. NoSideBand64kReceivePackHandler,
  36. )
  37. from dulwich.tests.compat.utils import (
  38. CompatTestCase,
  39. require_git_version,
  40. )
  41. @skipIf(sys.platform == "win32", "Broken on windows, with very long fail time.")
  42. class GitServerTestCase(ServerTests, CompatTestCase):
  43. """Tests for client/server compatibility.
  44. This server test case does not use side-band-64k in git-receive-pack.
  45. """
  46. protocol = "git"
  47. def _handlers(self):
  48. return {b"git-receive-pack": NoSideBand64kReceivePackHandler}
  49. def _check_server(self, dul_server):
  50. receive_pack_handler_cls = dul_server.handlers[b"git-receive-pack"]
  51. caps = receive_pack_handler_cls.capabilities()
  52. self.assertNotIn(b"side-band-64k", caps)
  53. def _start_server(self, repo):
  54. backend = DictBackend({b"/": repo})
  55. dul_server = TCPGitServer(backend, b"localhost", 0, handlers=self._handlers())
  56. self._check_server(dul_server)
  57. self.addCleanup(dul_server.shutdown)
  58. self.addCleanup(dul_server.server_close)
  59. threading.Thread(target=dul_server.serve).start()
  60. self._server = dul_server
  61. _, port = self._server.socket.getsockname()
  62. return port
  63. @skipIf(sys.platform == "win32", "Broken on windows, with very long fail time.")
  64. class GitServerSideBand64kTestCase(GitServerTestCase):
  65. """Tests for client/server compatibility with side-band-64k support."""
  66. # side-band-64k in git-receive-pack was introduced in git 1.7.0.2
  67. min_git_version = (1, 7, 0, 2)
  68. def setUp(self):
  69. super().setUp()
  70. # side-band-64k is broken in the windows client.
  71. # https://github.com/msysgit/git/issues/101
  72. # Fix has landed for the 1.9.3 release.
  73. if os.name == "nt":
  74. require_git_version((1, 9, 3))
  75. def _handlers(self):
  76. return None # default handlers include side-band-64k
  77. def _check_server(self, server):
  78. receive_pack_handler_cls = server.handlers[b"git-receive-pack"]
  79. caps = receive_pack_handler_cls.capabilities()
  80. self.assertIn(b"side-band-64k", caps)