summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/setconnectionstest.py
diff options
context:
space:
mode:
authorben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-03-21 07:22:43 +0000
committerben <ben@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2002-03-21 07:22:43 +0000
commit8c37a5bdfdd46d5cfad6e9d67925ddef9ca382bf (patch)
tree8f19be83962ef31d8ad58429d575c6f17d89c0ea /rdiff-backup/testing/setconnectionstest.py
parent8259a0d8a9ad1396a93cd6320943dc33446ac6ed (diff)
downloadrdiff-backup-8c37a5bdfdd46d5cfad6e9d67925ddef9ca382bf.tar.gz
First checkin
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@2 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
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()