summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/setconnectionstest.py
blob: d5d2671d676d4b5403006d8961e4bd7165e0ff14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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()