Commit 970c5f8f authored by bescoto's avatar bescoto

Oops, last patch broke remote --remove-older-than, fix and test here


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@626 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 8aaeaa0f
......@@ -173,7 +173,7 @@ def set_allowed_requests(sec_level):
"restore.TargetStruct.get_initial_iter",
"restore.TargetStruct.patch",
"restore.TargetStruct.set_target_select",
"regress.Regress"])
"regress.Regress", "manage.delete_earlier_than_local"])
if Globals.server:
l.extend(["SetConnections.init_connection_remote",
"log.Log.setverbosity", "log.Log.setterm_verbosity",
......
......@@ -377,6 +377,12 @@ class FinalMisc(PathSetter):
self.exec_rb_extra_args(None, "--list-increment-sizes",
"testfiles/restoretest3")
def testListIncrementSizesRemote(self):
"""Test --list-increment-sizes switch. Uses restoretest3"""
self.set_connections('test1', '../', None, None)
self.exec_rb_extra_args(None, "--list-increment-sizes",
"testfiles/restoretest3")
def testListIncrementsRemote(self):
"""Test --list-increment-sizes mode remotely. Uses restoretest3"""
self.set_connections('test1', '../', None, None)
......@@ -427,6 +433,18 @@ class FinalMisc(PathSetter):
"testfiles/increment1", "testfiles/output")
self.exec_rb_extra_args(None, "--remove-older-than now", "testfiles/output")
def testRemoveOlderThanRemote(self):
"""Test --remove-older-than remotely"""
Myrm("testfiles/output")
assert not os.system("cp -a testfiles/restoretest3 testfiles/output")
self.set_connections("test1/", "../", None, None)
self.exec_rb_extra_args(None, "--remove-older-than 20000",
"testfiles/output")
rbdir = rpath.RPath(Globals.local_connection,
"testfiles/output/rdiff-backup-data")
for inc in self.get_all_increments(rbdir):
assert inc.getinctime() >= 20000
def testCompare(self):
"""Test --compare and --compare-older-than modes"""
Myrm("testfiles/output")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment