浏览代码

Make get_transport_and_path return a local client for windows abs paths.

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Gary van der Merwe 10 年之前
父节点
当前提交
f569d0d4c1
共有 2 个文件被更改,包括 14 次插入0 次删除
  1. 6 0
      dulwich/client.py
  2. 8 0
      dulwich/tests/test_client.py

+ 6 - 0
dulwich/client.py

@@ -43,6 +43,7 @@ import dulwich
 import select
 import socket
 import subprocess
+import sys
 import urllib2
 import urlparse
 
@@ -1106,6 +1107,11 @@ def get_transport_and_path(location, **kwargs):
     except ValueError:
         pass
 
+    if (sys.platform == 'win32' and
+            location[0].isalpha() and location[1:2] == ':\\'):
+        # Windows local path
+        return default_local_git_client_cls(**kwargs), location
+
     if ':' in location and not '@' in location:
         # SSH with no user@, zero or one leading slash.
         (hostname, path) = location.split(':')

+ 8 - 0
dulwich/tests/test_client.py

@@ -17,6 +17,8 @@
 # MA  02110-1301, USA.
 
 from io import BytesIO
+import sys
+from unittest import skipIf
 
 from dulwich import (
     client,
@@ -384,6 +386,12 @@ class TestGetTransportAndPath(TestCase):
         self.assertTrue(isinstance(c, SubprocessGitClient))
         self.assertEqual('foo.bar/baz', path)
 
+    @skipIf(sys.platform != 'win32', 'Behaviour only happens on windows.')
+    def test_local_abs_windows_path(self):
+        c, path = get_transport_and_path('C:\\foo.bar\\baz')
+        self.assertTrue(isinstance(c, SubprocessGitClient))
+        self.assertEqual('C:\\foo.bar\\baz', path)
+
     def test_error(self):
         # Need to use a known urlparse.uses_netloc URL scheme to get the
         # expected parsing of the URL on Python versions less than 2.6.5