From: david-sarah Date: Sat, 12 Jun 2010 03:37:09 +0000 (-0700) Subject: SFTP: test that renaming onto a just-opened file fails. X-Git-Url: https://git.rkrishnan.org/uri/%3C?a=commitdiff_plain;h=11e88c340aa50153b4ce1f6a15249993ac5a72ee;p=tahoe-lafs%2Ftahoe-lafs.git SFTP: test that renaming onto a just-opened file fails. --- diff --git a/src/allmydata/test/test_sftp.py b/src/allmydata/test/test_sftp.py index a743d382..e37de5a2 100644 --- a/src/allmydata/test/test_sftp.py +++ b/src/allmydata/test/test_sftp.py @@ -6,6 +6,7 @@ from twisted.trial import unittest from twisted.internet import defer, reactor from twisted.python.failure import Failure from twisted.internet.error import ProcessDone, ProcessTerminated +from allmydata.util import deferredutil conch_interfaces = None sftp = None @@ -965,7 +966,7 @@ class Handler(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, unittest.TestCas # deliberate race between openFile and renameFile d3 = self.handler.renameFile("new", "new2") - del d3 + d3.addErrback(lambda err: self.fail("renameFile failed: %r" % (err,))) return d2 d.addCallback(_open_and_rename_race) def _write_rename_race(wf): @@ -1151,6 +1152,20 @@ class Handler(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, unittest.TestCas self.shouldFailWithSFTPError(sftp.FX_PERMISSION_DENIED, "renameFile small unknown", self.handler.renameFile, "small", "unknown")) + # renaming a file onto a heisenfile should fail, even if the open hasn't completed + def _rename_onto_heisenfile_race(wf): + slow_open = defer.Deferred() + reactor.callLater(1, slow_open.callback, None) + + d2 = self.handler.openFile("heisenfile", sftp.FXF_WRITE | sftp.FXF_CREAT, {}, delay=slow_open) + + # deliberate race between openFile and renameFile + d3 = self.shouldFailWithSFTPError(sftp.FX_PERMISSION_DENIED, "renameFile small heisenfile", + self.handler.renameFile, "small", "heisenfile") + d2.addCallback(lambda wf: wf.close()) + return deferredutil.gatherResults([d2, d3]) + d.addCallback(_rename_onto_heisenfile_race) + # renaming a file to a correct path should succeed d.addCallback(lambda ign: self.handler.renameFile("small", "new_small")) d.addCallback(lambda ign: self.root.get(u"new_small"))