From: Mark Berger Date: Mon, 24 Jun 2013 22:28:05 +0000 (-0400) Subject: Adds delete_all_shares X-Git-Tag: allmydata-tahoe-1.10.1a1~148^2~2 X-Git-Url: https://git.rkrishnan.org/somewhere?a=commitdiff_plain;h=2ab6172302e91351e40942673828c93c67e2f253;p=tahoe-lafs%2Ftahoe-lafs.git Adds delete_all_shares --- diff --git a/src/allmydata/test/no_network.py b/src/allmydata/test/no_network.py index 7c904919..8dd9a2f9 100644 --- a/src/allmydata/test/no_network.py +++ b/src/allmydata/test/no_network.py @@ -13,7 +13,7 @@ # Tubs, so it is not useful for tests that involve a Helper, a KeyGenerator, # or the control.furl . -import os.path +import os from zope.interface import implements from twisted.application import service from twisted.internet import defer, reactor @@ -401,6 +401,12 @@ class GridTestMixin: if i_shnum in shnums: os.unlink(i_sharefile) + def delete_all_shares(self, serverdir): + sharedir = os.path.join(serverdir, "shares") + for prefixdir in os.listdir(sharedir): + if prefixdir != 'incoming': + fileutil.rm_dir(os.path.join(sharedir, prefixdir)) + def corrupt_share(self, (shnum, serverid, sharefile), corruptor_function): sharedata = open(sharefile, "rb").read() corruptdata = corruptor_function(sharedata)