From 83bfb3def57a68ec2d68442437eee9bf461f2257 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 10 Jul 2010 20:37:35 +1200 Subject: 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. --- test-sftpfs | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 test-sftpfs (limited to 'test-sftpfs') 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 . + + +'''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() -- cgit v1.2.1