summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-06-17 07:05:33 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-06-17 07:05:33 (GMT)
commitcdcd4bff129f84e10e493782d319cea1a31f9162 (patch)
tree3c61613af092875f651434fd225f0dd4f2ad2fbc
parent5ecf57adcf7148c2334392a2631aa1a0e5791159 (diff)
downloadcpython-cdcd4bff129f84e10e493782d319cea1a31f9162.zip
cpython-cdcd4bff129f84e10e493782d319cea1a31f9162.tar.gz
cpython-cdcd4bff129f84e10e493782d319cea1a31f9162.tar.bz2
Issue #6215: Fixed to use self.open() instead of open() or io.open().
-rw-r--r--Lib/test/test_io.py36
1 files changed, 18 insertions, 18 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index 62b6142..3751e6f 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -298,13 +298,13 @@ class IOTest(unittest.TestCase):
def test_invalid_operations(self):
# Try writing on a file opened in read mode and vice-versa.
for mode in ("w", "wb"):
- with open(support.TESTFN, mode) as fp:
+ with self.open(support.TESTFN, mode) as fp:
self.assertRaises(IOError, fp.read)
self.assertRaises(IOError, fp.readline)
- with open(support.TESTFN, "rb") as fp:
+ with self.open(support.TESTFN, "rb") as fp:
self.assertRaises(IOError, fp.write, b"blah")
self.assertRaises(IOError, fp.writelines, [b"blah\n"])
- with open(support.TESTFN, "r") as fp:
+ with self.open(support.TESTFN, "r") as fp:
self.assertRaises(IOError, fp.write, "blah")
self.assertRaises(IOError, fp.writelines, ["blah\n"])
@@ -375,12 +375,12 @@ class IOTest(unittest.TestCase):
def test_with_open(self):
for bufsize in (0, 1, 100):
f = None
- with open(support.TESTFN, "wb", bufsize) as f:
+ with self.open(support.TESTFN, "wb", bufsize) as f:
f.write(b"xxx")
self.assertEqual(f.closed, True)
f = None
try:
- with open(support.TESTFN, "wb", bufsize) as f:
+ with self.open(support.TESTFN, "wb", bufsize) as f:
1/0
except ZeroDivisionError:
self.assertEqual(f.closed, True)
@@ -420,7 +420,7 @@ class IOTest(unittest.TestCase):
del f
support.gc_collect()
self.assertEqual(record, [1, 2, 3])
- with open(support.TESTFN, "rb") as f:
+ with self.open(support.TESTFN, "rb") as f:
self.assertEqual(f.read(), b"xxx")
def _check_base_destructor(self, base):
@@ -515,7 +515,7 @@ class IOTest(unittest.TestCase):
del f
support.gc_collect()
self.assert_(wr() is None, wr)
- with open(support.TESTFN, "rb") as f:
+ with self.open(support.TESTFN, "rb") as f:
self.assertEqual(f.read(), b"abcxxx")
def test_unbounded_file(self):
@@ -527,11 +527,11 @@ class IOTest(unittest.TestCase):
self.skipTest("test can only run in a 32-bit address space")
if support.real_max_memuse < support._2G:
self.skipTest("test requires at least 2GB of memory")
- with open(zero, "rb", buffering=0) as f:
+ with self.open(zero, "rb", buffering=0) as f:
self.assertRaises(OverflowError, f.read)
- with open(zero, "rb") as f:
+ with self.open(zero, "rb") as f:
self.assertRaises(OverflowError, f.read)
- with open(zero, "r") as f:
+ with self.open(zero, "r") as f:
self.assertRaises(OverflowError, f.read)
class CIOTest(IOTest):
@@ -744,9 +744,9 @@ class BufferedReaderTest(unittest.TestCase, CommonBufferedTests):
l = list(range(256)) * N
random.shuffle(l)
s = bytes(bytearray(l))
- with io.open(support.TESTFN, "wb") as f:
+ with self.open(support.TESTFN, "wb") as f:
f.write(s)
- with io.open(support.TESTFN, self.read_mode, buffering=0) as raw:
+ with self.open(support.TESTFN, self.read_mode, buffering=0) as raw:
bufio = self.tp(raw, 8)
errors = []
results = []
@@ -974,12 +974,12 @@ class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):
def test_truncate(self):
# Truncate implicitly flushes the buffer.
- with io.open(support.TESTFN, self.write_mode, buffering=0) as raw:
+ with self.open(support.TESTFN, self.write_mode, buffering=0) as raw:
bufio = self.tp(raw, 8)
bufio.write(b"abcdef")
self.assertEqual(bufio.truncate(3), 3)
self.assertEqual(bufio.tell(), 3)
- with io.open(support.TESTFN, "rb", buffering=0) as f:
+ with self.open(support.TESTFN, "rb", buffering=0) as f:
self.assertEqual(f.read(), b"abc")
def test_threads(self):
@@ -1001,7 +1001,7 @@ class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):
# writing the buffer to the raw streams. This is in addition
# to concurrency issues due to switching threads in the middle
# of Python code.
- with io.open(support.TESTFN, self.write_mode, buffering=0) as raw:
+ with self.open(support.TESTFN, self.write_mode, buffering=0) as raw:
bufio = self.tp(raw, 8)
errors = []
def f():
@@ -1024,7 +1024,7 @@ class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):
self.assertFalse(errors,
"the following exceptions were caught: %r" % errors)
bufio.close()
- with io.open(support.TESTFN, "rb") as f:
+ with self.open(support.TESTFN, "rb") as f:
s = f.read()
for i in range(256):
self.assertEquals(s.count(bytes([i])), N)
@@ -1084,7 +1084,7 @@ class CBufferedWriterTest(BufferedWriterTest):
del f
support.gc_collect()
self.assert_(wr() is None, wr)
- with open(support.TESTFN, "rb") as f:
+ with self.open(support.TESTFN, "rb") as f:
self.assertEqual(f.read(), b"123xxx")
@@ -2065,7 +2065,7 @@ class CTextIOWrapperTest(TextIOWrapperTest):
del t
support.gc_collect()
self.assert_(wr() is None, wr)
- with open(support.TESTFN, "rb") as f:
+ with self.open(support.TESTFN, "rb") as f:
self.assertEqual(f.read(), b"456def")
class PyTextIOWrapperTest(TextIOWrapperTest):