summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest-sftpfs17
1 files changed, 17 insertions, 0 deletions
diff --git a/test-sftpfs b/test-sftpfs
index 83a6c745..255b8c24 100755
--- a/test-sftpfs
+++ b/test-sftpfs
@@ -60,6 +60,23 @@ class SftpTests(unittest.TestCase, obnamlib.VfsTests):
self.fs.close()
shutil.rmtree(self.basepath)
+ def test_connect_to_remote_root_dir(self):
+ url = 'sftp://localhost/'
+ 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('/'))