mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
Fixes tests which were improperly deleting shares
This commit is contained in:
parent
2ab6172302
commit
e594f2b1ab
@ -1887,11 +1887,7 @@ class EncodingParameters(GridTestMixin, unittest.TestCase, SetDEPMixin,
|
||||
self._add_server_with_share(server_number=3, share_number=1)
|
||||
# Copy shares
|
||||
self._copy_share_to_server(3, 1)
|
||||
storedir = self.get_serverdir(0)
|
||||
# remove the storedir, wiping out any existing shares
|
||||
shutil.rmtree(storedir)
|
||||
# create an empty storedir to replace the one we just removed
|
||||
os.mkdir(storedir)
|
||||
self.delete_all_shares(self.get_serverdir(0))
|
||||
client = self.g.clients[0]
|
||||
client.encoding_params['happy'] = 4
|
||||
return client
|
||||
@ -1929,10 +1925,7 @@ class EncodingParameters(GridTestMixin, unittest.TestCase, SetDEPMixin,
|
||||
# Copy shares
|
||||
self._copy_share_to_server(3, 1)
|
||||
#Remove shares from server 0
|
||||
sharedir = os.path.join(self.get_serverdir(0), "shares")
|
||||
for prefixdir in os.listdir(sharedir):
|
||||
if prefixdir != 'incoming':
|
||||
fileutil.rm_dir(os.path.join(sharedir, prefixdir))
|
||||
self.delete_all_shares(self.get_serverdir(0))
|
||||
client = self.g.clients[0]
|
||||
client.encoding_params['happy'] = 4
|
||||
return client
|
||||
|
Loading…
Reference in New Issue
Block a user