From 97fba9ad17a505aac1a48f679a89f1ea9e54b491 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 23 Sep 2015 21:44:21 +0300 Subject: Add test to test-sftpfs for sftp://[::1]/ URLs --- test-sftpfs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'test-sftpfs') diff --git a/test-sftpfs b/test-sftpfs index 255b8c24..33d84146 100755 --- a/test-sftpfs +++ b/test-sftpfs @@ -76,6 +76,23 @@ class SftpTests(unittest.TestCase, obnamlib.VfsTests): fs.connect() cwd = fs.getcwd() self.assertEqual(cwd, '/') + + def test_connect_to_remote_root_dir_using_ipv6_address(self): + url = 'sftp://[::1]/' + settings = { + 'pure-paramiko': False, + 'create': True, + 'sftp-delay': 0, + 'ssh-key': '', + 'strict-ssh-host-keys': False, + 'ssh-known-hosts': os.path.expanduser('~/.ssh/known_hosts'), + 'ssh-command': None, + 'ssh-host-keys-check': 'no', + } + fs = obnamlib.plugins.sftp_plugin.SftpFS(url, settings=settings) + fs.connect() + cwd = fs.getcwd() + self.assertEqual(cwd, '/') def test_sets_path_to_absolute_path(self): self.assertTrue(self.fs.path.startswith('/')) -- cgit v1.2.1