summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/setconnectionstest.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdiff-backup/testing/setconnectionstest.py')
-rw-r--r--rdiff-backup/testing/setconnectionstest.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/rdiff-backup/testing/setconnectionstest.py b/rdiff-backup/testing/setconnectionstest.py
new file mode 100644
index 0000000..d5d2671
--- /dev/null
+++ b/rdiff-backup/testing/setconnectionstest.py
@@ -0,0 +1,26 @@
+import unittest
+execfile("commontest.py")
+rbexec("setconnections.py")
+
+class SetConnectionsTest(unittest.TestCase):
+ """Set SetConnections Class"""
+ def testParsing(self):
+ """Test parsing of various file descriptors"""
+ pfd = SetConnections.parse_file_desc
+ assert pfd("bescoto@folly.stanford.edu::/usr/bin/ls") == \
+ ("bescoto@folly.stanford.edu", "/usr/bin/ls")
+ assert pfd("hello there::/goodbye:euoeu") == \
+ ("hello there", "/goodbye:euoeu")
+ assert pfd(r"test\\ing\::more::and more\\..") == \
+ (r"test\ing::more", r"and more\\.."), \
+ pfd(r"test\\ing\::more::and more\\..")
+ assert pfd("a:b:c:d::e") == ("a:b:c:d", "e")
+ assert pfd("foobar") == (None, "foobar")
+ assert pfd(r"hello\::there") == (None, "hello\::there")
+
+ self.assertRaises(SetConnectionsException, pfd, r"hello\:there::")
+ self.assertRaises(SetConnectionsException, pfd, "foobar\\")
+
+
+
+if __name__ == "__main__": unittest.main()