From: Brian Warner Date: Sun, 14 Apr 2013 20:03:55 +0000 (-0700) Subject: test_sftp.py: minor cosmetic changes X-Git-Tag: allmydata-tahoe-1.10b1~9 X-Git-Url: https://git.rkrishnan.org/?p=tahoe-lafs%2Ftahoe-lafs.git;a=commitdiff_plain;h=f23ecb4af016e3d622898081192a4f3b2cebdb21 test_sftp.py: minor cosmetic changes --- diff --git a/src/allmydata/test/test_sftp.py b/src/allmydata/test/test_sftp.py index 69fedce4..f24a1ae8 100644 --- a/src/allmydata/test/test_sftp.py +++ b/src/allmydata/test/test_sftp.py @@ -36,10 +36,6 @@ from allmydata.test.common_util import ReallyEqualMixin timeout = 240 -#defer.setDebugging(True) -#from twisted.internet import base -#base.DelayedCall.debug = True - class Handler(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, unittest.TestCase): """This is a no-network unit test of the SFTPUserHandler and the abstractions it uses.""" @@ -523,7 +519,9 @@ class Handler(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, unittest.TestCas return d2 d.addCallback(_read_short) - # check that failed downloads cause failed reads + # check that failed downloads cause failed reads. Note that this + # trashes the grid (by deleting all shares), so this must be at the + # end of the test function. d.addCallback(lambda ign: self.handler.openFile("uri/"+self.gross_uri, sftp.FXF_READ, {})) def _read_broken(rf): d2 = defer.succeed(None) @@ -542,8 +540,9 @@ class Handler(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, unittest.TestCas return d def test_openFile_read_error(self): - # The check at the end of openFile_read tested this for large files, but it trashed - # the grid in the process, so this needs to be a separate test. + # The check at the end of openFile_read tested this for large files, + # but it trashed the grid in the process, so this needs to be a + # separate test. small = upload.Data("0123456789"*10, None) d = self._set_up("openFile_read_error") d.addCallback(lambda ign: self.root.add_file(u"small", small)) @@ -1023,7 +1022,9 @@ class Handler(GridTestMixin, ShouldFailMixin, ReallyEqualMixin, unittest.TestCas self.shouldFail(NoSuchChildError, "rename new while open", "new", self.root.get, u"new")) - # check that failed downloads cause failed reads and failed close, when open for writing + # check that failed downloads cause failed reads and failed close, + # when open for writing. Note that this trashes the grid (by deleting + # all shares), so this must be at the end of the test function. gross = u"gro\u00DF".encode("utf-8") d.addCallback(lambda ign: self.handler.openFile(gross, sftp.FXF_READ | sftp.FXF_WRITE, {})) def _read_write_broken(rwf):