test_web.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. # test_web.py -- Compatibility tests for the git web server.
  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 between Dulwich and the cgit HTTP server.
  20. warning: these tests should be fairly stable, but when writing/debugging new
  21. tests, deadlocks may freeze the test process such that it cannot be
  22. Ctrl-C'ed. On POSIX systems, you can kill the tests with Ctrl-Z, "kill %".
  23. """
  24. import threading
  25. from wsgiref import simple_server
  26. import sys
  27. from dulwich.server import (
  28. DictBackend,
  29. )
  30. from dulwich.tests import (
  31. SkipTest,
  32. skipIf,
  33. )
  34. from dulwich.web import (
  35. make_wsgi_chain,
  36. HTTPGitApplication,
  37. WSGIRequestHandlerLogger,
  38. WSGIServerLogger,
  39. )
  40. from dulwich.tests.compat.server_utils import (
  41. ServerTests,
  42. NoSideBand64kReceivePackHandler,
  43. )
  44. from dulwich.tests.compat.utils import (
  45. CompatTestCase,
  46. )
  47. @skipIf(sys.platform == 'win32', 'Broken on windows, with very long fail time.')
  48. class WebTests(ServerTests):
  49. """Base tests for web server tests.
  50. Contains utility and setUp/tearDown methods, but does non inherit from
  51. TestCase so tests are not automatically run.
  52. """
  53. protocol = 'http'
  54. def _start_server(self, repo):
  55. backend = DictBackend({'/': repo})
  56. app = self._make_app(backend)
  57. dul_server = simple_server.make_server(
  58. 'localhost', 0, app, server_class=WSGIServerLogger,
  59. handler_class=WSGIRequestHandlerLogger)
  60. self.addCleanup(dul_server.shutdown)
  61. self.addCleanup(dul_server.server_close)
  62. threading.Thread(target=dul_server.serve_forever).start()
  63. self._server = dul_server
  64. _, port = dul_server.socket.getsockname()
  65. return port
  66. @skipIf(sys.platform == 'win32', 'Broken on windows, with very long fail time.')
  67. class SmartWebTestCase(WebTests, CompatTestCase):
  68. """Test cases for smart HTTP server.
  69. This server test case does not use side-band-64k in git-receive-pack.
  70. """
  71. min_git_version = (1, 6, 6)
  72. def _handlers(self):
  73. return {'git-receive-pack': NoSideBand64kReceivePackHandler}
  74. def _check_app(self, app):
  75. receive_pack_handler_cls = app.handlers['git-receive-pack']
  76. caps = receive_pack_handler_cls.capabilities()
  77. self.assertFalse('side-band-64k' in caps)
  78. def _make_app(self, backend):
  79. app = make_wsgi_chain(backend, handlers=self._handlers())
  80. to_check = app
  81. # peel back layers until we're at the base application
  82. while not issubclass(to_check.__class__, HTTPGitApplication):
  83. to_check = to_check.app
  84. self._check_app(to_check)
  85. return app
  86. @skipIf(sys.platform == 'win32', 'Broken on windows, with very long fail time.')
  87. class SmartWebSideBand64kTestCase(SmartWebTestCase):
  88. """Test cases for smart HTTP server with side-band-64k support."""
  89. # side-band-64k in git-receive-pack was introduced in git 1.7.0.2
  90. min_git_version = (1, 7, 0, 2)
  91. def _handlers(self):
  92. return None # default handlers include side-band-64k
  93. def _check_app(self, app):
  94. receive_pack_handler_cls = app.handlers['git-receive-pack']
  95. caps = receive_pack_handler_cls.capabilities()
  96. self.assertTrue('side-band-64k' in caps)
  97. @skipIf(sys.platform == 'win32', 'Broken on windows, with very long fail time.')
  98. class DumbWebTestCase(WebTests, CompatTestCase):
  99. """Test cases for dumb HTTP server."""
  100. def _make_app(self, backend):
  101. return make_wsgi_chain(backend, dumb=True)
  102. def test_push_to_dulwich(self):
  103. # Note: remove this if dulwich implements dumb web pushing.
  104. raise SkipTest('Dumb web pushing not supported.')
  105. def test_push_to_dulwich_remove_branch(self):
  106. # Note: remove this if dumb pushing is supported
  107. raise SkipTest('Dumb web pushing not supported.')
  108. def test_new_shallow_clone_from_dulwich(self):
  109. # Note: remove this if C git and dulwich implement dumb web shallow
  110. # clones.
  111. raise SkipTest('Dumb web shallow cloning not supported.')
  112. def test_fetch_same_depth_into_shallow_clone_from_dulwich(self):
  113. # Note: remove this if C git and dulwich implement dumb web shallow
  114. # clones.
  115. raise SkipTest('Dumb web shallow cloning not supported.')
  116. def test_fetch_full_depth_into_shallow_clone_from_dulwich(self):
  117. # Note: remove this if C git and dulwich implement dumb web shallow
  118. # clones.
  119. raise SkipTest('Dumb web shallow cloning not supported.')
  120. def test_push_to_dulwich_issue_88_standard(self):
  121. raise SkipTest('Dumb web pushing not supported.')