Selaa lähdekoodia

client: Fix content type check in AbstractHttpGitClient._smart_request

Some git servers can send a Content-Type header containing a charset
directive. Official git client can successfully clone repositories
hosted on such server but dulwich was raising a GitProtocolError as
the code to check the header value was not expecting a directive to
be present in it.
Antoine Lambert 1 vuosi sitten
vanhempi
commit
9049214d1c
2 muutettua tiedostoa jossa 25 lisäystä ja 1 poistoa
  1. 1 1
      dulwich/client.py
  2. 24 0
      dulwich/tests/test_client.py

+ 1 - 1
dulwich/client.py

@@ -2007,7 +2007,7 @@ class AbstractHttpGitClient(GitClient):
         if isinstance(data, bytes):
             headers["Content-Length"] = str(len(data))
         resp, read = self._http_request(url, headers, data)
-        if resp.content_type != result_content_type:
+        if not resp.content_type.startswith(result_content_type):
             raise GitProtocolError(
                 "Invalid content-type from server: %s" % resp.content_type
             )

+ 24 - 0
dulwich/tests/test_client.py

@@ -1145,6 +1145,30 @@ class HttpGitClientTests(TestCase):
                 # check also the no redirection case
                 self.assertEqual(processed_url, base_url)
 
+    def test_smart_request_content_type_with_directive_check(self):
+        from urllib3.response import HTTPResponse
+
+        # we need to mock urllib3.PoolManager as this test will fail
+        # otherwise without an active internet connection
+        class PoolManagerMock:
+            def __init__(self) -> None:
+                self.headers: Dict[str, str] = {}
+
+            def request(self, method, url, fields=None, headers=None, redirect=True, preload_content=True):
+                return HTTPResponse(
+                    headers={
+                        "Content-Type": "application/x-git-upload-pack-result; charset=utf-8"
+                    },
+                    request_method=method,
+                    request_url=url,
+                    preload_content=preload_content,
+                    status=200,
+                )
+
+        clone_url = "https://hacktivis.me/git/blog.git/"
+        client = HttpGitClient(clone_url, pool_manager=PoolManagerMock(), config=None)
+        self.assertTrue(client._smart_request("git-upload-pack", clone_url, data=None))
+
 
 class TCPGitClientTests(TestCase):
     def test_get_url(self):