summaryrefslogtreecommitdiff
path: root/test-sftpfs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-07-10 20:37:35 +1200
committerLars Wirzenius <liw@liw.fi>2010-07-10 20:37:35 +1200
commit83bfb3def57a68ec2d68442437eee9bf461f2257 (patch)
treea7adf42e834e838138b1c2920b37714146053f58 /test-sftpfs
parentab4870473d5c42fef21ac1693a5b484ee33d0542 (diff)
downloadobnam-83bfb3def57a68ec2d68442437eee9bf461f2257.tar.gz
Move SftpFS into a plugin and start getting it to work.
Add test-sftpfs to test it. Since it requires access to a working sftp server, can't run the tests using normal unit tests, unless I create a dummy sftp server, and I don't want to do that, so this is good enough for now. Also make the plugins directory be a module so that I can import from the sftp plugin in test-sftpfs.
Diffstat (limited to 'test-sftpfs')
-rw-r--r--test-sftpfs48
1 files changed, 48 insertions, 0 deletions
diff --git a/test-sftpfs b/test-sftpfs
new file mode 100644
index 00000000..06b98b93
--- /dev/null
+++ b/test-sftpfs
@@ -0,0 +1,48 @@
+#!/usr/bin/python
+# Copyright 2010 Lars Wirzenius
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+'''Test SftpFS.
+
+This can't be part of the normal unit tests, since it requires access
+to a (real) ssh server.
+
+'''
+
+
+import os
+import unittest
+
+import obnamlib
+import obnamlib.plugins.sftp_plugin
+
+
+class SftpTests(unittest.TestCase):
+
+ def setUp(self):
+ self.baseurl = os.environ['OBNAM_SFTP_TEST']
+ self.fs = obnamlib.plugins.sftp_plugin.SftpFS(self.baseurl)
+ self.fs.connect()
+
+ def tearDown(self):
+ self.fs.close()
+
+ def test_ok(self):
+ self.assert_(True)
+
+
+if __name__ == '__main__':
+ unittest.main()