|
@@ -31,6 +31,8 @@ from urllib.parse import (
|
|
|
urlparse,
|
|
|
)
|
|
|
|
|
|
+from unittest.mock import patch
|
|
|
+
|
|
|
import dulwich
|
|
|
from dulwich import (
|
|
|
client,
|
|
@@ -682,11 +684,41 @@ class TestGetTransportAndPathFromUrl(TestCase):
|
|
|
self.assertIsInstance(c, HttpGitClient)
|
|
|
self.assertEqual("/jelmer/dulwich", path)
|
|
|
|
|
|
+ @patch("os.name", "posix")
|
|
|
+ @patch("sys.platform", "linux")
|
|
|
def test_file(self):
|
|
|
c, path = get_transport_and_path_from_url("file:///home/jelmer/foo")
|
|
|
self.assertIsInstance(c, LocalGitClient)
|
|
|
self.assertEqual("/home/jelmer/foo", path)
|
|
|
|
|
|
+ @patch("os.name", "nt")
|
|
|
+ @patch("sys.platform", "win32")
|
|
|
+ def test_file_win(self):
|
|
|
+
|
|
|
+
|
|
|
+ from nturl2path import url2pathname
|
|
|
+
|
|
|
+ with patch("dulwich.client.url2pathname", url2pathname):
|
|
|
+ expected = "C:\\foo.bar\\baz"
|
|
|
+ for file_url in [
|
|
|
+ "file:C:/foo.bar/baz",
|
|
|
+ "file:/C:/foo.bar/baz",
|
|
|
+ "file://C:/foo.bar/baz",
|
|
|
+ "file://C://foo.bar//baz",
|
|
|
+ "file:///C:/foo.bar/baz",
|
|
|
+ ]:
|
|
|
+ c, path = get_transport_and_path(file_url)
|
|
|
+ self.assertIsInstance(c, LocalGitClient)
|
|
|
+ self.assertEqual(path, expected)
|
|
|
+
|
|
|
+ for remote_url in [
|
|
|
+ "file://host.example.com/C:/foo.bar/baz"
|
|
|
+ "file://host.example.com/C:/foo.bar/baz"
|
|
|
+ "file:////host.example/foo.bar/baz",
|
|
|
+ ]:
|
|
|
+ with self.assertRaises(NotImplementedError):
|
|
|
+ c, path = get_transport_and_path(remote_url)
|
|
|
+
|
|
|
|
|
|
class TestSSHVendor(object):
|
|
|
def __init__(self):
|