summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/robusttest.py
blob: 6b9e3563d21c7222070eff7d7161ab078e86214f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

import os, unittest
from commontest import *
from rdiff_backup import rpath, robust, TempFile, Globals
		

class TempFileTest(unittest.TestCase):
	"""Test creation and management of tempfiles in TempFile module"""
	rp_base = rpath.RPath(Globals.local_connection,
						  "./testfiles/robust/testfile_base")
	def testBasic(self):
		"""Make a temp file, write to it, and then delete it

		Also test tempfile accounting and file name prefixing.

		"""
		assert not TempFile._tempfiles
		tf = TempFile.new(self.rp_base)
		assert TempFile._tempfiles == [tf]
		assert tf.dirsplit()[0] == "testfiles/robust", tf.dirsplit()[0]
		assert not tf.lstat()
		fp = tf.open("w")
		fp.write("hello")
		assert not fp.close()
		fp = tf.open("r")
		assert fp.read() == "hello"
		assert not fp.close()
		tf.delete()
		assert not TempFile._tempfiles

	def testRename(self):
		"""Test renaming of tempfile"""
		tf = TempFile.new(self.rp_base)
		assert TempFile._tempfiles
		tf.touch()
		destination = rpath.RPath(Globals.local_connection,
								  "./testfiles/robust/testfile_dest")
		tf.rename(destination)
		assert not TempFile._tempfiles
		assert destination.lstat()
		destination.delete()

class RobustTest(unittest.TestCase):
	"""Test robust module"""
	def test_check_common_error(self):
		"""Test capturing errors"""
		def cause_catchable_error(a):
			os.lstat("aoenuthaoeu/aosutnhcg.4fpr,38p")
		def cause_uncatchable_error():
			ansoethusaotneuhsaotneuhsaontehuaou
		result = robust.check_common_error(None, cause_catchable_error, [1])
		assert result is None, result
		try: robust.check_common_error(None, cause_uncatchable_error)
		except NameError: pass
		else: assert 0, "Key error not raised"
		

if __name__ == '__main__': unittest.main()