Commit c2745d2d authored by Serhiy Storchaka's avatar Serhiy Storchaka Committed by GitHub

bpo-33751: Fix test_file. (GH-7378)

testModeStrings and testTruncateOnWindows were depended on
a file leaked in other tests.

Also improve cleaning up after tests.
parent ac1ee1ba
...@@ -8,6 +8,7 @@ import io ...@@ -8,6 +8,7 @@ import io
import _pyio as pyio import _pyio as pyio
from test.support import TESTFN from test.support import TESTFN
from test import support
from collections import UserList from collections import UserList
class AutoFileTests: class AutoFileTests:
...@@ -19,7 +20,7 @@ class AutoFileTests: ...@@ -19,7 +20,7 @@ class AutoFileTests:
def tearDown(self): def tearDown(self):
if self.f: if self.f:
self.f.close() self.f.close()
os.remove(TESTFN) support.unlink(TESTFN)
def testWeakRefs(self): def testWeakRefs(self):
# verify weak references # verify weak references
...@@ -137,8 +138,12 @@ class PyAutoFileTests(AutoFileTests, unittest.TestCase): ...@@ -137,8 +138,12 @@ class PyAutoFileTests(AutoFileTests, unittest.TestCase):
class OtherFileTests: class OtherFileTests:
def tearDown(self):
support.unlink(TESTFN)
def testModeStrings(self): def testModeStrings(self):
# check invalid mode strings # check invalid mode strings
self.open(TESTFN, 'wb').close()
for mode in ("", "aU", "wU+", "U+", "+U", "rU+"): for mode in ("", "aU", "wU+", "U+", "+U", "rU+"):
try: try:
f = self.open(TESTFN, mode) f = self.open(TESTFN, mode)
...@@ -185,7 +190,6 @@ class OtherFileTests: ...@@ -185,7 +190,6 @@ class OtherFileTests:
# SF bug <http://www.python.org/sf/801631> # SF bug <http://www.python.org/sf/801631>
# "file.truncate fault on windows" # "file.truncate fault on windows"
os.unlink(TESTFN)
f = self.open(TESTFN, 'wb') f = self.open(TESTFN, 'wb')
try: try:
...@@ -209,7 +213,6 @@ class OtherFileTests: ...@@ -209,7 +213,6 @@ class OtherFileTests:
self.fail("File size after ftruncate wrong %d" % size) self.fail("File size after ftruncate wrong %d" % size)
finally: finally:
f.close() f.close()
os.unlink(TESTFN)
def testIteration(self): def testIteration(self):
# Test the complex interaction when mixing file-iteration and the # Test the complex interaction when mixing file-iteration and the
...@@ -230,87 +233,84 @@ class OtherFileTests: ...@@ -230,87 +233,84 @@ class OtherFileTests:
methods = [("readline", ()), ("read", ()), ("readlines", ()), methods = [("readline", ()), ("read", ()), ("readlines", ()),
("readinto", (array("b", b" "*100),))] ("readinto", (array("b", b" "*100),))]
# Prepare the testfile
bag = self.open(TESTFN, "wb")
bag.write(filler * nchunks)
bag.writelines(testlines)
bag.close()
# Test for appropriate errors mixing read* and iteration
for methodname, args in methods:
f = self.open(TESTFN, 'rb')
if next(f) != filler:
self.fail, "Broken testfile"
meth = getattr(f, methodname)
meth(*args) # This simply shouldn't fail
f.close()
# Test to see if harmless (by accident) mixing of read* and
# iteration still works. This depends on the size of the internal
# iteration buffer (currently 8192,) but we can test it in a
# flexible manner. Each line in the bag o' ham is 4 bytes
# ("h", "a", "m", "\n"), so 4096 lines of that should get us
# exactly on the buffer boundary for any power-of-2 buffersize
# between 4 and 16384 (inclusive).
f = self.open(TESTFN, 'rb')
for i in range(nchunks):
next(f)
testline = testlines.pop(0)
try: try:
# Prepare the testfile line = f.readline()
bag = self.open(TESTFN, "wb") except ValueError:
bag.write(filler * nchunks) self.fail("readline() after next() with supposedly empty "
bag.writelines(testlines) "iteration-buffer failed anyway")
bag.close() if line != testline:
# Test for appropriate errors mixing read* and iteration self.fail("readline() after next() with empty buffer "
for methodname, args in methods: "failed. Got %r, expected %r" % (line, testline))
f = self.open(TESTFN, 'rb') testline = testlines.pop(0)
if next(f) != filler: buf = array("b", b"\x00" * len(testline))
self.fail, "Broken testfile" try:
meth = getattr(f, methodname) f.readinto(buf)
meth(*args) # This simply shouldn't fail except ValueError:
f.close() self.fail("readinto() after next() with supposedly empty "
"iteration-buffer failed anyway")
line = buf.tobytes()
if line != testline:
self.fail("readinto() after next() with empty buffer "
"failed. Got %r, expected %r" % (line, testline))
testline = testlines.pop(0)
try:
line = f.read(len(testline))
except ValueError:
self.fail("read() after next() with supposedly empty "
"iteration-buffer failed anyway")
if line != testline:
self.fail("read() after next() with empty buffer "
"failed. Got %r, expected %r" % (line, testline))
try:
lines = f.readlines()
except ValueError:
self.fail("readlines() after next() with supposedly empty "
"iteration-buffer failed anyway")
if lines != testlines:
self.fail("readlines() after next() with empty buffer "
"failed. Got %r, expected %r" % (line, testline))
f.close()
# Test to see if harmless (by accident) mixing of read* and # Reading after iteration hit EOF shouldn't hurt either
# iteration still works. This depends on the size of the internal f = self.open(TESTFN, 'rb')
# iteration buffer (currently 8192,) but we can test it in a try:
# flexible manner. Each line in the bag o' ham is 4 bytes for line in f:
# ("h", "a", "m", "\n"), so 4096 lines of that should get us pass
# exactly on the buffer boundary for any power-of-2 buffersize
# between 4 and 16384 (inclusive).
f = self.open(TESTFN, 'rb')
for i in range(nchunks):
next(f)
testline = testlines.pop(0)
try:
line = f.readline()
except ValueError:
self.fail("readline() after next() with supposedly empty "
"iteration-buffer failed anyway")
if line != testline:
self.fail("readline() after next() with empty buffer "
"failed. Got %r, expected %r" % (line, testline))
testline = testlines.pop(0)
buf = array("b", b"\x00" * len(testline))
try: try:
f.readline()
f.readinto(buf) f.readinto(buf)
f.read()
f.readlines()
except ValueError: except ValueError:
self.fail("readinto() after next() with supposedly empty " self.fail("read* failed after next() consumed file")
"iteration-buffer failed anyway")
line = buf.tobytes()
if line != testline:
self.fail("readinto() after next() with empty buffer "
"failed. Got %r, expected %r" % (line, testline))
testline = testlines.pop(0)
try:
line = f.read(len(testline))
except ValueError:
self.fail("read() after next() with supposedly empty "
"iteration-buffer failed anyway")
if line != testline:
self.fail("read() after next() with empty buffer "
"failed. Got %r, expected %r" % (line, testline))
try:
lines = f.readlines()
except ValueError:
self.fail("readlines() after next() with supposedly empty "
"iteration-buffer failed anyway")
if lines != testlines:
self.fail("readlines() after next() with empty buffer "
"failed. Got %r, expected %r" % (line, testline))
f.close()
# Reading after iteration hit EOF shouldn't hurt either
f = self.open(TESTFN, 'rb')
try:
for line in f:
pass
try:
f.readline()
f.readinto(buf)
f.read()
f.readlines()
except ValueError:
self.fail("read* failed after next() consumed file")
finally:
f.close()
finally: finally:
os.unlink(TESTFN) f.close()
class COtherFileTests(OtherFileTests, unittest.TestCase): class COtherFileTests(OtherFileTests, unittest.TestCase):
open = io.open open = io.open
...@@ -319,11 +319,5 @@ class PyOtherFileTests(OtherFileTests, unittest.TestCase): ...@@ -319,11 +319,5 @@ class PyOtherFileTests(OtherFileTests, unittest.TestCase):
open = staticmethod(pyio.open) open = staticmethod(pyio.open)
def tearDownModule():
# Historically, these tests have been sloppy about removing TESTFN.
# So get rid of it no matter what.
if os.path.exists(TESTFN):
os.unlink(TESTFN)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
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