summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/finaltest.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdiff-backup/testing/finaltest.py')
-rw-r--r--rdiff-backup/testing/finaltest.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/rdiff-backup/testing/finaltest.py b/rdiff-backup/testing/finaltest.py
index 43daef6..e0589e7 100644
--- a/rdiff-backup/testing/finaltest.py
+++ b/rdiff-backup/testing/finaltest.py
@@ -331,5 +331,21 @@ class FinalCorrupt(PathSetter):
self.set_connections(None, None, "test1/", '../')
self.exec_rb(None, 'testfiles/corruptbackup_source',
'testfiles/output')
+
+ def testCheckpointData(self):
+ """Destination directory has bad checkpoint data, no sym"""
+ self.delete_tmpdirs()
+ assert not os.system("cp -a testfiles/corrupt_dest1 testfiles/output")
+ self.set_connections(None, None, None, None)
+ self.exec_rb(None, 'testfiles/various_file_types', 'testfiles/output')
+
+ def testCheckpointData2(self):
+ """Destination directory has bad checkpoint data, with sym"""
+ self.delete_tmpdirs()
+ assert not os.system("cp -a testfiles/corrupt_dest2 testfiles/output")
+ self.set_connections(None, None, None, None)
+ self.exec_rb(None, 'testfiles/various_file_types', 'testfiles/output')
+
+
if __name__ == "__main__": unittest.main()