Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1 | """Unit tests for the io module.""" |
| 2 | |
| 3 | # Tests of io are scattered over the test suite: |
| 4 | # * test_bufio - tests file buffering |
| 5 | # * test_memoryio - tests BytesIO and StringIO |
| 6 | # * test_fileio - tests FileIO |
| 7 | # * test_file - tests the file interface |
| 8 | # * test_io - tests everything else in the io module |
| 9 | # * test_univnewlines - tests universal newline support |
| 10 | # * test_largefile - tests operations on a file greater than 2**32 bytes |
| 11 | # (only enabled with -ulargefile) |
| 12 | |
| 13 | ################################################################################ |
| 14 | # ATTENTION TEST WRITERS!!! |
| 15 | ################################################################################ |
| 16 | # When writing tests for io, it's important to test both the C and Python |
| 17 | # implementations. This is usually done by writing a base test that refers to |
| 18 | # the type it is testing as a attribute. Then it provides custom subclasses to |
| 19 | # test both implementations. This file has lots of examples. |
| 20 | ################################################################################ |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 21 | |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 22 | import os |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 23 | import sys |
Guido van Rossum | b9c4c3e | 2007-04-11 16:07:50 +0000 | [diff] [blame] | 24 | import time |
Guido van Rossum | d410395 | 2007-04-12 05:44:49 +0000 | [diff] [blame] | 25 | import array |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 26 | import random |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 27 | import unittest |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 28 | import weakref |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 29 | import abc |
Antoine Pitrou | b46b9d5 | 2010-08-21 19:09:32 +0000 | [diff] [blame] | 30 | import signal |
| 31 | import errno |
Antoine Pitrou | e033e06 | 2010-10-29 10:38:18 +0000 | [diff] [blame] | 32 | import warnings |
Georg Brandl | 1b37e87 | 2010-03-14 10:45:50 +0000 | [diff] [blame] | 33 | from itertools import cycle, count |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 34 | from collections import deque |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 35 | from test import support |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 36 | |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 37 | import codecs |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 38 | import io # C implementation of io |
| 39 | import _pyio as pyio # Python implementation of io |
Victor Stinner | 45df820 | 2010-04-28 22:31:17 +0000 | [diff] [blame] | 40 | try: |
| 41 | import threading |
| 42 | except ImportError: |
| 43 | threading = None |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 45 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 46 | def _default_chunk_size(): |
| 47 | """Get the default TextIOWrapper chunk size""" |
| 48 | with open(__file__, "r", encoding="latin1") as f: |
| 49 | return f._CHUNK_SIZE |
| 50 | |
| 51 | |
Antoine Pitrou | 328ec74 | 2010-09-14 18:37:24 +0000 | [diff] [blame] | 52 | class MockRawIOWithoutRead: |
| 53 | """A RawIO implementation without read(), so as to exercise the default |
| 54 | RawIO.read() which calls readinto().""" |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 55 | |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 56 | def __init__(self, read_stack=()): |
| 57 | self._read_stack = list(read_stack) |
| 58 | self._write_stack = [] |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 59 | self._reads = 0 |
Antoine Pitrou | 32cfede | 2010-08-11 13:31:33 +0000 | [diff] [blame] | 60 | self._extraneous_reads = 0 |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 61 | |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 62 | def write(self, b): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 63 | self._write_stack.append(bytes(b)) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 64 | return len(b) |
| 65 | |
| 66 | def writable(self): |
| 67 | return True |
| 68 | |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 69 | def fileno(self): |
| 70 | return 42 |
| 71 | |
| 72 | def readable(self): |
| 73 | return True |
| 74 | |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 75 | def seekable(self): |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 76 | return True |
| 77 | |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 78 | def seek(self, pos, whence): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 79 | return 0 # wrong but we gotta return something |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 80 | |
| 81 | def tell(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 82 | return 0 # same comment as above |
| 83 | |
| 84 | def readinto(self, buf): |
| 85 | self._reads += 1 |
| 86 | max_len = len(buf) |
| 87 | try: |
| 88 | data = self._read_stack[0] |
| 89 | except IndexError: |
Antoine Pitrou | 32cfede | 2010-08-11 13:31:33 +0000 | [diff] [blame] | 90 | self._extraneous_reads += 1 |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 91 | return 0 |
| 92 | if data is None: |
| 93 | del self._read_stack[0] |
| 94 | return None |
| 95 | n = len(data) |
| 96 | if len(data) <= max_len: |
| 97 | del self._read_stack[0] |
| 98 | buf[:n] = data |
| 99 | return n |
| 100 | else: |
| 101 | buf[:] = data[:max_len] |
| 102 | self._read_stack[0] = data[max_len:] |
| 103 | return max_len |
| 104 | |
| 105 | def truncate(self, pos=None): |
| 106 | return pos |
| 107 | |
Antoine Pitrou | 328ec74 | 2010-09-14 18:37:24 +0000 | [diff] [blame] | 108 | class CMockRawIOWithoutRead(MockRawIOWithoutRead, io.RawIOBase): |
| 109 | pass |
| 110 | |
| 111 | class PyMockRawIOWithoutRead(MockRawIOWithoutRead, pyio.RawIOBase): |
| 112 | pass |
| 113 | |
| 114 | |
| 115 | class MockRawIO(MockRawIOWithoutRead): |
| 116 | |
| 117 | def read(self, n=None): |
| 118 | self._reads += 1 |
| 119 | try: |
| 120 | return self._read_stack.pop(0) |
| 121 | except: |
| 122 | self._extraneous_reads += 1 |
| 123 | return b"" |
| 124 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 125 | class CMockRawIO(MockRawIO, io.RawIOBase): |
| 126 | pass |
| 127 | |
| 128 | class PyMockRawIO(MockRawIO, pyio.RawIOBase): |
| 129 | pass |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 130 | |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 131 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 132 | class MisbehavedRawIO(MockRawIO): |
| 133 | def write(self, b): |
| 134 | return super().write(b) * 2 |
| 135 | |
| 136 | def read(self, n=None): |
| 137 | return super().read(n) * 2 |
| 138 | |
| 139 | def seek(self, pos, whence): |
| 140 | return -123 |
| 141 | |
| 142 | def tell(self): |
| 143 | return -456 |
| 144 | |
| 145 | def readinto(self, buf): |
| 146 | super().readinto(buf) |
| 147 | return len(buf) * 5 |
| 148 | |
| 149 | class CMisbehavedRawIO(MisbehavedRawIO, io.RawIOBase): |
| 150 | pass |
| 151 | |
| 152 | class PyMisbehavedRawIO(MisbehavedRawIO, pyio.RawIOBase): |
| 153 | pass |
| 154 | |
| 155 | |
| 156 | class CloseFailureIO(MockRawIO): |
| 157 | closed = 0 |
| 158 | |
| 159 | def close(self): |
| 160 | if not self.closed: |
| 161 | self.closed = 1 |
| 162 | raise IOError |
| 163 | |
| 164 | class CCloseFailureIO(CloseFailureIO, io.RawIOBase): |
| 165 | pass |
| 166 | |
| 167 | class PyCloseFailureIO(CloseFailureIO, pyio.RawIOBase): |
| 168 | pass |
| 169 | |
| 170 | |
| 171 | class MockFileIO: |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 172 | |
| 173 | def __init__(self, data): |
| 174 | self.read_history = [] |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 175 | super().__init__(data) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 176 | |
| 177 | def read(self, n=None): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 178 | res = super().read(n) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 179 | self.read_history.append(None if res is None else len(res)) |
| 180 | return res |
| 181 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 182 | def readinto(self, b): |
| 183 | res = super().readinto(b) |
| 184 | self.read_history.append(res) |
| 185 | return res |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 186 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 187 | class CMockFileIO(MockFileIO, io.BytesIO): |
| 188 | pass |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 189 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 190 | class PyMockFileIO(MockFileIO, pyio.BytesIO): |
| 191 | pass |
| 192 | |
| 193 | |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 194 | class MockUnseekableIO: |
| 195 | def seekable(self): |
| 196 | return False |
| 197 | |
| 198 | def seek(self, *args): |
| 199 | raise self.UnsupportedOperation("not seekable") |
| 200 | |
| 201 | def tell(self, *args): |
| 202 | raise self.UnsupportedOperation("not seekable") |
| 203 | |
| 204 | class CMockUnseekableIO(MockUnseekableIO, io.BytesIO): |
| 205 | UnsupportedOperation = io.UnsupportedOperation |
| 206 | |
| 207 | class PyMockUnseekableIO(MockUnseekableIO, pyio.BytesIO): |
| 208 | UnsupportedOperation = pyio.UnsupportedOperation |
| 209 | |
| 210 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 211 | class MockNonBlockWriterIO: |
| 212 | |
| 213 | def __init__(self): |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 214 | self._write_stack = [] |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 215 | self._blocker_char = None |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 216 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 217 | def pop_written(self): |
| 218 | s = b"".join(self._write_stack) |
| 219 | self._write_stack[:] = [] |
| 220 | return s |
| 221 | |
| 222 | def block_on(self, char): |
| 223 | """Block when a given char is encountered.""" |
| 224 | self._blocker_char = char |
| 225 | |
| 226 | def readable(self): |
| 227 | return True |
| 228 | |
| 229 | def seekable(self): |
| 230 | return True |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 231 | |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 232 | def writable(self): |
| 233 | return True |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 234 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 235 | def write(self, b): |
| 236 | b = bytes(b) |
| 237 | n = -1 |
| 238 | if self._blocker_char: |
| 239 | try: |
| 240 | n = b.index(self._blocker_char) |
| 241 | except ValueError: |
| 242 | pass |
| 243 | else: |
| 244 | self._blocker_char = None |
| 245 | self._write_stack.append(b[:n]) |
| 246 | raise self.BlockingIOError(0, "test blocking", n) |
| 247 | self._write_stack.append(b) |
| 248 | return len(b) |
| 249 | |
| 250 | class CMockNonBlockWriterIO(MockNonBlockWriterIO, io.RawIOBase): |
| 251 | BlockingIOError = io.BlockingIOError |
| 252 | |
| 253 | class PyMockNonBlockWriterIO(MockNonBlockWriterIO, pyio.RawIOBase): |
| 254 | BlockingIOError = pyio.BlockingIOError |
| 255 | |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 256 | |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 257 | class IOTest(unittest.TestCase): |
| 258 | |
Neal Norwitz | e7789b1 | 2008-03-24 06:18:09 +0000 | [diff] [blame] | 259 | def setUp(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 260 | support.unlink(support.TESTFN) |
Neal Norwitz | e7789b1 | 2008-03-24 06:18:09 +0000 | [diff] [blame] | 261 | |
Guido van Rossum | 4d0f5a4 | 2007-03-07 22:59:39 +0000 | [diff] [blame] | 262 | def tearDown(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 263 | support.unlink(support.TESTFN) |
Guido van Rossum | 4d0f5a4 | 2007-03-07 22:59:39 +0000 | [diff] [blame] | 264 | |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 265 | def write_ops(self, f): |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 266 | self.assertEqual(f.write(b"blah."), 5) |
Antoine Pitrou | 905a2ff | 2010-01-31 22:47:27 +0000 | [diff] [blame] | 267 | f.truncate(0) |
| 268 | self.assertEqual(f.tell(), 5) |
| 269 | f.seek(0) |
| 270 | |
| 271 | self.assertEqual(f.write(b"blah."), 5) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 272 | self.assertEqual(f.seek(0), 0) |
| 273 | self.assertEqual(f.write(b"Hello."), 6) |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 274 | self.assertEqual(f.tell(), 6) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 275 | self.assertEqual(f.seek(-1, 1), 5) |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 276 | self.assertEqual(f.tell(), 5) |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 277 | self.assertEqual(f.write(bytearray(b" world\n\n\n")), 9) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 278 | self.assertEqual(f.seek(0), 0) |
Guido van Rossum | 2b08b38 | 2007-05-08 20:18:39 +0000 | [diff] [blame] | 279 | self.assertEqual(f.write(b"h"), 1) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 280 | self.assertEqual(f.seek(-1, 2), 13) |
| 281 | self.assertEqual(f.tell(), 13) |
Antoine Pitrou | 905a2ff | 2010-01-31 22:47:27 +0000 | [diff] [blame] | 282 | |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 283 | self.assertEqual(f.truncate(12), 12) |
Antoine Pitrou | 905a2ff | 2010-01-31 22:47:27 +0000 | [diff] [blame] | 284 | self.assertEqual(f.tell(), 13) |
Christian Heimes | 8e42a0a | 2007-11-08 18:04:45 +0000 | [diff] [blame] | 285 | self.assertRaises(TypeError, f.seek, 0.0) |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 286 | |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 287 | def read_ops(self, f, buffered=False): |
| 288 | data = f.read(5) |
| 289 | self.assertEqual(data, b"hello") |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 290 | data = bytearray(data) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 291 | self.assertEqual(f.readinto(data), 5) |
| 292 | self.assertEqual(data, b" worl") |
| 293 | self.assertEqual(f.readinto(data), 2) |
| 294 | self.assertEqual(len(data), 5) |
| 295 | self.assertEqual(data[:2], b"d\n") |
| 296 | self.assertEqual(f.seek(0), 0) |
| 297 | self.assertEqual(f.read(20), b"hello world\n") |
| 298 | self.assertEqual(f.read(1), b"") |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 299 | self.assertEqual(f.readinto(bytearray(b"x")), 0) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 300 | self.assertEqual(f.seek(-6, 2), 6) |
| 301 | self.assertEqual(f.read(5), b"world") |
| 302 | self.assertEqual(f.read(0), b"") |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 303 | self.assertEqual(f.readinto(bytearray()), 0) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 304 | self.assertEqual(f.seek(-6, 1), 5) |
| 305 | self.assertEqual(f.read(5), b" worl") |
| 306 | self.assertEqual(f.tell(), 10) |
Christian Heimes | 8e42a0a | 2007-11-08 18:04:45 +0000 | [diff] [blame] | 307 | self.assertRaises(TypeError, f.seek, 0.0) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 308 | if buffered: |
| 309 | f.seek(0) |
| 310 | self.assertEqual(f.read(), b"hello world\n") |
| 311 | f.seek(6) |
| 312 | self.assertEqual(f.read(), b"world\n") |
| 313 | self.assertEqual(f.read(), b"") |
| 314 | |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 315 | LARGE = 2**31 |
| 316 | |
Guido van Rossum | 53807da | 2007-04-10 19:01:47 +0000 | [diff] [blame] | 317 | def large_file_ops(self, f): |
| 318 | assert f.readable() |
| 319 | assert f.writable() |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 320 | self.assertEqual(f.seek(self.LARGE), self.LARGE) |
| 321 | self.assertEqual(f.tell(), self.LARGE) |
Guido van Rossum | 53807da | 2007-04-10 19:01:47 +0000 | [diff] [blame] | 322 | self.assertEqual(f.write(b"xxx"), 3) |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 323 | self.assertEqual(f.tell(), self.LARGE + 3) |
| 324 | self.assertEqual(f.seek(-1, 1), self.LARGE + 2) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 325 | self.assertEqual(f.truncate(), self.LARGE + 2) |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 326 | self.assertEqual(f.tell(), self.LARGE + 2) |
| 327 | self.assertEqual(f.seek(0, 2), self.LARGE + 2) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 328 | self.assertEqual(f.truncate(self.LARGE + 1), self.LARGE + 1) |
Antoine Pitrou | 905a2ff | 2010-01-31 22:47:27 +0000 | [diff] [blame] | 329 | self.assertEqual(f.tell(), self.LARGE + 2) |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 330 | self.assertEqual(f.seek(0, 2), self.LARGE + 1) |
| 331 | self.assertEqual(f.seek(-1, 2), self.LARGE) |
Guido van Rossum | 53807da | 2007-04-10 19:01:47 +0000 | [diff] [blame] | 332 | self.assertEqual(f.read(2), b"x") |
| 333 | |
Benjamin Peterson | 81971ea | 2009-05-14 22:01:31 +0000 | [diff] [blame] | 334 | def test_invalid_operations(self): |
| 335 | # Try writing on a file opened in read mode and vice-versa. |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 336 | exc = self.UnsupportedOperation |
Benjamin Peterson | 81971ea | 2009-05-14 22:01:31 +0000 | [diff] [blame] | 337 | for mode in ("w", "wb"): |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 338 | with self.open(support.TESTFN, mode) as fp: |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 339 | self.assertRaises(exc, fp.read) |
| 340 | self.assertRaises(exc, fp.readline) |
| 341 | with self.open(support.TESTFN, "wb", buffering=0) as fp: |
| 342 | self.assertRaises(exc, fp.read) |
| 343 | self.assertRaises(exc, fp.readline) |
| 344 | with self.open(support.TESTFN, "rb", buffering=0) as fp: |
| 345 | self.assertRaises(exc, fp.write, b"blah") |
| 346 | self.assertRaises(exc, fp.writelines, [b"blah\n"]) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 347 | with self.open(support.TESTFN, "rb") as fp: |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 348 | self.assertRaises(exc, fp.write, b"blah") |
| 349 | self.assertRaises(exc, fp.writelines, [b"blah\n"]) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 350 | with self.open(support.TESTFN, "r") as fp: |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 351 | self.assertRaises(exc, fp.write, "blah") |
| 352 | self.assertRaises(exc, fp.writelines, ["blah\n"]) |
| 353 | # Non-zero seeking from current or end pos |
| 354 | self.assertRaises(exc, fp.seek, 1, self.SEEK_CUR) |
| 355 | self.assertRaises(exc, fp.seek, -1, self.SEEK_END) |
Benjamin Peterson | 81971ea | 2009-05-14 22:01:31 +0000 | [diff] [blame] | 356 | |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 357 | def test_raw_file_io(self): |
Benjamin Peterson | 45cec32 | 2009-04-24 23:14:50 +0000 | [diff] [blame] | 358 | with self.open(support.TESTFN, "wb", buffering=0) as f: |
| 359 | self.assertEqual(f.readable(), False) |
| 360 | self.assertEqual(f.writable(), True) |
| 361 | self.assertEqual(f.seekable(), True) |
| 362 | self.write_ops(f) |
| 363 | with self.open(support.TESTFN, "rb", buffering=0) as f: |
| 364 | self.assertEqual(f.readable(), True) |
| 365 | self.assertEqual(f.writable(), False) |
| 366 | self.assertEqual(f.seekable(), True) |
| 367 | self.read_ops(f) |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 368 | |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 369 | def test_buffered_file_io(self): |
Benjamin Peterson | 45cec32 | 2009-04-24 23:14:50 +0000 | [diff] [blame] | 370 | with self.open(support.TESTFN, "wb") as f: |
| 371 | self.assertEqual(f.readable(), False) |
| 372 | self.assertEqual(f.writable(), True) |
| 373 | self.assertEqual(f.seekable(), True) |
| 374 | self.write_ops(f) |
| 375 | with self.open(support.TESTFN, "rb") as f: |
| 376 | self.assertEqual(f.readable(), True) |
| 377 | self.assertEqual(f.writable(), False) |
| 378 | self.assertEqual(f.seekable(), True) |
| 379 | self.read_ops(f, True) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 380 | |
Guido van Rossum | 48fc58a | 2007-06-07 23:45:37 +0000 | [diff] [blame] | 381 | def test_readline(self): |
Benjamin Peterson | 45cec32 | 2009-04-24 23:14:50 +0000 | [diff] [blame] | 382 | with self.open(support.TESTFN, "wb") as f: |
| 383 | f.write(b"abc\ndef\nxyzzy\nfoo\x00bar\nanother line") |
| 384 | with self.open(support.TESTFN, "rb") as f: |
| 385 | self.assertEqual(f.readline(), b"abc\n") |
| 386 | self.assertEqual(f.readline(10), b"def\n") |
| 387 | self.assertEqual(f.readline(2), b"xy") |
| 388 | self.assertEqual(f.readline(4), b"zzy\n") |
| 389 | self.assertEqual(f.readline(), b"foo\x00bar\n") |
Benjamin Peterson | bf5ff76 | 2009-12-13 19:25:34 +0000 | [diff] [blame] | 390 | self.assertEqual(f.readline(None), b"another line") |
Benjamin Peterson | 45cec32 | 2009-04-24 23:14:50 +0000 | [diff] [blame] | 391 | self.assertRaises(TypeError, f.readline, 5.3) |
| 392 | with self.open(support.TESTFN, "r") as f: |
| 393 | self.assertRaises(TypeError, f.readline, 5.3) |
Guido van Rossum | 48fc58a | 2007-06-07 23:45:37 +0000 | [diff] [blame] | 394 | |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 395 | def test_raw_bytes_io(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 396 | f = self.BytesIO() |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 397 | self.write_ops(f) |
| 398 | data = f.getvalue() |
| 399 | self.assertEqual(data, b"hello world\n") |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 400 | f = self.BytesIO(data) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 401 | self.read_ops(f, True) |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 402 | |
Guido van Rossum | 53807da | 2007-04-10 19:01:47 +0000 | [diff] [blame] | 403 | def test_large_file_ops(self): |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 404 | # On Windows and Mac OSX this test comsumes large resources; It takes |
| 405 | # a long time to build the >2GB file and takes >2GB of disk space |
| 406 | # therefore the resource must be enabled to run this test. |
| 407 | if sys.platform[:3] == 'win' or sys.platform == 'darwin': |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 408 | if not support.is_resource_enabled("largefile"): |
Guido van Rossum | 34d69e5 | 2007-04-10 20:08:41 +0000 | [diff] [blame] | 409 | print("\nTesting large file ops skipped on %s." % sys.platform, |
| 410 | file=sys.stderr) |
| 411 | print("It requires %d bytes and a long time." % self.LARGE, |
| 412 | file=sys.stderr) |
| 413 | print("Use 'regrtest.py -u largefile test_io' to run it.", |
| 414 | file=sys.stderr) |
| 415 | return |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 416 | with self.open(support.TESTFN, "w+b", 0) as f: |
| 417 | self.large_file_ops(f) |
| 418 | with self.open(support.TESTFN, "w+b") as f: |
| 419 | self.large_file_ops(f) |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 420 | |
| 421 | def test_with_open(self): |
| 422 | for bufsize in (0, 1, 100): |
| 423 | f = None |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 424 | with self.open(support.TESTFN, "wb", bufsize) as f: |
Guido van Rossum | 1f2ca56 | 2007-08-27 20:44:15 +0000 | [diff] [blame] | 425 | f.write(b"xxx") |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 426 | self.assertEqual(f.closed, True) |
| 427 | f = None |
| 428 | try: |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 429 | with self.open(support.TESTFN, "wb", bufsize) as f: |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 430 | 1/0 |
| 431 | except ZeroDivisionError: |
| 432 | self.assertEqual(f.closed, True) |
| 433 | else: |
| 434 | self.fail("1/0 didn't raise an exception") |
| 435 | |
Antoine Pitrou | 08838b6 | 2009-01-21 00:55:13 +0000 | [diff] [blame] | 436 | # issue 5008 |
| 437 | def test_append_mode_tell(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 438 | with self.open(support.TESTFN, "wb") as f: |
Antoine Pitrou | 08838b6 | 2009-01-21 00:55:13 +0000 | [diff] [blame] | 439 | f.write(b"xxx") |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 440 | with self.open(support.TESTFN, "ab", buffering=0) as f: |
Antoine Pitrou | 08838b6 | 2009-01-21 00:55:13 +0000 | [diff] [blame] | 441 | self.assertEqual(f.tell(), 3) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 442 | with self.open(support.TESTFN, "ab") as f: |
Antoine Pitrou | 08838b6 | 2009-01-21 00:55:13 +0000 | [diff] [blame] | 443 | self.assertEqual(f.tell(), 3) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 444 | with self.open(support.TESTFN, "a") as f: |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 445 | self.assertTrue(f.tell() > 0) |
Antoine Pitrou | 08838b6 | 2009-01-21 00:55:13 +0000 | [diff] [blame] | 446 | |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 447 | def test_destructor(self): |
| 448 | record = [] |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 449 | class MyFileIO(self.FileIO): |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 450 | def __del__(self): |
| 451 | record.append(1) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 452 | try: |
| 453 | f = super().__del__ |
| 454 | except AttributeError: |
| 455 | pass |
| 456 | else: |
| 457 | f() |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 458 | def close(self): |
| 459 | record.append(2) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 460 | super().close() |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 461 | def flush(self): |
| 462 | record.append(3) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 463 | super().flush() |
Brett Cannon | 5a9e91b | 2010-10-29 23:53:03 +0000 | [diff] [blame] | 464 | with support.check_warnings(('', ResourceWarning)): |
| 465 | f = MyFileIO(support.TESTFN, "wb") |
| 466 | f.write(b"xxx") |
| 467 | del f |
| 468 | support.gc_collect() |
| 469 | self.assertEqual(record, [1, 2, 3]) |
| 470 | with self.open(support.TESTFN, "rb") as f: |
| 471 | self.assertEqual(f.read(), b"xxx") |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 472 | |
| 473 | def _check_base_destructor(self, base): |
| 474 | record = [] |
| 475 | class MyIO(base): |
| 476 | def __init__(self): |
| 477 | # This exercises the availability of attributes on object |
| 478 | # destruction. |
| 479 | # (in the C version, close() is called by the tp_dealloc |
| 480 | # function, not by __del__) |
| 481 | self.on_del = 1 |
| 482 | self.on_close = 2 |
| 483 | self.on_flush = 3 |
| 484 | def __del__(self): |
| 485 | record.append(self.on_del) |
| 486 | try: |
| 487 | f = super().__del__ |
| 488 | except AttributeError: |
| 489 | pass |
| 490 | else: |
| 491 | f() |
| 492 | def close(self): |
| 493 | record.append(self.on_close) |
| 494 | super().close() |
| 495 | def flush(self): |
| 496 | record.append(self.on_flush) |
| 497 | super().flush() |
| 498 | f = MyIO() |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 499 | del f |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 500 | support.gc_collect() |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 501 | self.assertEqual(record, [1, 2, 3]) |
| 502 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 503 | def test_IOBase_destructor(self): |
| 504 | self._check_base_destructor(self.IOBase) |
| 505 | |
| 506 | def test_RawIOBase_destructor(self): |
| 507 | self._check_base_destructor(self.RawIOBase) |
| 508 | |
| 509 | def test_BufferedIOBase_destructor(self): |
| 510 | self._check_base_destructor(self.BufferedIOBase) |
| 511 | |
| 512 | def test_TextIOBase_destructor(self): |
| 513 | self._check_base_destructor(self.TextIOBase) |
| 514 | |
Guido van Rossum | 8742977 | 2007-04-10 21:06:59 +0000 | [diff] [blame] | 515 | def test_close_flushes(self): |
Benjamin Peterson | 45cec32 | 2009-04-24 23:14:50 +0000 | [diff] [blame] | 516 | with self.open(support.TESTFN, "wb") as f: |
| 517 | f.write(b"xxx") |
| 518 | with self.open(support.TESTFN, "rb") as f: |
| 519 | self.assertEqual(f.read(), b"xxx") |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 520 | |
Guido van Rossum | d410395 | 2007-04-12 05:44:49 +0000 | [diff] [blame] | 521 | def test_array_writes(self): |
| 522 | a = array.array('i', range(10)) |
Antoine Pitrou | 1ce3eb5 | 2010-09-01 20:29:34 +0000 | [diff] [blame] | 523 | n = len(a.tobytes()) |
Benjamin Peterson | 45cec32 | 2009-04-24 23:14:50 +0000 | [diff] [blame] | 524 | with self.open(support.TESTFN, "wb", 0) as f: |
| 525 | self.assertEqual(f.write(a), n) |
| 526 | with self.open(support.TESTFN, "wb") as f: |
| 527 | self.assertEqual(f.write(a), n) |
Guido van Rossum | d410395 | 2007-04-12 05:44:49 +0000 | [diff] [blame] | 528 | |
Guido van Rossum | 2dced8b | 2007-10-30 17:27:30 +0000 | [diff] [blame] | 529 | def test_closefd(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 530 | self.assertRaises(ValueError, self.open, support.TESTFN, 'w', |
Guido van Rossum | 2dced8b | 2007-10-30 17:27:30 +0000 | [diff] [blame] | 531 | closefd=False) |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 532 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 533 | def test_read_closed(self): |
| 534 | with self.open(support.TESTFN, "w") as f: |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 535 | f.write("egg\n") |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 536 | with self.open(support.TESTFN, "r") as f: |
| 537 | file = self.open(f.fileno(), "r", closefd=False) |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 538 | self.assertEqual(file.read(), "egg\n") |
| 539 | file.seek(0) |
| 540 | file.close() |
| 541 | self.assertRaises(ValueError, file.read) |
| 542 | |
| 543 | def test_no_closefd_with_filename(self): |
| 544 | # can't use closefd in combination with a file name |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 545 | self.assertRaises(ValueError, self.open, support.TESTFN, "r", closefd=False) |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 546 | |
| 547 | def test_closefd_attr(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 548 | with self.open(support.TESTFN, "wb") as f: |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 549 | f.write(b"egg\n") |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 550 | with self.open(support.TESTFN, "r") as f: |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 551 | self.assertEqual(f.buffer.raw.closefd, True) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 552 | file = self.open(f.fileno(), "r", closefd=False) |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 553 | self.assertEqual(file.buffer.raw.closefd, False) |
| 554 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 555 | def test_garbage_collection(self): |
| 556 | # FileIO objects are collected, and collecting them flushes |
| 557 | # all data to disk. |
| 558 | f = self.FileIO(support.TESTFN, "wb") |
| 559 | f.write(b"abcxxx") |
| 560 | f.f = f |
| 561 | wr = weakref.ref(f) |
| 562 | del f |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 563 | support.gc_collect() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 564 | self.assertTrue(wr() is None, wr) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 565 | with self.open(support.TESTFN, "rb") as f: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 566 | self.assertEqual(f.read(), b"abcxxx") |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 567 | |
Antoine Pitrou | 7d037a7 | 2009-03-29 18:55:12 +0000 | [diff] [blame] | 568 | def test_unbounded_file(self): |
| 569 | # Issue #1174606: reading from an unbounded stream such as /dev/zero. |
| 570 | zero = "/dev/zero" |
| 571 | if not os.path.exists(zero): |
Antoine Pitrou | c50cb8e | 2009-04-19 00:10:36 +0000 | [diff] [blame] | 572 | self.skipTest("{0} does not exist".format(zero)) |
Antoine Pitrou | 7d037a7 | 2009-03-29 18:55:12 +0000 | [diff] [blame] | 573 | if sys.maxsize > 0x7FFFFFFF: |
Antoine Pitrou | c50cb8e | 2009-04-19 00:10:36 +0000 | [diff] [blame] | 574 | self.skipTest("test can only run in a 32-bit address space") |
Antoine Pitrou | 7d037a7 | 2009-03-29 18:55:12 +0000 | [diff] [blame] | 575 | if support.real_max_memuse < support._2G: |
Antoine Pitrou | c50cb8e | 2009-04-19 00:10:36 +0000 | [diff] [blame] | 576 | self.skipTest("test requires at least 2GB of memory") |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 577 | with self.open(zero, "rb", buffering=0) as f: |
Antoine Pitrou | 7d037a7 | 2009-03-29 18:55:12 +0000 | [diff] [blame] | 578 | self.assertRaises(OverflowError, f.read) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 579 | with self.open(zero, "rb") as f: |
Antoine Pitrou | 7d037a7 | 2009-03-29 18:55:12 +0000 | [diff] [blame] | 580 | self.assertRaises(OverflowError, f.read) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 581 | with self.open(zero, "r") as f: |
Antoine Pitrou | 7d037a7 | 2009-03-29 18:55:12 +0000 | [diff] [blame] | 582 | self.assertRaises(OverflowError, f.read) |
| 583 | |
Antoine Pitrou | 6be8876 | 2010-05-03 16:48:20 +0000 | [diff] [blame] | 584 | def test_flush_error_on_close(self): |
| 585 | f = self.open(support.TESTFN, "wb", buffering=0) |
| 586 | def bad_flush(): |
| 587 | raise IOError() |
| 588 | f.flush = bad_flush |
| 589 | self.assertRaises(IOError, f.close) # exception not swallowed |
| 590 | |
| 591 | def test_multi_close(self): |
| 592 | f = self.open(support.TESTFN, "wb", buffering=0) |
| 593 | f.close() |
| 594 | f.close() |
| 595 | f.close() |
| 596 | self.assertRaises(ValueError, f.flush) |
| 597 | |
Antoine Pitrou | 328ec74 | 2010-09-14 18:37:24 +0000 | [diff] [blame] | 598 | def test_RawIOBase_read(self): |
| 599 | # Exercise the default RawIOBase.read() implementation (which calls |
| 600 | # readinto() internally). |
| 601 | rawio = self.MockRawIOWithoutRead((b"abc", b"d", None, b"efg", None)) |
| 602 | self.assertEqual(rawio.read(2), b"ab") |
| 603 | self.assertEqual(rawio.read(2), b"c") |
| 604 | self.assertEqual(rawio.read(2), b"d") |
| 605 | self.assertEqual(rawio.read(2), None) |
| 606 | self.assertEqual(rawio.read(2), b"ef") |
| 607 | self.assertEqual(rawio.read(2), b"g") |
| 608 | self.assertEqual(rawio.read(2), None) |
| 609 | self.assertEqual(rawio.read(2), b"") |
| 610 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 611 | class CIOTest(IOTest): |
| 612 | pass |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 613 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 614 | class PyIOTest(IOTest): |
| 615 | pass |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 616 | |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 617 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 618 | class CommonBufferedTests: |
| 619 | # Tests common to BufferedReader, BufferedWriter and BufferedRandom |
| 620 | |
Benjamin Peterson | d2e0c79 | 2009-05-01 20:40:59 +0000 | [diff] [blame] | 621 | def test_detach(self): |
| 622 | raw = self.MockRawIO() |
| 623 | buf = self.tp(raw) |
| 624 | self.assertIs(buf.detach(), raw) |
| 625 | self.assertRaises(ValueError, buf.detach) |
| 626 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 627 | def test_fileno(self): |
| 628 | rawio = self.MockRawIO() |
| 629 | bufio = self.tp(rawio) |
| 630 | |
| 631 | self.assertEquals(42, bufio.fileno()) |
| 632 | |
| 633 | def test_no_fileno(self): |
| 634 | # XXX will we always have fileno() function? If so, kill |
| 635 | # this test. Else, write it. |
| 636 | pass |
| 637 | |
| 638 | def test_invalid_args(self): |
| 639 | rawio = self.MockRawIO() |
| 640 | bufio = self.tp(rawio) |
| 641 | # Invalid whence |
| 642 | self.assertRaises(ValueError, bufio.seek, 0, -1) |
| 643 | self.assertRaises(ValueError, bufio.seek, 0, 3) |
| 644 | |
| 645 | def test_override_destructor(self): |
| 646 | tp = self.tp |
| 647 | record = [] |
| 648 | class MyBufferedIO(tp): |
| 649 | def __del__(self): |
| 650 | record.append(1) |
| 651 | try: |
| 652 | f = super().__del__ |
| 653 | except AttributeError: |
| 654 | pass |
| 655 | else: |
| 656 | f() |
| 657 | def close(self): |
| 658 | record.append(2) |
| 659 | super().close() |
| 660 | def flush(self): |
| 661 | record.append(3) |
| 662 | super().flush() |
| 663 | rawio = self.MockRawIO() |
| 664 | bufio = MyBufferedIO(rawio) |
| 665 | writable = bufio.writable() |
| 666 | del bufio |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 667 | support.gc_collect() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 668 | if writable: |
| 669 | self.assertEqual(record, [1, 2, 3]) |
| 670 | else: |
| 671 | self.assertEqual(record, [1, 2]) |
| 672 | |
| 673 | def test_context_manager(self): |
| 674 | # Test usability as a context manager |
| 675 | rawio = self.MockRawIO() |
| 676 | bufio = self.tp(rawio) |
| 677 | def _with(): |
| 678 | with bufio: |
| 679 | pass |
| 680 | _with() |
| 681 | # bufio should now be closed, and using it a second time should raise |
| 682 | # a ValueError. |
| 683 | self.assertRaises(ValueError, _with) |
| 684 | |
| 685 | def test_error_through_destructor(self): |
| 686 | # Test that the exception state is not modified by a destructor, |
| 687 | # even if close() fails. |
| 688 | rawio = self.CloseFailureIO() |
| 689 | def f(): |
| 690 | self.tp(rawio).xyzzy |
| 691 | with support.captured_output("stderr") as s: |
| 692 | self.assertRaises(AttributeError, f) |
| 693 | s = s.getvalue().strip() |
| 694 | if s: |
| 695 | # The destructor *may* have printed an unraisable error, check it |
| 696 | self.assertEqual(len(s.splitlines()), 1) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 697 | self.assertTrue(s.startswith("Exception IOError: "), s) |
| 698 | self.assertTrue(s.endswith(" ignored"), s) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 699 | |
Antoine Pitrou | 716c444 | 2009-05-23 19:04:03 +0000 | [diff] [blame] | 700 | def test_repr(self): |
| 701 | raw = self.MockRawIO() |
| 702 | b = self.tp(raw) |
| 703 | clsname = "%s.%s" % (self.tp.__module__, self.tp.__name__) |
| 704 | self.assertEqual(repr(b), "<%s>" % clsname) |
| 705 | raw.name = "dummy" |
| 706 | self.assertEqual(repr(b), "<%s name='dummy'>" % clsname) |
| 707 | raw.name = b"dummy" |
| 708 | self.assertEqual(repr(b), "<%s name=b'dummy'>" % clsname) |
| 709 | |
Antoine Pitrou | 6be8876 | 2010-05-03 16:48:20 +0000 | [diff] [blame] | 710 | def test_flush_error_on_close(self): |
| 711 | raw = self.MockRawIO() |
| 712 | def bad_flush(): |
| 713 | raise IOError() |
| 714 | raw.flush = bad_flush |
| 715 | b = self.tp(raw) |
| 716 | self.assertRaises(IOError, b.close) # exception not swallowed |
| 717 | |
| 718 | def test_multi_close(self): |
| 719 | raw = self.MockRawIO() |
| 720 | b = self.tp(raw) |
| 721 | b.close() |
| 722 | b.close() |
| 723 | b.close() |
| 724 | self.assertRaises(ValueError, b.flush) |
| 725 | |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 726 | def test_unseekable(self): |
| 727 | bufio = self.tp(self.MockUnseekableIO(b"A" * 10)) |
| 728 | self.assertRaises(self.UnsupportedOperation, bufio.tell) |
| 729 | self.assertRaises(self.UnsupportedOperation, bufio.seek, 0) |
| 730 | |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 731 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 732 | class BufferedReaderTest(unittest.TestCase, CommonBufferedTests): |
| 733 | read_mode = "rb" |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 734 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 735 | def test_constructor(self): |
| 736 | rawio = self.MockRawIO([b"abc"]) |
| 737 | bufio = self.tp(rawio) |
| 738 | bufio.__init__(rawio) |
| 739 | bufio.__init__(rawio, buffer_size=1024) |
| 740 | bufio.__init__(rawio, buffer_size=16) |
| 741 | self.assertEquals(b"abc", bufio.read()) |
| 742 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=0) |
| 743 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-16) |
| 744 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-1) |
| 745 | rawio = self.MockRawIO([b"abc"]) |
| 746 | bufio.__init__(rawio) |
| 747 | self.assertEquals(b"abc", bufio.read()) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 748 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 749 | def test_read(self): |
Benjamin Peterson | bf5ff76 | 2009-12-13 19:25:34 +0000 | [diff] [blame] | 750 | for arg in (None, 7): |
| 751 | rawio = self.MockRawIO((b"abc", b"d", b"efg")) |
| 752 | bufio = self.tp(rawio) |
| 753 | self.assertEquals(b"abcdefg", bufio.read(arg)) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 754 | # Invalid args |
| 755 | self.assertRaises(ValueError, bufio.read, -2) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 756 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 757 | def test_read1(self): |
| 758 | rawio = self.MockRawIO((b"abc", b"d", b"efg")) |
| 759 | bufio = self.tp(rawio) |
| 760 | self.assertEquals(b"a", bufio.read(1)) |
| 761 | self.assertEquals(b"b", bufio.read1(1)) |
| 762 | self.assertEquals(rawio._reads, 1) |
| 763 | self.assertEquals(b"c", bufio.read1(100)) |
| 764 | self.assertEquals(rawio._reads, 1) |
| 765 | self.assertEquals(b"d", bufio.read1(100)) |
| 766 | self.assertEquals(rawio._reads, 2) |
| 767 | self.assertEquals(b"efg", bufio.read1(100)) |
| 768 | self.assertEquals(rawio._reads, 3) |
| 769 | self.assertEquals(b"", bufio.read1(100)) |
Benjamin Peterson | bf5ff76 | 2009-12-13 19:25:34 +0000 | [diff] [blame] | 770 | self.assertEquals(rawio._reads, 4) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 771 | # Invalid args |
| 772 | self.assertRaises(ValueError, bufio.read1, -1) |
| 773 | |
| 774 | def test_readinto(self): |
| 775 | rawio = self.MockRawIO((b"abc", b"d", b"efg")) |
| 776 | bufio = self.tp(rawio) |
| 777 | b = bytearray(2) |
| 778 | self.assertEquals(bufio.readinto(b), 2) |
| 779 | self.assertEquals(b, b"ab") |
| 780 | self.assertEquals(bufio.readinto(b), 2) |
| 781 | self.assertEquals(b, b"cd") |
| 782 | self.assertEquals(bufio.readinto(b), 2) |
| 783 | self.assertEquals(b, b"ef") |
| 784 | self.assertEquals(bufio.readinto(b), 1) |
| 785 | self.assertEquals(b, b"gf") |
| 786 | self.assertEquals(bufio.readinto(b), 0) |
| 787 | self.assertEquals(b, b"gf") |
| 788 | |
Benjamin Peterson | bf5ff76 | 2009-12-13 19:25:34 +0000 | [diff] [blame] | 789 | def test_readlines(self): |
| 790 | def bufio(): |
| 791 | rawio = self.MockRawIO((b"abc\n", b"d\n", b"ef")) |
| 792 | return self.tp(rawio) |
| 793 | self.assertEquals(bufio().readlines(), [b"abc\n", b"d\n", b"ef"]) |
| 794 | self.assertEquals(bufio().readlines(5), [b"abc\n", b"d\n"]) |
| 795 | self.assertEquals(bufio().readlines(None), [b"abc\n", b"d\n", b"ef"]) |
| 796 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 797 | def test_buffering(self): |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 798 | data = b"abcdefghi" |
| 799 | dlen = len(data) |
| 800 | |
| 801 | tests = [ |
| 802 | [ 100, [ 3, 1, 4, 8 ], [ dlen, 0 ] ], |
| 803 | [ 100, [ 3, 3, 3], [ dlen ] ], |
| 804 | [ 4, [ 1, 2, 4, 2 ], [ 4, 4, 1 ] ], |
| 805 | ] |
| 806 | |
| 807 | for bufsize, buf_read_sizes, raw_read_sizes in tests: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 808 | rawio = self.MockFileIO(data) |
| 809 | bufio = self.tp(rawio, buffer_size=bufsize) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 810 | pos = 0 |
| 811 | for nbytes in buf_read_sizes: |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 812 | self.assertEquals(bufio.read(nbytes), data[pos:pos+nbytes]) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 813 | pos += nbytes |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 814 | # this is mildly implementation-dependent |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 815 | self.assertEquals(rawio.read_history, raw_read_sizes) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 816 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 817 | def test_read_non_blocking(self): |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 818 | # Inject some None's in there to simulate EWOULDBLOCK |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 819 | rawio = self.MockRawIO((b"abc", b"d", None, b"efg", None, None, None)) |
| 820 | bufio = self.tp(rawio) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 821 | |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 822 | self.assertEquals(b"abcd", bufio.read(6)) |
| 823 | self.assertEquals(b"e", bufio.read(1)) |
| 824 | self.assertEquals(b"fg", bufio.read()) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 825 | self.assertEquals(b"", bufio.peek(1)) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 826 | self.assertTrue(None is bufio.read()) |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 827 | self.assertEquals(b"", bufio.read()) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 828 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 829 | def test_read_past_eof(self): |
| 830 | rawio = self.MockRawIO((b"abc", b"d", b"efg")) |
| 831 | bufio = self.tp(rawio) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 832 | |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 833 | self.assertEquals(b"abcdefg", bufio.read(9000)) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 834 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 835 | def test_read_all(self): |
| 836 | rawio = self.MockRawIO((b"abc", b"d", b"efg")) |
| 837 | bufio = self.tp(rawio) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 838 | |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 839 | self.assertEquals(b"abcdefg", bufio.read()) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 840 | |
Victor Stinner | 45df820 | 2010-04-28 22:31:17 +0000 | [diff] [blame] | 841 | @unittest.skipUnless(threading, 'Threading required for this test.') |
Antoine Pitrou | 5bc4fa7 | 2010-10-14 15:34:31 +0000 | [diff] [blame] | 842 | @support.requires_resource('cpu') |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 843 | def test_threads(self): |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 844 | try: |
| 845 | # Write out many bytes with exactly the same number of 0's, |
| 846 | # 1's... 255's. This will help us check that concurrent reading |
| 847 | # doesn't duplicate or forget contents. |
| 848 | N = 1000 |
| 849 | l = list(range(256)) * N |
| 850 | random.shuffle(l) |
| 851 | s = bytes(bytearray(l)) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 852 | with self.open(support.TESTFN, "wb") as f: |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 853 | f.write(s) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 854 | with self.open(support.TESTFN, self.read_mode, buffering=0) as raw: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 855 | bufio = self.tp(raw, 8) |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 856 | errors = [] |
| 857 | results = [] |
| 858 | def f(): |
| 859 | try: |
| 860 | # Intra-buffer read then buffer-flushing read |
| 861 | for n in cycle([1, 19]): |
| 862 | s = bufio.read(n) |
| 863 | if not s: |
| 864 | break |
| 865 | # list.append() is atomic |
| 866 | results.append(s) |
| 867 | except Exception as e: |
| 868 | errors.append(e) |
| 869 | raise |
| 870 | threads = [threading.Thread(target=f) for x in range(20)] |
| 871 | for t in threads: |
| 872 | t.start() |
| 873 | time.sleep(0.02) # yield |
| 874 | for t in threads: |
| 875 | t.join() |
| 876 | self.assertFalse(errors, |
| 877 | "the following exceptions were caught: %r" % errors) |
| 878 | s = b''.join(results) |
| 879 | for i in range(256): |
| 880 | c = bytes(bytearray([i])) |
| 881 | self.assertEqual(s.count(c), N) |
| 882 | finally: |
| 883 | support.unlink(support.TESTFN) |
| 884 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 885 | def test_misbehaved_io(self): |
| 886 | rawio = self.MisbehavedRawIO((b"abc", b"d", b"efg")) |
| 887 | bufio = self.tp(rawio) |
| 888 | self.assertRaises(IOError, bufio.seek, 0) |
| 889 | self.assertRaises(IOError, bufio.tell) |
| 890 | |
Antoine Pitrou | 32cfede | 2010-08-11 13:31:33 +0000 | [diff] [blame] | 891 | def test_no_extraneous_read(self): |
| 892 | # Issue #9550; when the raw IO object has satisfied the read request, |
| 893 | # we should not issue any additional reads, otherwise it may block |
| 894 | # (e.g. socket). |
| 895 | bufsize = 16 |
| 896 | for n in (2, bufsize - 1, bufsize, bufsize + 1, bufsize * 2): |
| 897 | rawio = self.MockRawIO([b"x" * n]) |
| 898 | bufio = self.tp(rawio, bufsize) |
| 899 | self.assertEqual(bufio.read(n), b"x" * n) |
| 900 | # Simple case: one raw read is enough to satisfy the request. |
| 901 | self.assertEqual(rawio._extraneous_reads, 0, |
| 902 | "failed for {}: {} != 0".format(n, rawio._extraneous_reads)) |
| 903 | # A more complex case where two raw reads are needed to satisfy |
| 904 | # the request. |
| 905 | rawio = self.MockRawIO([b"x" * (n - 1), b"x"]) |
| 906 | bufio = self.tp(rawio, bufsize) |
| 907 | self.assertEqual(bufio.read(n), b"x" * n) |
| 908 | self.assertEqual(rawio._extraneous_reads, 0, |
| 909 | "failed for {}: {} != 0".format(n, rawio._extraneous_reads)) |
| 910 | |
| 911 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 912 | class CBufferedReaderTest(BufferedReaderTest): |
| 913 | tp = io.BufferedReader |
| 914 | |
| 915 | def test_constructor(self): |
| 916 | BufferedReaderTest.test_constructor(self) |
| 917 | # The allocation can succeed on 32-bit builds, e.g. with more |
| 918 | # than 2GB RAM and a 64-bit kernel. |
| 919 | if sys.maxsize > 0x7FFFFFFF: |
| 920 | rawio = self.MockRawIO() |
| 921 | bufio = self.tp(rawio) |
| 922 | self.assertRaises((OverflowError, MemoryError, ValueError), |
| 923 | bufio.__init__, rawio, sys.maxsize) |
| 924 | |
| 925 | def test_initialization(self): |
| 926 | rawio = self.MockRawIO([b"abc"]) |
| 927 | bufio = self.tp(rawio) |
| 928 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=0) |
| 929 | self.assertRaises(ValueError, bufio.read) |
| 930 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-16) |
| 931 | self.assertRaises(ValueError, bufio.read) |
| 932 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-1) |
| 933 | self.assertRaises(ValueError, bufio.read) |
| 934 | |
| 935 | def test_misbehaved_io_read(self): |
| 936 | rawio = self.MisbehavedRawIO((b"abc", b"d", b"efg")) |
| 937 | bufio = self.tp(rawio) |
| 938 | # _pyio.BufferedReader seems to implement reading different, so that |
| 939 | # checking this is not so easy. |
| 940 | self.assertRaises(IOError, bufio.read, 10) |
| 941 | |
| 942 | def test_garbage_collection(self): |
| 943 | # C BufferedReader objects are collected. |
| 944 | # The Python version has __del__, so it ends into gc.garbage instead |
| 945 | rawio = self.FileIO(support.TESTFN, "w+b") |
| 946 | f = self.tp(rawio) |
| 947 | f.f = f |
| 948 | wr = weakref.ref(f) |
| 949 | del f |
Benjamin Peterson | 45cec32 | 2009-04-24 23:14:50 +0000 | [diff] [blame] | 950 | support.gc_collect() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 951 | self.assertTrue(wr() is None, wr) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 952 | |
| 953 | class PyBufferedReaderTest(BufferedReaderTest): |
| 954 | tp = pyio.BufferedReader |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 955 | |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 956 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 957 | class BufferedWriterTest(unittest.TestCase, CommonBufferedTests): |
| 958 | write_mode = "wb" |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 959 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 960 | def test_constructor(self): |
| 961 | rawio = self.MockRawIO() |
| 962 | bufio = self.tp(rawio) |
| 963 | bufio.__init__(rawio) |
| 964 | bufio.__init__(rawio, buffer_size=1024) |
| 965 | bufio.__init__(rawio, buffer_size=16) |
| 966 | self.assertEquals(3, bufio.write(b"abc")) |
| 967 | bufio.flush() |
| 968 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=0) |
| 969 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-16) |
| 970 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-1) |
| 971 | bufio.__init__(rawio) |
| 972 | self.assertEquals(3, bufio.write(b"ghi")) |
| 973 | bufio.flush() |
| 974 | self.assertEquals(b"".join(rawio._write_stack), b"abcghi") |
| 975 | |
Benjamin Peterson | d2e0c79 | 2009-05-01 20:40:59 +0000 | [diff] [blame] | 976 | def test_detach_flush(self): |
| 977 | raw = self.MockRawIO() |
| 978 | buf = self.tp(raw) |
| 979 | buf.write(b"howdy!") |
| 980 | self.assertFalse(raw._write_stack) |
| 981 | buf.detach() |
| 982 | self.assertEqual(raw._write_stack, [b"howdy!"]) |
| 983 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 984 | def test_write(self): |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 985 | # Write to the buffered IO but don't overflow the buffer. |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 986 | writer = self.MockRawIO() |
| 987 | bufio = self.tp(writer, 8) |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 988 | bufio.write(b"abc") |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 989 | self.assertFalse(writer._write_stack) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 990 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 991 | def test_write_overflow(self): |
| 992 | writer = self.MockRawIO() |
| 993 | bufio = self.tp(writer, 8) |
| 994 | contents = b"abcdefghijklmnop" |
| 995 | for n in range(0, len(contents), 3): |
| 996 | bufio.write(contents[n:n+3]) |
| 997 | flushed = b"".join(writer._write_stack) |
| 998 | # At least (total - 8) bytes were implicitly flushed, perhaps more |
| 999 | # depending on the implementation. |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1000 | self.assertTrue(flushed.startswith(contents[:-8]), flushed) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 1001 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1002 | def check_writes(self, intermediate_func): |
| 1003 | # Lots of writes, test the flushed output is as expected. |
| 1004 | contents = bytes(range(256)) * 1000 |
| 1005 | n = 0 |
| 1006 | writer = self.MockRawIO() |
| 1007 | bufio = self.tp(writer, 13) |
| 1008 | # Generator of write sizes: repeat each N 15 times then proceed to N+1 |
| 1009 | def gen_sizes(): |
| 1010 | for size in count(1): |
| 1011 | for i in range(15): |
| 1012 | yield size |
| 1013 | sizes = gen_sizes() |
| 1014 | while n < len(contents): |
| 1015 | size = min(next(sizes), len(contents) - n) |
| 1016 | self.assertEquals(bufio.write(contents[n:n+size]), size) |
| 1017 | intermediate_func(bufio) |
| 1018 | n += size |
| 1019 | bufio.flush() |
| 1020 | self.assertEquals(contents, b"".join(writer._write_stack)) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 1021 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1022 | def test_writes(self): |
| 1023 | self.check_writes(lambda bufio: None) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 1024 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1025 | def test_writes_and_flushes(self): |
| 1026 | self.check_writes(lambda bufio: bufio.flush()) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1027 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1028 | def test_writes_and_seeks(self): |
| 1029 | def _seekabs(bufio): |
| 1030 | pos = bufio.tell() |
| 1031 | bufio.seek(pos + 1, 0) |
| 1032 | bufio.seek(pos - 1, 0) |
| 1033 | bufio.seek(pos, 0) |
| 1034 | self.check_writes(_seekabs) |
| 1035 | def _seekrel(bufio): |
| 1036 | pos = bufio.seek(0, 1) |
| 1037 | bufio.seek(+1, 1) |
| 1038 | bufio.seek(-1, 1) |
| 1039 | bufio.seek(pos, 0) |
| 1040 | self.check_writes(_seekrel) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1041 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1042 | def test_writes_and_truncates(self): |
| 1043 | self.check_writes(lambda bufio: bufio.truncate(bufio.tell())) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1044 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1045 | def test_write_non_blocking(self): |
| 1046 | raw = self.MockNonBlockWriterIO() |
Benjamin Peterson | 59406a9 | 2009-03-26 17:10:29 +0000 | [diff] [blame] | 1047 | bufio = self.tp(raw, 8) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1048 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1049 | self.assertEquals(bufio.write(b"abcd"), 4) |
| 1050 | self.assertEquals(bufio.write(b"efghi"), 5) |
| 1051 | # 1 byte will be written, the rest will be buffered |
| 1052 | raw.block_on(b"k") |
| 1053 | self.assertEquals(bufio.write(b"jklmn"), 5) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1054 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1055 | # 8 bytes will be written, 8 will be buffered and the rest will be lost |
| 1056 | raw.block_on(b"0") |
| 1057 | try: |
| 1058 | bufio.write(b"opqrwxyz0123456789") |
| 1059 | except self.BlockingIOError as e: |
| 1060 | written = e.characters_written |
| 1061 | else: |
| 1062 | self.fail("BlockingIOError should have been raised") |
| 1063 | self.assertEquals(written, 16) |
| 1064 | self.assertEquals(raw.pop_written(), |
| 1065 | b"abcdefghijklmnopqrwxyz") |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1066 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1067 | self.assertEquals(bufio.write(b"ABCDEFGHI"), 9) |
| 1068 | s = raw.pop_written() |
| 1069 | # Previously buffered bytes were flushed |
| 1070 | self.assertTrue(s.startswith(b"01234567A"), s) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1071 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1072 | def test_write_and_rewind(self): |
| 1073 | raw = io.BytesIO() |
| 1074 | bufio = self.tp(raw, 4) |
| 1075 | self.assertEqual(bufio.write(b"abcdef"), 6) |
| 1076 | self.assertEqual(bufio.tell(), 6) |
| 1077 | bufio.seek(0, 0) |
| 1078 | self.assertEqual(bufio.write(b"XY"), 2) |
| 1079 | bufio.seek(6, 0) |
| 1080 | self.assertEqual(raw.getvalue(), b"XYcdef") |
| 1081 | self.assertEqual(bufio.write(b"123456"), 6) |
| 1082 | bufio.flush() |
| 1083 | self.assertEqual(raw.getvalue(), b"XYcdef123456") |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 1084 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1085 | def test_flush(self): |
| 1086 | writer = self.MockRawIO() |
| 1087 | bufio = self.tp(writer, 8) |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 1088 | bufio.write(b"abc") |
| 1089 | bufio.flush() |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 1090 | self.assertEquals(b"abc", writer._write_stack[0]) |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 1091 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1092 | def test_destructor(self): |
| 1093 | writer = self.MockRawIO() |
| 1094 | bufio = self.tp(writer, 8) |
| 1095 | bufio.write(b"abc") |
| 1096 | del bufio |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 1097 | support.gc_collect() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1098 | self.assertEquals(b"abc", writer._write_stack[0]) |
| 1099 | |
| 1100 | def test_truncate(self): |
| 1101 | # Truncate implicitly flushes the buffer. |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 1102 | with self.open(support.TESTFN, self.write_mode, buffering=0) as raw: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1103 | bufio = self.tp(raw, 8) |
| 1104 | bufio.write(b"abcdef") |
| 1105 | self.assertEqual(bufio.truncate(3), 3) |
Antoine Pitrou | 905a2ff | 2010-01-31 22:47:27 +0000 | [diff] [blame] | 1106 | self.assertEqual(bufio.tell(), 6) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 1107 | with self.open(support.TESTFN, "rb", buffering=0) as f: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1108 | self.assertEqual(f.read(), b"abc") |
| 1109 | |
Victor Stinner | 45df820 | 2010-04-28 22:31:17 +0000 | [diff] [blame] | 1110 | @unittest.skipUnless(threading, 'Threading required for this test.') |
Antoine Pitrou | 5bc4fa7 | 2010-10-14 15:34:31 +0000 | [diff] [blame] | 1111 | @support.requires_resource('cpu') |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1112 | def test_threads(self): |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 1113 | try: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1114 | # Write out many bytes from many threads and test they were |
| 1115 | # all flushed. |
| 1116 | N = 1000 |
| 1117 | contents = bytes(range(256)) * N |
| 1118 | sizes = cycle([1, 19]) |
| 1119 | n = 0 |
| 1120 | queue = deque() |
| 1121 | while n < len(contents): |
| 1122 | size = next(sizes) |
| 1123 | queue.append(contents[n:n+size]) |
| 1124 | n += size |
| 1125 | del contents |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 1126 | # We use a real file object because it allows us to |
| 1127 | # exercise situations where the GIL is released before |
| 1128 | # writing the buffer to the raw streams. This is in addition |
| 1129 | # to concurrency issues due to switching threads in the middle |
| 1130 | # of Python code. |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 1131 | with self.open(support.TESTFN, self.write_mode, buffering=0) as raw: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1132 | bufio = self.tp(raw, 8) |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 1133 | errors = [] |
| 1134 | def f(): |
| 1135 | try: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1136 | while True: |
| 1137 | try: |
| 1138 | s = queue.popleft() |
| 1139 | except IndexError: |
| 1140 | return |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 1141 | bufio.write(s) |
| 1142 | except Exception as e: |
| 1143 | errors.append(e) |
| 1144 | raise |
| 1145 | threads = [threading.Thread(target=f) for x in range(20)] |
| 1146 | for t in threads: |
| 1147 | t.start() |
| 1148 | time.sleep(0.02) # yield |
| 1149 | for t in threads: |
| 1150 | t.join() |
| 1151 | self.assertFalse(errors, |
| 1152 | "the following exceptions were caught: %r" % errors) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1153 | bufio.close() |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 1154 | with self.open(support.TESTFN, "rb") as f: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1155 | s = f.read() |
| 1156 | for i in range(256): |
| 1157 | self.assertEquals(s.count(bytes([i])), N) |
Antoine Pitrou | 8769576 | 2008-08-14 22:44:29 +0000 | [diff] [blame] | 1158 | finally: |
| 1159 | support.unlink(support.TESTFN) |
| 1160 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1161 | def test_misbehaved_io(self): |
| 1162 | rawio = self.MisbehavedRawIO() |
| 1163 | bufio = self.tp(rawio, 5) |
| 1164 | self.assertRaises(IOError, bufio.seek, 0) |
| 1165 | self.assertRaises(IOError, bufio.tell) |
| 1166 | self.assertRaises(IOError, bufio.write, b"abcdef") |
| 1167 | |
Benjamin Peterson | 59406a9 | 2009-03-26 17:10:29 +0000 | [diff] [blame] | 1168 | def test_max_buffer_size_deprecation(self): |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame] | 1169 | with support.check_warnings(("max_buffer_size is deprecated", |
| 1170 | DeprecationWarning)): |
Benjamin Peterson | 59406a9 | 2009-03-26 17:10:29 +0000 | [diff] [blame] | 1171 | self.tp(self.MockRawIO(), 8, 12) |
Benjamin Peterson | 59406a9 | 2009-03-26 17:10:29 +0000 | [diff] [blame] | 1172 | |
| 1173 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1174 | class CBufferedWriterTest(BufferedWriterTest): |
| 1175 | tp = io.BufferedWriter |
| 1176 | |
| 1177 | def test_constructor(self): |
| 1178 | BufferedWriterTest.test_constructor(self) |
| 1179 | # The allocation can succeed on 32-bit builds, e.g. with more |
| 1180 | # than 2GB RAM and a 64-bit kernel. |
| 1181 | if sys.maxsize > 0x7FFFFFFF: |
| 1182 | rawio = self.MockRawIO() |
| 1183 | bufio = self.tp(rawio) |
| 1184 | self.assertRaises((OverflowError, MemoryError, ValueError), |
| 1185 | bufio.__init__, rawio, sys.maxsize) |
| 1186 | |
| 1187 | def test_initialization(self): |
| 1188 | rawio = self.MockRawIO() |
| 1189 | bufio = self.tp(rawio) |
| 1190 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=0) |
| 1191 | self.assertRaises(ValueError, bufio.write, b"def") |
| 1192 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-16) |
| 1193 | self.assertRaises(ValueError, bufio.write, b"def") |
| 1194 | self.assertRaises(ValueError, bufio.__init__, rawio, buffer_size=-1) |
| 1195 | self.assertRaises(ValueError, bufio.write, b"def") |
| 1196 | |
| 1197 | def test_garbage_collection(self): |
| 1198 | # C BufferedWriter objects are collected, and collecting them flushes |
| 1199 | # all data to disk. |
| 1200 | # The Python version has __del__, so it ends into gc.garbage instead |
| 1201 | rawio = self.FileIO(support.TESTFN, "w+b") |
| 1202 | f = self.tp(rawio) |
| 1203 | f.write(b"123xxx") |
| 1204 | f.x = f |
| 1205 | wr = weakref.ref(f) |
| 1206 | del f |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 1207 | support.gc_collect() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1208 | self.assertTrue(wr() is None, wr) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 1209 | with self.open(support.TESTFN, "rb") as f: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1210 | self.assertEqual(f.read(), b"123xxx") |
| 1211 | |
| 1212 | |
| 1213 | class PyBufferedWriterTest(BufferedWriterTest): |
| 1214 | tp = pyio.BufferedWriter |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 1215 | |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1216 | class BufferedRWPairTest(unittest.TestCase): |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 1217 | |
Antoine Pitrou | cf4c749 | 2009-04-19 00:09:36 +0000 | [diff] [blame] | 1218 | def test_constructor(self): |
| 1219 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
Benjamin Peterson | 9203501 | 2008-12-27 16:00:54 +0000 | [diff] [blame] | 1220 | self.assertFalse(pair.closed) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1221 | |
Benjamin Peterson | d2e0c79 | 2009-05-01 20:40:59 +0000 | [diff] [blame] | 1222 | def test_detach(self): |
| 1223 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
| 1224 | self.assertRaises(self.UnsupportedOperation, pair.detach) |
| 1225 | |
Antoine Pitrou | cf4c749 | 2009-04-19 00:09:36 +0000 | [diff] [blame] | 1226 | def test_constructor_max_buffer_size_deprecation(self): |
Florent Xicluna | 8fbddf1 | 2010-03-17 20:29:51 +0000 | [diff] [blame] | 1227 | with support.check_warnings(("max_buffer_size is deprecated", |
| 1228 | DeprecationWarning)): |
Benjamin Peterson | 59406a9 | 2009-03-26 17:10:29 +0000 | [diff] [blame] | 1229 | self.tp(self.MockRawIO(), self.MockRawIO(), 8, 12) |
Benjamin Peterson | 59406a9 | 2009-03-26 17:10:29 +0000 | [diff] [blame] | 1230 | |
Antoine Pitrou | cf4c749 | 2009-04-19 00:09:36 +0000 | [diff] [blame] | 1231 | def test_constructor_with_not_readable(self): |
| 1232 | class NotReadable(MockRawIO): |
| 1233 | def readable(self): |
| 1234 | return False |
| 1235 | |
| 1236 | self.assertRaises(IOError, self.tp, NotReadable(), self.MockRawIO()) |
| 1237 | |
| 1238 | def test_constructor_with_not_writeable(self): |
| 1239 | class NotWriteable(MockRawIO): |
| 1240 | def writable(self): |
| 1241 | return False |
| 1242 | |
| 1243 | self.assertRaises(IOError, self.tp, self.MockRawIO(), NotWriteable()) |
| 1244 | |
| 1245 | def test_read(self): |
| 1246 | pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO()) |
| 1247 | |
| 1248 | self.assertEqual(pair.read(3), b"abc") |
| 1249 | self.assertEqual(pair.read(1), b"d") |
| 1250 | self.assertEqual(pair.read(), b"ef") |
Benjamin Peterson | bf5ff76 | 2009-12-13 19:25:34 +0000 | [diff] [blame] | 1251 | pair = self.tp(self.BytesIO(b"abc"), self.MockRawIO()) |
| 1252 | self.assertEqual(pair.read(None), b"abc") |
| 1253 | |
| 1254 | def test_readlines(self): |
| 1255 | pair = lambda: self.tp(self.BytesIO(b"abc\ndef\nh"), self.MockRawIO()) |
| 1256 | self.assertEqual(pair().readlines(), [b"abc\n", b"def\n", b"h"]) |
| 1257 | self.assertEqual(pair().readlines(), [b"abc\n", b"def\n", b"h"]) |
| 1258 | self.assertEqual(pair().readlines(5), [b"abc\n", b"def\n"]) |
Antoine Pitrou | cf4c749 | 2009-04-19 00:09:36 +0000 | [diff] [blame] | 1259 | |
| 1260 | def test_read1(self): |
| 1261 | # .read1() is delegated to the underlying reader object, so this test |
| 1262 | # can be shallow. |
| 1263 | pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO()) |
| 1264 | |
| 1265 | self.assertEqual(pair.read1(3), b"abc") |
| 1266 | |
| 1267 | def test_readinto(self): |
| 1268 | pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO()) |
| 1269 | |
| 1270 | data = bytearray(5) |
| 1271 | self.assertEqual(pair.readinto(data), 5) |
| 1272 | self.assertEqual(data, b"abcde") |
| 1273 | |
| 1274 | def test_write(self): |
| 1275 | w = self.MockRawIO() |
| 1276 | pair = self.tp(self.MockRawIO(), w) |
| 1277 | |
| 1278 | pair.write(b"abc") |
| 1279 | pair.flush() |
| 1280 | pair.write(b"def") |
| 1281 | pair.flush() |
| 1282 | self.assertEqual(w._write_stack, [b"abc", b"def"]) |
| 1283 | |
| 1284 | def test_peek(self): |
| 1285 | pair = self.tp(self.BytesIO(b"abcdef"), self.MockRawIO()) |
| 1286 | |
| 1287 | self.assertTrue(pair.peek(3).startswith(b"abc")) |
| 1288 | self.assertEqual(pair.read(3), b"abc") |
| 1289 | |
| 1290 | def test_readable(self): |
| 1291 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
| 1292 | self.assertTrue(pair.readable()) |
| 1293 | |
| 1294 | def test_writeable(self): |
| 1295 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
| 1296 | self.assertTrue(pair.writable()) |
| 1297 | |
| 1298 | def test_seekable(self): |
| 1299 | # BufferedRWPairs are never seekable, even if their readers and writers |
| 1300 | # are. |
| 1301 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
| 1302 | self.assertFalse(pair.seekable()) |
| 1303 | |
| 1304 | # .flush() is delegated to the underlying writer object and has been |
| 1305 | # tested in the test_write method. |
| 1306 | |
| 1307 | def test_close_and_closed(self): |
| 1308 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
| 1309 | self.assertFalse(pair.closed) |
| 1310 | pair.close() |
| 1311 | self.assertTrue(pair.closed) |
| 1312 | |
| 1313 | def test_isatty(self): |
| 1314 | class SelectableIsAtty(MockRawIO): |
| 1315 | def __init__(self, isatty): |
| 1316 | MockRawIO.__init__(self) |
| 1317 | self._isatty = isatty |
| 1318 | |
| 1319 | def isatty(self): |
| 1320 | return self._isatty |
| 1321 | |
| 1322 | pair = self.tp(SelectableIsAtty(False), SelectableIsAtty(False)) |
| 1323 | self.assertFalse(pair.isatty()) |
| 1324 | |
| 1325 | pair = self.tp(SelectableIsAtty(True), SelectableIsAtty(False)) |
| 1326 | self.assertTrue(pair.isatty()) |
| 1327 | |
| 1328 | pair = self.tp(SelectableIsAtty(False), SelectableIsAtty(True)) |
| 1329 | self.assertTrue(pair.isatty()) |
| 1330 | |
| 1331 | pair = self.tp(SelectableIsAtty(True), SelectableIsAtty(True)) |
| 1332 | self.assertTrue(pair.isatty()) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1333 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1334 | class CBufferedRWPairTest(BufferedRWPairTest): |
| 1335 | tp = io.BufferedRWPair |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 1336 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1337 | class PyBufferedRWPairTest(BufferedRWPairTest): |
| 1338 | tp = pyio.BufferedRWPair |
Guido van Rossum | a9e2024 | 2007-03-08 00:43:48 +0000 | [diff] [blame] | 1339 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1340 | |
| 1341 | class BufferedRandomTest(BufferedReaderTest, BufferedWriterTest): |
| 1342 | read_mode = "rb+" |
| 1343 | write_mode = "wb+" |
| 1344 | |
| 1345 | def test_constructor(self): |
| 1346 | BufferedReaderTest.test_constructor(self) |
| 1347 | BufferedWriterTest.test_constructor(self) |
| 1348 | |
| 1349 | def test_read_and_write(self): |
| 1350 | raw = self.MockRawIO((b"asdf", b"ghjk")) |
Benjamin Peterson | 59406a9 | 2009-03-26 17:10:29 +0000 | [diff] [blame] | 1351 | rw = self.tp(raw, 8) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1352 | |
| 1353 | self.assertEqual(b"as", rw.read(2)) |
| 1354 | rw.write(b"ddd") |
| 1355 | rw.write(b"eee") |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 1356 | self.assertFalse(raw._write_stack) # Buffer writes |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1357 | self.assertEqual(b"ghjk", rw.read()) |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 1358 | self.assertEquals(b"dddeee", raw._write_stack[0]) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1359 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1360 | def test_seek_and_tell(self): |
| 1361 | raw = self.BytesIO(b"asdfghjkl") |
| 1362 | rw = self.tp(raw) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1363 | |
| 1364 | self.assertEquals(b"as", rw.read(2)) |
| 1365 | self.assertEquals(2, rw.tell()) |
| 1366 | rw.seek(0, 0) |
| 1367 | self.assertEquals(b"asdf", rw.read(4)) |
| 1368 | |
| 1369 | rw.write(b"asdf") |
| 1370 | rw.seek(0, 0) |
| 1371 | self.assertEquals(b"asdfasdfl", rw.read()) |
| 1372 | self.assertEquals(9, rw.tell()) |
| 1373 | rw.seek(-4, 2) |
| 1374 | self.assertEquals(5, rw.tell()) |
| 1375 | rw.seek(2, 1) |
| 1376 | self.assertEquals(7, rw.tell()) |
| 1377 | self.assertEquals(b"fl", rw.read(11)) |
Christian Heimes | 8e42a0a | 2007-11-08 18:04:45 +0000 | [diff] [blame] | 1378 | self.assertRaises(TypeError, rw.seek, 0.0) |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 1379 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1380 | def check_flush_and_read(self, read_func): |
| 1381 | raw = self.BytesIO(b"abcdefghi") |
| 1382 | bufio = self.tp(raw) |
| 1383 | |
| 1384 | self.assertEquals(b"ab", read_func(bufio, 2)) |
| 1385 | bufio.write(b"12") |
| 1386 | self.assertEquals(b"ef", read_func(bufio, 2)) |
| 1387 | self.assertEquals(6, bufio.tell()) |
| 1388 | bufio.flush() |
| 1389 | self.assertEquals(6, bufio.tell()) |
| 1390 | self.assertEquals(b"ghi", read_func(bufio)) |
| 1391 | raw.seek(0, 0) |
| 1392 | raw.write(b"XYZ") |
| 1393 | # flush() resets the read buffer |
| 1394 | bufio.flush() |
| 1395 | bufio.seek(0, 0) |
| 1396 | self.assertEquals(b"XYZ", read_func(bufio, 3)) |
| 1397 | |
| 1398 | def test_flush_and_read(self): |
| 1399 | self.check_flush_and_read(lambda bufio, *args: bufio.read(*args)) |
| 1400 | |
| 1401 | def test_flush_and_readinto(self): |
| 1402 | def _readinto(bufio, n=-1): |
| 1403 | b = bytearray(n if n >= 0 else 9999) |
| 1404 | n = bufio.readinto(b) |
| 1405 | return bytes(b[:n]) |
| 1406 | self.check_flush_and_read(_readinto) |
| 1407 | |
| 1408 | def test_flush_and_peek(self): |
| 1409 | def _peek(bufio, n=-1): |
| 1410 | # This relies on the fact that the buffer can contain the whole |
| 1411 | # raw stream, otherwise peek() can return less. |
| 1412 | b = bufio.peek(n) |
| 1413 | if n != -1: |
| 1414 | b = b[:n] |
| 1415 | bufio.seek(len(b), 1) |
| 1416 | return b |
| 1417 | self.check_flush_and_read(_peek) |
| 1418 | |
| 1419 | def test_flush_and_write(self): |
| 1420 | raw = self.BytesIO(b"abcdefghi") |
| 1421 | bufio = self.tp(raw) |
| 1422 | |
| 1423 | bufio.write(b"123") |
| 1424 | bufio.flush() |
| 1425 | bufio.write(b"45") |
| 1426 | bufio.flush() |
| 1427 | bufio.seek(0, 0) |
| 1428 | self.assertEquals(b"12345fghi", raw.getvalue()) |
| 1429 | self.assertEquals(b"12345fghi", bufio.read()) |
| 1430 | |
| 1431 | def test_threads(self): |
| 1432 | BufferedReaderTest.test_threads(self) |
| 1433 | BufferedWriterTest.test_threads(self) |
| 1434 | |
| 1435 | def test_writes_and_peek(self): |
| 1436 | def _peek(bufio): |
| 1437 | bufio.peek(1) |
| 1438 | self.check_writes(_peek) |
| 1439 | def _peek(bufio): |
| 1440 | pos = bufio.tell() |
| 1441 | bufio.seek(-1, 1) |
| 1442 | bufio.peek(1) |
| 1443 | bufio.seek(pos, 0) |
| 1444 | self.check_writes(_peek) |
| 1445 | |
| 1446 | def test_writes_and_reads(self): |
| 1447 | def _read(bufio): |
| 1448 | bufio.seek(-1, 1) |
| 1449 | bufio.read(1) |
| 1450 | self.check_writes(_read) |
| 1451 | |
| 1452 | def test_writes_and_read1s(self): |
| 1453 | def _read1(bufio): |
| 1454 | bufio.seek(-1, 1) |
| 1455 | bufio.read1(1) |
| 1456 | self.check_writes(_read1) |
| 1457 | |
| 1458 | def test_writes_and_readintos(self): |
| 1459 | def _read(bufio): |
| 1460 | bufio.seek(-1, 1) |
| 1461 | bufio.readinto(bytearray(1)) |
| 1462 | self.check_writes(_read) |
| 1463 | |
Antoine Pitrou | a0ceb73 | 2009-08-06 20:29:56 +0000 | [diff] [blame] | 1464 | def test_write_after_readahead(self): |
| 1465 | # Issue #6629: writing after the buffer was filled by readahead should |
| 1466 | # first rewind the raw stream. |
| 1467 | for overwrite_size in [1, 5]: |
| 1468 | raw = self.BytesIO(b"A" * 10) |
| 1469 | bufio = self.tp(raw, 4) |
| 1470 | # Trigger readahead |
| 1471 | self.assertEqual(bufio.read(1), b"A") |
| 1472 | self.assertEqual(bufio.tell(), 1) |
| 1473 | # Overwriting should rewind the raw stream if it needs so |
| 1474 | bufio.write(b"B" * overwrite_size) |
| 1475 | self.assertEqual(bufio.tell(), overwrite_size + 1) |
| 1476 | # If the write size was smaller than the buffer size, flush() and |
| 1477 | # check that rewind happens. |
| 1478 | bufio.flush() |
| 1479 | self.assertEqual(bufio.tell(), overwrite_size + 1) |
| 1480 | s = raw.getvalue() |
| 1481 | self.assertEqual(s, |
| 1482 | b"A" + b"B" * overwrite_size + b"A" * (9 - overwrite_size)) |
| 1483 | |
Antoine Pitrou | 905a2ff | 2010-01-31 22:47:27 +0000 | [diff] [blame] | 1484 | def test_truncate_after_read_or_write(self): |
| 1485 | raw = self.BytesIO(b"A" * 10) |
| 1486 | bufio = self.tp(raw, 100) |
| 1487 | self.assertEqual(bufio.read(2), b"AA") # the read buffer gets filled |
| 1488 | self.assertEqual(bufio.truncate(), 2) |
| 1489 | self.assertEqual(bufio.write(b"BB"), 2) # the write buffer increases |
| 1490 | self.assertEqual(bufio.truncate(), 4) |
| 1491 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1492 | def test_misbehaved_io(self): |
| 1493 | BufferedReaderTest.test_misbehaved_io(self) |
| 1494 | BufferedWriterTest.test_misbehaved_io(self) |
| 1495 | |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 1496 | # You can't construct a BufferedRandom over a non-seekable stream. |
| 1497 | test_unseekable = None |
| 1498 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1499 | class CBufferedRandomTest(BufferedRandomTest): |
| 1500 | tp = io.BufferedRandom |
| 1501 | |
| 1502 | def test_constructor(self): |
| 1503 | BufferedRandomTest.test_constructor(self) |
| 1504 | # The allocation can succeed on 32-bit builds, e.g. with more |
| 1505 | # than 2GB RAM and a 64-bit kernel. |
| 1506 | if sys.maxsize > 0x7FFFFFFF: |
| 1507 | rawio = self.MockRawIO() |
| 1508 | bufio = self.tp(rawio) |
| 1509 | self.assertRaises((OverflowError, MemoryError, ValueError), |
| 1510 | bufio.__init__, rawio, sys.maxsize) |
| 1511 | |
| 1512 | def test_garbage_collection(self): |
| 1513 | CBufferedReaderTest.test_garbage_collection(self) |
| 1514 | CBufferedWriterTest.test_garbage_collection(self) |
| 1515 | |
| 1516 | class PyBufferedRandomTest(BufferedRandomTest): |
| 1517 | tp = pyio.BufferedRandom |
| 1518 | |
| 1519 | |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1520 | # To fully exercise seek/tell, the StatefulIncrementalDecoder has these |
| 1521 | # properties: |
| 1522 | # - A single output character can correspond to many bytes of input. |
| 1523 | # - The number of input bytes to complete the character can be |
| 1524 | # undetermined until the last input byte is received. |
| 1525 | # - The number of input bytes can vary depending on previous input. |
| 1526 | # - A single input byte can correspond to many characters of output. |
| 1527 | # - The number of output characters can be undetermined until the |
| 1528 | # last input byte is received. |
| 1529 | # - The number of output characters can vary depending on previous input. |
| 1530 | |
| 1531 | class StatefulIncrementalDecoder(codecs.IncrementalDecoder): |
| 1532 | """ |
| 1533 | For testing seek/tell behavior with a stateful, buffering decoder. |
| 1534 | |
| 1535 | Input is a sequence of words. Words may be fixed-length (length set |
| 1536 | by input) or variable-length (period-terminated). In variable-length |
| 1537 | mode, extra periods are ignored. Possible words are: |
| 1538 | - 'i' followed by a number sets the input length, I (maximum 99). |
| 1539 | When I is set to 0, words are space-terminated. |
| 1540 | - 'o' followed by a number sets the output length, O (maximum 99). |
| 1541 | - Any other word is converted into a word followed by a period on |
| 1542 | the output. The output word consists of the input word truncated |
| 1543 | or padded out with hyphens to make its length equal to O. If O |
| 1544 | is 0, the word is output verbatim without truncating or padding. |
| 1545 | I and O are initially set to 1. When I changes, any buffered input is |
| 1546 | re-scanned according to the new I. EOF also terminates the last word. |
| 1547 | """ |
| 1548 | |
| 1549 | def __init__(self, errors='strict'): |
Christian Heimes | ab56887 | 2008-03-23 02:11:13 +0000 | [diff] [blame] | 1550 | codecs.IncrementalDecoder.__init__(self, errors) |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1551 | self.reset() |
| 1552 | |
| 1553 | def __repr__(self): |
| 1554 | return '<SID %x>' % id(self) |
| 1555 | |
| 1556 | def reset(self): |
| 1557 | self.i = 1 |
| 1558 | self.o = 1 |
| 1559 | self.buffer = bytearray() |
| 1560 | |
| 1561 | def getstate(self): |
| 1562 | i, o = self.i ^ 1, self.o ^ 1 # so that flags = 0 after reset() |
| 1563 | return bytes(self.buffer), i*100 + o |
| 1564 | |
| 1565 | def setstate(self, state): |
| 1566 | buffer, io = state |
| 1567 | self.buffer = bytearray(buffer) |
| 1568 | i, o = divmod(io, 100) |
| 1569 | self.i, self.o = i ^ 1, o ^ 1 |
| 1570 | |
| 1571 | def decode(self, input, final=False): |
| 1572 | output = '' |
| 1573 | for b in input: |
| 1574 | if self.i == 0: # variable-length, terminated with period |
| 1575 | if b == ord('.'): |
| 1576 | if self.buffer: |
| 1577 | output += self.process_word() |
| 1578 | else: |
| 1579 | self.buffer.append(b) |
| 1580 | else: # fixed-length, terminate after self.i bytes |
| 1581 | self.buffer.append(b) |
| 1582 | if len(self.buffer) == self.i: |
| 1583 | output += self.process_word() |
| 1584 | if final and self.buffer: # EOF terminates the last word |
| 1585 | output += self.process_word() |
| 1586 | return output |
| 1587 | |
| 1588 | def process_word(self): |
| 1589 | output = '' |
| 1590 | if self.buffer[0] == ord('i'): |
| 1591 | self.i = min(99, int(self.buffer[1:] or 0)) # set input length |
| 1592 | elif self.buffer[0] == ord('o'): |
| 1593 | self.o = min(99, int(self.buffer[1:] or 0)) # set output length |
| 1594 | else: |
| 1595 | output = self.buffer.decode('ascii') |
| 1596 | if len(output) < self.o: |
| 1597 | output += '-'*self.o # pad out with hyphens |
| 1598 | if self.o: |
| 1599 | output = output[:self.o] # truncate to output length |
| 1600 | output += '.' |
| 1601 | self.buffer = bytearray() |
| 1602 | return output |
| 1603 | |
Benjamin Peterson | ad9d48d | 2008-04-02 21:49:44 +0000 | [diff] [blame] | 1604 | codecEnabled = False |
| 1605 | |
| 1606 | @classmethod |
| 1607 | def lookupTestDecoder(cls, name): |
| 1608 | if cls.codecEnabled and name == 'test_decoder': |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 1609 | latin1 = codecs.lookup('latin-1') |
Benjamin Peterson | ad9d48d | 2008-04-02 21:49:44 +0000 | [diff] [blame] | 1610 | return codecs.CodecInfo( |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 1611 | name='test_decoder', encode=latin1.encode, decode=None, |
Benjamin Peterson | ad9d48d | 2008-04-02 21:49:44 +0000 | [diff] [blame] | 1612 | incrementalencoder=None, |
| 1613 | streamreader=None, streamwriter=None, |
| 1614 | incrementaldecoder=cls) |
| 1615 | |
| 1616 | # Register the previous decoder for testing. |
| 1617 | # Disabled by default, tests will enable it. |
| 1618 | codecs.register(StatefulIncrementalDecoder.lookupTestDecoder) |
| 1619 | |
| 1620 | |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1621 | class StatefulIncrementalDecoderTest(unittest.TestCase): |
| 1622 | """ |
| 1623 | Make sure the StatefulIncrementalDecoder actually works. |
| 1624 | """ |
| 1625 | |
| 1626 | test_cases = [ |
Ka-Ping Yee | d24a5b6 | 2008-03-20 10:51:27 +0000 | [diff] [blame] | 1627 | # I=1, O=1 (fixed-length input == fixed-length output) |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1628 | (b'abcd', False, 'a.b.c.d.'), |
Ka-Ping Yee | d24a5b6 | 2008-03-20 10:51:27 +0000 | [diff] [blame] | 1629 | # I=0, O=0 (variable-length input, variable-length output) |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1630 | (b'oiabcd', True, 'abcd.'), |
Ka-Ping Yee | d24a5b6 | 2008-03-20 10:51:27 +0000 | [diff] [blame] | 1631 | # I=0, O=0 (should ignore extra periods) |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1632 | (b'oi...abcd...', True, 'abcd.'), |
Ka-Ping Yee | d24a5b6 | 2008-03-20 10:51:27 +0000 | [diff] [blame] | 1633 | # I=0, O=6 (variable-length input, fixed-length output) |
| 1634 | (b'i.o6.x.xyz.toolongtofit.', False, 'x-----.xyz---.toolon.'), |
| 1635 | # I=2, O=6 (fixed-length input < fixed-length output) |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1636 | (b'i.i2.o6xyz', True, 'xy----.z-----.'), |
Ka-Ping Yee | d24a5b6 | 2008-03-20 10:51:27 +0000 | [diff] [blame] | 1637 | # I=6, O=3 (fixed-length input > fixed-length output) |
| 1638 | (b'i.o3.i6.abcdefghijklmnop', True, 'abc.ghi.mno.'), |
| 1639 | # I=0, then 3; O=29, then 15 (with longer output) |
| 1640 | (b'i.o29.a.b.cde.o15.abcdefghijabcdefghij.i3.a.b.c.d.ei00k.l.m', True, |
| 1641 | 'a----------------------------.' + |
| 1642 | 'b----------------------------.' + |
| 1643 | 'cde--------------------------.' + |
| 1644 | 'abcdefghijabcde.' + |
| 1645 | 'a.b------------.' + |
| 1646 | '.c.------------.' + |
| 1647 | 'd.e------------.' + |
| 1648 | 'k--------------.' + |
| 1649 | 'l--------------.' + |
| 1650 | 'm--------------.') |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1651 | ] |
| 1652 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1653 | def test_decoder(self): |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 1654 | # Try a few one-shot test cases. |
| 1655 | for input, eof, output in self.test_cases: |
| 1656 | d = StatefulIncrementalDecoder() |
| 1657 | self.assertEquals(d.decode(input, eof), output) |
| 1658 | |
| 1659 | # Also test an unfinished decode, followed by forcing EOF. |
| 1660 | d = StatefulIncrementalDecoder() |
| 1661 | self.assertEquals(d.decode(b'oiabcd'), '') |
| 1662 | self.assertEquals(d.decode(b'', 1), 'abcd.') |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1663 | |
| 1664 | class TextIOWrapperTest(unittest.TestCase): |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1665 | |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 1666 | def setUp(self): |
| 1667 | self.testdata = b"AAA\r\nBBB\rCCC\r\nDDD\nEEE\r\n" |
| 1668 | self.normalized = b"AAA\nBBB\nCCC\nDDD\nEEE\n".decode("ascii") |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 1669 | support.unlink(support.TESTFN) |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 1670 | |
Guido van Rossum | d071281 | 2007-04-11 16:32:43 +0000 | [diff] [blame] | 1671 | def tearDown(self): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 1672 | support.unlink(support.TESTFN) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1673 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1674 | def test_constructor(self): |
| 1675 | r = self.BytesIO(b"\xc3\xa9\n\n") |
| 1676 | b = self.BufferedReader(r, 1000) |
| 1677 | t = self.TextIOWrapper(b) |
| 1678 | t.__init__(b, encoding="latin1", newline="\r\n") |
| 1679 | self.assertEquals(t.encoding, "latin1") |
| 1680 | self.assertEquals(t.line_buffering, False) |
| 1681 | t.__init__(b, encoding="utf8", line_buffering=True) |
| 1682 | self.assertEquals(t.encoding, "utf8") |
| 1683 | self.assertEquals(t.line_buffering, True) |
| 1684 | self.assertEquals("\xe9\n", t.readline()) |
| 1685 | self.assertRaises(TypeError, t.__init__, b, newline=42) |
| 1686 | self.assertRaises(ValueError, t.__init__, b, newline='xyzzy') |
| 1687 | |
Benjamin Peterson | d2e0c79 | 2009-05-01 20:40:59 +0000 | [diff] [blame] | 1688 | def test_detach(self): |
| 1689 | r = self.BytesIO() |
| 1690 | b = self.BufferedWriter(r) |
| 1691 | t = self.TextIOWrapper(b) |
| 1692 | self.assertIs(t.detach(), b) |
| 1693 | |
| 1694 | t = self.TextIOWrapper(b, encoding="ascii") |
| 1695 | t.write("howdy") |
| 1696 | self.assertFalse(r.getvalue()) |
| 1697 | t.detach() |
| 1698 | self.assertEqual(r.getvalue(), b"howdy") |
| 1699 | self.assertRaises(ValueError, t.detach) |
| 1700 | |
Benjamin Peterson | c4c0eae | 2009-03-09 00:07:03 +0000 | [diff] [blame] | 1701 | def test_repr(self): |
| 1702 | raw = self.BytesIO("hello".encode("utf-8")) |
| 1703 | b = self.BufferedReader(raw) |
| 1704 | t = self.TextIOWrapper(b, encoding="utf-8") |
Antoine Pitrou | 716c444 | 2009-05-23 19:04:03 +0000 | [diff] [blame] | 1705 | modname = self.TextIOWrapper.__module__ |
| 1706 | self.assertEqual(repr(t), |
| 1707 | "<%s.TextIOWrapper encoding='utf-8'>" % modname) |
| 1708 | raw.name = "dummy" |
| 1709 | self.assertEqual(repr(t), |
| 1710 | "<%s.TextIOWrapper name='dummy' encoding='utf-8'>" % modname) |
| 1711 | raw.name = b"dummy" |
| 1712 | self.assertEqual(repr(t), |
| 1713 | "<%s.TextIOWrapper name=b'dummy' encoding='utf-8'>" % modname) |
Benjamin Peterson | c4c0eae | 2009-03-09 00:07:03 +0000 | [diff] [blame] | 1714 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1715 | def test_line_buffering(self): |
| 1716 | r = self.BytesIO() |
| 1717 | b = self.BufferedWriter(r, 1000) |
| 1718 | t = self.TextIOWrapper(b, newline="\n", line_buffering=True) |
Guido van Rossum | f64db9f | 2007-12-06 01:04:26 +0000 | [diff] [blame] | 1719 | t.write("X") |
| 1720 | self.assertEquals(r.getvalue(), b"") # No flush happened |
| 1721 | t.write("Y\nZ") |
| 1722 | self.assertEquals(r.getvalue(), b"XY\nZ") # All got flushed |
| 1723 | t.write("A\rB") |
| 1724 | self.assertEquals(r.getvalue(), b"XY\nZA\rB") |
| 1725 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1726 | def test_encoding(self): |
| 1727 | # Check the encoding attribute is always set, and valid |
| 1728 | b = self.BytesIO() |
| 1729 | t = self.TextIOWrapper(b, encoding="utf8") |
| 1730 | self.assertEqual(t.encoding, "utf8") |
| 1731 | t = self.TextIOWrapper(b) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1732 | self.assertTrue(t.encoding is not None) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1733 | codecs.lookup(t.encoding) |
| 1734 | |
| 1735 | def test_encoding_errors_reading(self): |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1736 | # (1) default |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1737 | b = self.BytesIO(b"abc\n\xff\n") |
| 1738 | t = self.TextIOWrapper(b, encoding="ascii") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1739 | self.assertRaises(UnicodeError, t.read) |
| 1740 | # (2) explicit strict |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1741 | b = self.BytesIO(b"abc\n\xff\n") |
| 1742 | t = self.TextIOWrapper(b, encoding="ascii", errors="strict") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1743 | self.assertRaises(UnicodeError, t.read) |
| 1744 | # (3) ignore |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1745 | b = self.BytesIO(b"abc\n\xff\n") |
| 1746 | t = self.TextIOWrapper(b, encoding="ascii", errors="ignore") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1747 | self.assertEquals(t.read(), "abc\n\n") |
| 1748 | # (4) replace |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1749 | b = self.BytesIO(b"abc\n\xff\n") |
| 1750 | t = self.TextIOWrapper(b, encoding="ascii", errors="replace") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1751 | self.assertEquals(t.read(), "abc\n\ufffd\n") |
| 1752 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1753 | def test_encoding_errors_writing(self): |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1754 | # (1) default |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1755 | b = self.BytesIO() |
| 1756 | t = self.TextIOWrapper(b, encoding="ascii") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1757 | self.assertRaises(UnicodeError, t.write, "\xff") |
| 1758 | # (2) explicit strict |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1759 | b = self.BytesIO() |
| 1760 | t = self.TextIOWrapper(b, encoding="ascii", errors="strict") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1761 | self.assertRaises(UnicodeError, t.write, "\xff") |
| 1762 | # (3) ignore |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1763 | b = self.BytesIO() |
| 1764 | t = self.TextIOWrapper(b, encoding="ascii", errors="ignore", |
Guido van Rossum | f64db9f | 2007-12-06 01:04:26 +0000 | [diff] [blame] | 1765 | newline="\n") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1766 | t.write("abc\xffdef\n") |
| 1767 | t.flush() |
Christian Heimes | ecda261 | 2007-12-05 17:59:44 +0000 | [diff] [blame] | 1768 | self.assertEquals(b.getvalue(), b"abcdef\n") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1769 | # (4) replace |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1770 | b = self.BytesIO() |
| 1771 | t = self.TextIOWrapper(b, encoding="ascii", errors="replace", |
Guido van Rossum | f64db9f | 2007-12-06 01:04:26 +0000 | [diff] [blame] | 1772 | newline="\n") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1773 | t.write("abc\xffdef\n") |
| 1774 | t.flush() |
Christian Heimes | ecda261 | 2007-12-05 17:59:44 +0000 | [diff] [blame] | 1775 | self.assertEquals(b.getvalue(), b"abc?def\n") |
Guido van Rossum | e7fc50f | 2007-12-03 22:54:21 +0000 | [diff] [blame] | 1776 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1777 | def test_newlines(self): |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1778 | input_lines = [ "unix\n", "windows\r\n", "os9\r", "last\n", "nonl" ] |
| 1779 | |
| 1780 | tests = [ |
| 1781 | [ None, [ 'unix\n', 'windows\n', 'os9\n', 'last\n', 'nonl' ] ], |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1782 | [ '', input_lines ], |
| 1783 | [ '\n', [ "unix\n", "windows\r\n", "os9\rlast\n", "nonl" ] ], |
| 1784 | [ '\r\n', [ "unix\nwindows\r\n", "os9\rlast\nnonl" ] ], |
| 1785 | [ '\r', [ "unix\nwindows\r", "\nos9\r", "last\nnonl" ] ], |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1786 | ] |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 1787 | encodings = ( |
| 1788 | 'utf-8', 'latin-1', |
| 1789 | 'utf-16', 'utf-16-le', 'utf-16-be', |
| 1790 | 'utf-32', 'utf-32-le', 'utf-32-be', |
| 1791 | ) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1792 | |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1793 | # Try a range of buffer sizes to test the case where \r is the last |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1794 | # character in TextIOWrapper._pending_line. |
| 1795 | for encoding in encodings: |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1796 | # XXX: str.encode() should return bytes |
| 1797 | data = bytes(''.join(input_lines).encode(encoding)) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1798 | for do_reads in (False, True): |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1799 | for bufsize in range(1, 10): |
| 1800 | for newline, exp_lines in tests: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1801 | bufio = self.BufferedReader(self.BytesIO(data), bufsize) |
| 1802 | textio = self.TextIOWrapper(bufio, newline=newline, |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1803 | encoding=encoding) |
| 1804 | if do_reads: |
| 1805 | got_lines = [] |
| 1806 | while True: |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 1807 | c2 = textio.read(2) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1808 | if c2 == '': |
| 1809 | break |
| 1810 | self.assertEquals(len(c2), 2) |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 1811 | got_lines.append(c2 + textio.readline()) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1812 | else: |
Guido van Rossum | 76c5d4d | 2007-04-06 19:10:29 +0000 | [diff] [blame] | 1813 | got_lines = list(textio) |
Guido van Rossum | 78892e4 | 2007-04-06 17:31:18 +0000 | [diff] [blame] | 1814 | |
| 1815 | for got_line, exp_line in zip(got_lines, exp_lines): |
| 1816 | self.assertEquals(got_line, exp_line) |
| 1817 | self.assertEquals(len(got_lines), len(exp_lines)) |
| 1818 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1819 | def test_newlines_input(self): |
| 1820 | testdata = b"AAA\nBB\x00B\nCCC\rDDD\rEEE\r\nFFF\r\nGGG" |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1821 | normalized = testdata.replace(b"\r\n", b"\n").replace(b"\r", b"\n") |
| 1822 | for newline, expected in [ |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 1823 | (None, normalized.decode("ascii").splitlines(True)), |
| 1824 | ("", testdata.decode("ascii").splitlines(True)), |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1825 | ("\n", ["AAA\n", "BB\x00B\n", "CCC\rDDD\rEEE\r\n", "FFF\r\n", "GGG"]), |
| 1826 | ("\r\n", ["AAA\nBB\x00B\nCCC\rDDD\rEEE\r\n", "FFF\r\n", "GGG"]), |
| 1827 | ("\r", ["AAA\nBB\x00B\nCCC\r", "DDD\r", "EEE\r", "\nFFF\r", "\nGGG"]), |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1828 | ]: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1829 | buf = self.BytesIO(testdata) |
| 1830 | txt = self.TextIOWrapper(buf, encoding="ascii", newline=newline) |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1831 | self.assertEquals(txt.readlines(), expected) |
| 1832 | txt.seek(0) |
| 1833 | self.assertEquals(txt.read(), "".join(expected)) |
| 1834 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1835 | def test_newlines_output(self): |
| 1836 | testdict = { |
| 1837 | "": b"AAA\nBBB\nCCC\nX\rY\r\nZ", |
| 1838 | "\n": b"AAA\nBBB\nCCC\nX\rY\r\nZ", |
| 1839 | "\r": b"AAA\rBBB\rCCC\rX\rY\r\rZ", |
| 1840 | "\r\n": b"AAA\r\nBBB\r\nCCC\r\nX\rY\r\r\nZ", |
| 1841 | } |
| 1842 | tests = [(None, testdict[os.linesep])] + sorted(testdict.items()) |
| 1843 | for newline, expected in tests: |
| 1844 | buf = self.BytesIO() |
| 1845 | txt = self.TextIOWrapper(buf, encoding="ascii", newline=newline) |
| 1846 | txt.write("AAA\nB") |
| 1847 | txt.write("BB\nCCC\n") |
| 1848 | txt.write("X\rY\r\nZ") |
| 1849 | txt.flush() |
| 1850 | self.assertEquals(buf.closed, False) |
| 1851 | self.assertEquals(buf.getvalue(), expected) |
| 1852 | |
| 1853 | def test_destructor(self): |
| 1854 | l = [] |
| 1855 | base = self.BytesIO |
| 1856 | class MyBytesIO(base): |
| 1857 | def close(self): |
| 1858 | l.append(self.getvalue()) |
| 1859 | base.close(self) |
| 1860 | b = MyBytesIO() |
| 1861 | t = self.TextIOWrapper(b, encoding="ascii") |
| 1862 | t.write("abc") |
| 1863 | del t |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 1864 | support.gc_collect() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1865 | self.assertEquals([b"abc"], l) |
| 1866 | |
| 1867 | def test_override_destructor(self): |
| 1868 | record = [] |
| 1869 | class MyTextIO(self.TextIOWrapper): |
| 1870 | def __del__(self): |
| 1871 | record.append(1) |
| 1872 | try: |
| 1873 | f = super().__del__ |
| 1874 | except AttributeError: |
| 1875 | pass |
| 1876 | else: |
| 1877 | f() |
| 1878 | def close(self): |
| 1879 | record.append(2) |
| 1880 | super().close() |
| 1881 | def flush(self): |
| 1882 | record.append(3) |
| 1883 | super().flush() |
| 1884 | b = self.BytesIO() |
| 1885 | t = MyTextIO(b, encoding="ascii") |
| 1886 | del t |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 1887 | support.gc_collect() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1888 | self.assertEqual(record, [1, 2, 3]) |
| 1889 | |
| 1890 | def test_error_through_destructor(self): |
| 1891 | # Test that the exception state is not modified by a destructor, |
| 1892 | # even if close() fails. |
| 1893 | rawio = self.CloseFailureIO() |
| 1894 | def f(): |
| 1895 | self.TextIOWrapper(rawio).xyzzy |
| 1896 | with support.captured_output("stderr") as s: |
| 1897 | self.assertRaises(AttributeError, f) |
| 1898 | s = s.getvalue().strip() |
| 1899 | if s: |
| 1900 | # The destructor *may* have printed an unraisable error, check it |
| 1901 | self.assertEqual(len(s.splitlines()), 1) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1902 | self.assertTrue(s.startswith("Exception IOError: "), s) |
| 1903 | self.assertTrue(s.endswith(" ignored"), s) |
Guido van Rossum | 8358db2 | 2007-08-18 21:39:55 +0000 | [diff] [blame] | 1904 | |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1905 | # Systematic tests of the text I/O API |
| 1906 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1907 | def test_basic_io(self): |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1908 | for chunksize in (1, 2, 3, 4, 5, 15, 16, 17, 31, 32, 33, 63, 64, 65): |
| 1909 | for enc in "ascii", "latin1", "utf8" :# , "utf-16-be", "utf-16-le": |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1910 | f = self.open(support.TESTFN, "w+", encoding=enc) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1911 | f._CHUNK_SIZE = chunksize |
| 1912 | self.assertEquals(f.write("abc"), 3) |
| 1913 | f.close() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1914 | f = self.open(support.TESTFN, "r+", encoding=enc) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1915 | f._CHUNK_SIZE = chunksize |
| 1916 | self.assertEquals(f.tell(), 0) |
| 1917 | self.assertEquals(f.read(), "abc") |
| 1918 | cookie = f.tell() |
| 1919 | self.assertEquals(f.seek(0), 0) |
Benjamin Peterson | bf5ff76 | 2009-12-13 19:25:34 +0000 | [diff] [blame] | 1920 | self.assertEquals(f.read(None), "abc") |
| 1921 | f.seek(0) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1922 | self.assertEquals(f.read(2), "ab") |
| 1923 | self.assertEquals(f.read(1), "c") |
| 1924 | self.assertEquals(f.read(1), "") |
| 1925 | self.assertEquals(f.read(), "") |
| 1926 | self.assertEquals(f.tell(), cookie) |
| 1927 | self.assertEquals(f.seek(0), 0) |
| 1928 | self.assertEquals(f.seek(0, 2), cookie) |
| 1929 | self.assertEquals(f.write("def"), 3) |
| 1930 | self.assertEquals(f.seek(cookie), cookie) |
| 1931 | self.assertEquals(f.read(), "def") |
| 1932 | if enc.startswith("utf"): |
| 1933 | self.multi_line_test(f, enc) |
| 1934 | f.close() |
| 1935 | |
| 1936 | def multi_line_test(self, f, enc): |
| 1937 | f.seek(0) |
| 1938 | f.truncate() |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1939 | sample = "s\xff\u0fff\uffff" |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1940 | wlines = [] |
Guido van Rossum | cba608c | 2007-04-11 14:19:59 +0000 | [diff] [blame] | 1941 | for size in (0, 1, 2, 3, 4, 5, 30, 31, 32, 33, 62, 63, 64, 65, 1000): |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1942 | chars = [] |
Guido van Rossum | 805365e | 2007-05-07 22:24:25 +0000 | [diff] [blame] | 1943 | for i in range(size): |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1944 | chars.append(sample[i % len(sample)]) |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1945 | line = "".join(chars) + "\n" |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1946 | wlines.append((f.tell(), line)) |
| 1947 | f.write(line) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1948 | f.seek(0) |
| 1949 | rlines = [] |
| 1950 | while True: |
| 1951 | pos = f.tell() |
| 1952 | line = f.readline() |
| 1953 | if not line: |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1954 | break |
| 1955 | rlines.append((pos, line)) |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 1956 | self.assertEquals(rlines, wlines) |
| 1957 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1958 | def test_telling(self): |
| 1959 | f = self.open(support.TESTFN, "w+", encoding="utf8") |
Guido van Rossum | b9c4c3e | 2007-04-11 16:07:50 +0000 | [diff] [blame] | 1960 | p0 = f.tell() |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1961 | f.write("\xff\n") |
Guido van Rossum | b9c4c3e | 2007-04-11 16:07:50 +0000 | [diff] [blame] | 1962 | p1 = f.tell() |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1963 | f.write("\xff\n") |
Guido van Rossum | b9c4c3e | 2007-04-11 16:07:50 +0000 | [diff] [blame] | 1964 | p2 = f.tell() |
| 1965 | f.seek(0) |
| 1966 | self.assertEquals(f.tell(), p0) |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1967 | self.assertEquals(f.readline(), "\xff\n") |
Guido van Rossum | b9c4c3e | 2007-04-11 16:07:50 +0000 | [diff] [blame] | 1968 | self.assertEquals(f.tell(), p1) |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1969 | self.assertEquals(f.readline(), "\xff\n") |
Guido van Rossum | b9c4c3e | 2007-04-11 16:07:50 +0000 | [diff] [blame] | 1970 | self.assertEquals(f.tell(), p2) |
| 1971 | f.seek(0) |
| 1972 | for line in f: |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1973 | self.assertEquals(line, "\xff\n") |
Guido van Rossum | b9c4c3e | 2007-04-11 16:07:50 +0000 | [diff] [blame] | 1974 | self.assertRaises(IOError, f.tell) |
| 1975 | self.assertEquals(f.tell(), p2) |
| 1976 | f.close() |
| 1977 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1978 | def test_seeking(self): |
| 1979 | chunk_size = _default_chunk_size() |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 1980 | prefix_size = chunk_size - 2 |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1981 | u_prefix = "a" * prefix_size |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 1982 | prefix = bytes(u_prefix.encode("utf-8")) |
| 1983 | self.assertEquals(len(u_prefix), len(prefix)) |
Guido van Rossum | ef87d6e | 2007-05-02 19:09:54 +0000 | [diff] [blame] | 1984 | u_suffix = "\u8888\n" |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 1985 | suffix = bytes(u_suffix.encode("utf-8")) |
| 1986 | line = prefix + suffix |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1987 | f = self.open(support.TESTFN, "wb") |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 1988 | f.write(line*2) |
| 1989 | f.close() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1990 | f = self.open(support.TESTFN, "r", encoding="utf-8") |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 1991 | s = f.read(prefix_size) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1992 | self.assertEquals(s, str(prefix, "ascii")) |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 1993 | self.assertEquals(f.tell(), prefix_size) |
| 1994 | self.assertEquals(f.readline(), u_suffix) |
| 1995 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1996 | def test_seeking_too(self): |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 1997 | # Regression test for a specific bug |
| 1998 | data = b'\xe0\xbf\xbf\n' |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 1999 | f = self.open(support.TESTFN, "wb") |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 2000 | f.write(data) |
| 2001 | f.close() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2002 | f = self.open(support.TESTFN, "r", encoding="utf-8") |
Guido van Rossum | d76e779 | 2007-04-17 02:38:04 +0000 | [diff] [blame] | 2003 | f._CHUNK_SIZE # Just test that it exists |
| 2004 | f._CHUNK_SIZE = 2 |
| 2005 | f.readline() |
| 2006 | f.tell() |
| 2007 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2008 | def test_seek_and_tell(self): |
| 2009 | #Test seek/tell using the StatefulIncrementalDecoder. |
| 2010 | # Make test faster by doing smaller seeks |
| 2011 | CHUNK_SIZE = 128 |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2012 | |
Benjamin Peterson | 5fd871d | 2009-03-05 00:49:53 +0000 | [diff] [blame] | 2013 | def test_seek_and_tell_with_data(data, min_pos=0): |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2014 | """Tell/seek to various points within a data stream and ensure |
| 2015 | that the decoded data returned by read() is consistent.""" |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2016 | f = self.open(support.TESTFN, 'wb') |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2017 | f.write(data) |
| 2018 | f.close() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2019 | f = self.open(support.TESTFN, encoding='test_decoder') |
| 2020 | f._CHUNK_SIZE = CHUNK_SIZE |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2021 | decoded = f.read() |
| 2022 | f.close() |
| 2023 | |
Neal Norwitz | e2b0705 | 2008-03-18 19:52:05 +0000 | [diff] [blame] | 2024 | for i in range(min_pos, len(decoded) + 1): # seek positions |
| 2025 | for j in [1, 5, len(decoded) - i]: # read lengths |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2026 | f = self.open(support.TESTFN, encoding='test_decoder') |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2027 | self.assertEquals(f.read(i), decoded[:i]) |
| 2028 | cookie = f.tell() |
| 2029 | self.assertEquals(f.read(j), decoded[i:i + j]) |
| 2030 | f.seek(cookie) |
| 2031 | self.assertEquals(f.read(), decoded[i:]) |
| 2032 | f.close() |
| 2033 | |
Benjamin Peterson | ad9d48d | 2008-04-02 21:49:44 +0000 | [diff] [blame] | 2034 | # Enable the test decoder. |
| 2035 | StatefulIncrementalDecoder.codecEnabled = 1 |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2036 | |
| 2037 | # Run the tests. |
| 2038 | try: |
| 2039 | # Try each test case. |
| 2040 | for input, _, _ in StatefulIncrementalDecoderTest.test_cases: |
Benjamin Peterson | 5fd871d | 2009-03-05 00:49:53 +0000 | [diff] [blame] | 2041 | test_seek_and_tell_with_data(input) |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2042 | |
| 2043 | # Position each test case so that it crosses a chunk boundary. |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2044 | for input, _, _ in StatefulIncrementalDecoderTest.test_cases: |
| 2045 | offset = CHUNK_SIZE - len(input)//2 |
| 2046 | prefix = b'.'*offset |
| 2047 | # Don't bother seeking into the prefix (takes too long). |
| 2048 | min_pos = offset*2 |
Benjamin Peterson | 5fd871d | 2009-03-05 00:49:53 +0000 | [diff] [blame] | 2049 | test_seek_and_tell_with_data(prefix + input, min_pos) |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2050 | |
| 2051 | # Ensure our test decoder won't interfere with subsequent tests. |
| 2052 | finally: |
Benjamin Peterson | ad9d48d | 2008-04-02 21:49:44 +0000 | [diff] [blame] | 2053 | StatefulIncrementalDecoder.codecEnabled = 0 |
Ka-Ping Yee | f44c7e8 | 2008-03-18 04:51:32 +0000 | [diff] [blame] | 2054 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2055 | def test_encoded_writes(self): |
Alexandre Vassalotti | a38f73b | 2008-01-07 18:30:48 +0000 | [diff] [blame] | 2056 | data = "1234567890" |
| 2057 | tests = ("utf-16", |
| 2058 | "utf-16-le", |
| 2059 | "utf-16-be", |
| 2060 | "utf-32", |
| 2061 | "utf-32-le", |
| 2062 | "utf-32-be") |
| 2063 | for encoding in tests: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2064 | buf = self.BytesIO() |
| 2065 | f = self.TextIOWrapper(buf, encoding=encoding) |
Alexandre Vassalotti | a38f73b | 2008-01-07 18:30:48 +0000 | [diff] [blame] | 2066 | # Check if the BOM is written only once (see issue1753). |
| 2067 | f.write(data) |
| 2068 | f.write(data) |
| 2069 | f.seek(0) |
| 2070 | self.assertEquals(f.read(), data * 2) |
Benjamin Peterson | 9363a65 | 2009-03-05 00:42:09 +0000 | [diff] [blame] | 2071 | f.seek(0) |
| 2072 | self.assertEquals(f.read(), data * 2) |
Alexandre Vassalotti | a38f73b | 2008-01-07 18:30:48 +0000 | [diff] [blame] | 2073 | self.assertEquals(buf.getvalue(), (data * 2).encode(encoding)) |
| 2074 | |
Benjamin Peterson | a1b4901 | 2009-03-31 23:11:32 +0000 | [diff] [blame] | 2075 | def test_unreadable(self): |
| 2076 | class UnReadable(self.BytesIO): |
| 2077 | def readable(self): |
| 2078 | return False |
| 2079 | txt = self.TextIOWrapper(UnReadable()) |
| 2080 | self.assertRaises(IOError, txt.read) |
| 2081 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2082 | def test_read_one_by_one(self): |
| 2083 | txt = self.TextIOWrapper(self.BytesIO(b"AA\r\nBB")) |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2084 | reads = "" |
| 2085 | while True: |
| 2086 | c = txt.read(1) |
| 2087 | if not c: |
| 2088 | break |
| 2089 | reads += c |
| 2090 | self.assertEquals(reads, "AA\nBB") |
| 2091 | |
Benjamin Peterson | bf5ff76 | 2009-12-13 19:25:34 +0000 | [diff] [blame] | 2092 | def test_readlines(self): |
| 2093 | txt = self.TextIOWrapper(self.BytesIO(b"AA\nBB\nCC")) |
| 2094 | self.assertEqual(txt.readlines(), ["AA\n", "BB\n", "CC"]) |
| 2095 | txt.seek(0) |
| 2096 | self.assertEqual(txt.readlines(None), ["AA\n", "BB\n", "CC"]) |
| 2097 | txt.seek(0) |
| 2098 | self.assertEqual(txt.readlines(5), ["AA\n", "BB\n"]) |
| 2099 | |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2100 | # read in amounts equal to TextIOWrapper._CHUNK_SIZE which is 128. |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2101 | def test_read_by_chunk(self): |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2102 | # make sure "\r\n" straddles 128 char boundary. |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2103 | txt = self.TextIOWrapper(self.BytesIO(b"A" * 127 + b"\r\nB")) |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2104 | reads = "" |
| 2105 | while True: |
| 2106 | c = txt.read(128) |
| 2107 | if not c: |
| 2108 | break |
| 2109 | reads += c |
| 2110 | self.assertEquals(reads, "A"*127+"\nB") |
| 2111 | |
| 2112 | def test_issue1395_1(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2113 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2114 | |
| 2115 | # read one char at a time |
| 2116 | reads = "" |
| 2117 | while True: |
| 2118 | c = txt.read(1) |
| 2119 | if not c: |
| 2120 | break |
| 2121 | reads += c |
| 2122 | self.assertEquals(reads, self.normalized) |
| 2123 | |
| 2124 | def test_issue1395_2(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2125 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2126 | txt._CHUNK_SIZE = 4 |
| 2127 | |
| 2128 | reads = "" |
| 2129 | while True: |
| 2130 | c = txt.read(4) |
| 2131 | if not c: |
| 2132 | break |
| 2133 | reads += c |
| 2134 | self.assertEquals(reads, self.normalized) |
| 2135 | |
| 2136 | def test_issue1395_3(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2137 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2138 | txt._CHUNK_SIZE = 4 |
| 2139 | |
| 2140 | reads = txt.read(4) |
| 2141 | reads += txt.read(4) |
| 2142 | reads += txt.readline() |
| 2143 | reads += txt.readline() |
| 2144 | reads += txt.readline() |
| 2145 | self.assertEquals(reads, self.normalized) |
| 2146 | |
| 2147 | def test_issue1395_4(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2148 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2149 | txt._CHUNK_SIZE = 4 |
| 2150 | |
| 2151 | reads = txt.read(4) |
| 2152 | reads += txt.read() |
| 2153 | self.assertEquals(reads, self.normalized) |
| 2154 | |
| 2155 | def test_issue1395_5(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2156 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2157 | txt._CHUNK_SIZE = 4 |
| 2158 | |
| 2159 | reads = txt.read(4) |
| 2160 | pos = txt.tell() |
| 2161 | txt.seek(0) |
| 2162 | txt.seek(pos) |
| 2163 | self.assertEquals(txt.read(4), "BBB\n") |
| 2164 | |
Ka-Ping Yee | ddaa706 | 2008-03-17 20:35:15 +0000 | [diff] [blame] | 2165 | def test_issue2282(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2166 | buffer = self.BytesIO(self.testdata) |
| 2167 | txt = self.TextIOWrapper(buffer, encoding="ascii") |
Ka-Ping Yee | ddaa706 | 2008-03-17 20:35:15 +0000 | [diff] [blame] | 2168 | |
| 2169 | self.assertEqual(buffer.seekable(), txt.seekable()) |
| 2170 | |
Antoine Pitrou | e450185 | 2009-05-14 18:55:55 +0000 | [diff] [blame] | 2171 | def test_append_bom(self): |
| 2172 | # The BOM is not written again when appending to a non-empty file |
| 2173 | filename = support.TESTFN |
| 2174 | for charset in ('utf-8-sig', 'utf-16', 'utf-32'): |
| 2175 | with self.open(filename, 'w', encoding=charset) as f: |
| 2176 | f.write('aaa') |
| 2177 | pos = f.tell() |
| 2178 | with self.open(filename, 'rb') as f: |
| 2179 | self.assertEquals(f.read(), 'aaa'.encode(charset)) |
| 2180 | |
| 2181 | with self.open(filename, 'a', encoding=charset) as f: |
| 2182 | f.write('xxx') |
| 2183 | with self.open(filename, 'rb') as f: |
| 2184 | self.assertEquals(f.read(), 'aaaxxx'.encode(charset)) |
| 2185 | |
| 2186 | def test_seek_bom(self): |
| 2187 | # Same test, but when seeking manually |
| 2188 | filename = support.TESTFN |
| 2189 | for charset in ('utf-8-sig', 'utf-16', 'utf-32'): |
| 2190 | with self.open(filename, 'w', encoding=charset) as f: |
| 2191 | f.write('aaa') |
| 2192 | pos = f.tell() |
| 2193 | with self.open(filename, 'r+', encoding=charset) as f: |
| 2194 | f.seek(pos) |
| 2195 | f.write('zzz') |
| 2196 | f.seek(0) |
| 2197 | f.write('bbb') |
| 2198 | with self.open(filename, 'rb') as f: |
| 2199 | self.assertEquals(f.read(), 'bbbzzz'.encode(charset)) |
| 2200 | |
Benjamin Peterson | 0926ad1 | 2009-06-06 18:02:12 +0000 | [diff] [blame] | 2201 | def test_errors_property(self): |
| 2202 | with self.open(support.TESTFN, "w") as f: |
| 2203 | self.assertEqual(f.errors, "strict") |
| 2204 | with self.open(support.TESTFN, "w", errors="replace") as f: |
| 2205 | self.assertEqual(f.errors, "replace") |
| 2206 | |
Victor Stinner | 45df820 | 2010-04-28 22:31:17 +0000 | [diff] [blame] | 2207 | @unittest.skipUnless(threading, 'Threading required for this test.') |
Amaury Forgeot d'Arc | ccd686a | 2009-08-29 23:00:38 +0000 | [diff] [blame] | 2208 | def test_threads_write(self): |
| 2209 | # Issue6750: concurrent writes could duplicate data |
| 2210 | event = threading.Event() |
| 2211 | with self.open(support.TESTFN, "w", buffering=1) as f: |
| 2212 | def run(n): |
| 2213 | text = "Thread%03d\n" % n |
| 2214 | event.wait() |
| 2215 | f.write(text) |
| 2216 | threads = [threading.Thread(target=lambda n=x: run(n)) |
| 2217 | for x in range(20)] |
| 2218 | for t in threads: |
| 2219 | t.start() |
| 2220 | time.sleep(0.02) |
| 2221 | event.set() |
| 2222 | for t in threads: |
| 2223 | t.join() |
| 2224 | with self.open(support.TESTFN) as f: |
| 2225 | content = f.read() |
| 2226 | for n in range(20): |
| 2227 | self.assertEquals(content.count("Thread%03d\n" % n), 1) |
| 2228 | |
Antoine Pitrou | 6be8876 | 2010-05-03 16:48:20 +0000 | [diff] [blame] | 2229 | def test_flush_error_on_close(self): |
| 2230 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
| 2231 | def bad_flush(): |
| 2232 | raise IOError() |
| 2233 | txt.flush = bad_flush |
| 2234 | self.assertRaises(IOError, txt.close) # exception not swallowed |
| 2235 | |
| 2236 | def test_multi_close(self): |
| 2237 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
| 2238 | txt.close() |
| 2239 | txt.close() |
| 2240 | txt.close() |
| 2241 | self.assertRaises(ValueError, txt.flush) |
| 2242 | |
Antoine Pitrou | 0d739d7 | 2010-09-05 23:01:12 +0000 | [diff] [blame] | 2243 | def test_unseekable(self): |
| 2244 | txt = self.TextIOWrapper(self.MockUnseekableIO(self.testdata)) |
| 2245 | self.assertRaises(self.UnsupportedOperation, txt.tell) |
| 2246 | self.assertRaises(self.UnsupportedOperation, txt.seek, 0) |
| 2247 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2248 | class CTextIOWrapperTest(TextIOWrapperTest): |
| 2249 | |
| 2250 | def test_initialization(self): |
| 2251 | r = self.BytesIO(b"\xc3\xa9\n\n") |
| 2252 | b = self.BufferedReader(r, 1000) |
| 2253 | t = self.TextIOWrapper(b) |
| 2254 | self.assertRaises(TypeError, t.__init__, b, newline=42) |
| 2255 | self.assertRaises(ValueError, t.read) |
| 2256 | self.assertRaises(ValueError, t.__init__, b, newline='xyzzy') |
| 2257 | self.assertRaises(ValueError, t.read) |
| 2258 | |
| 2259 | def test_garbage_collection(self): |
| 2260 | # C TextIOWrapper objects are collected, and collecting them flushes |
| 2261 | # all data to disk. |
| 2262 | # The Python version has __del__, so it ends in gc.garbage instead. |
| 2263 | rawio = io.FileIO(support.TESTFN, "wb") |
| 2264 | b = self.BufferedWriter(rawio) |
| 2265 | t = self.TextIOWrapper(b, encoding="ascii") |
| 2266 | t.write("456def") |
| 2267 | t.x = t |
| 2268 | wr = weakref.ref(t) |
| 2269 | del t |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 2270 | support.gc_collect() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 2271 | self.assertTrue(wr() is None, wr) |
Hirokazu Yamamoto | c7d6aa4 | 2009-06-18 00:07:14 +0000 | [diff] [blame] | 2272 | with self.open(support.TESTFN, "rb") as f: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2273 | self.assertEqual(f.read(), b"456def") |
| 2274 | |
| 2275 | class PyTextIOWrapperTest(TextIOWrapperTest): |
| 2276 | pass |
| 2277 | |
| 2278 | |
| 2279 | class IncrementalNewlineDecoderTest(unittest.TestCase): |
| 2280 | |
| 2281 | def check_newline_decoding_utf8(self, decoder): |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2282 | # UTF-8 specific tests for a newline decoder |
| 2283 | def _check_decode(b, s, **kwargs): |
| 2284 | # We exercise getstate() / setstate() as well as decode() |
| 2285 | state = decoder.getstate() |
| 2286 | self.assertEquals(decoder.decode(b, **kwargs), s) |
| 2287 | decoder.setstate(state) |
| 2288 | self.assertEquals(decoder.decode(b, **kwargs), s) |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2289 | |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2290 | _check_decode(b'\xe8\xa2\x88', "\u8888") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2291 | |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2292 | _check_decode(b'\xe8', "") |
| 2293 | _check_decode(b'\xa2', "") |
| 2294 | _check_decode(b'\x88', "\u8888") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2295 | |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2296 | _check_decode(b'\xe8', "") |
| 2297 | _check_decode(b'\xa2', "") |
| 2298 | _check_decode(b'\x88', "\u8888") |
| 2299 | |
| 2300 | _check_decode(b'\xe8', "") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2301 | self.assertRaises(UnicodeDecodeError, decoder.decode, b'', final=True) |
| 2302 | |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2303 | decoder.reset() |
| 2304 | _check_decode(b'\n', "\n") |
| 2305 | _check_decode(b'\r', "") |
| 2306 | _check_decode(b'', "\n", final=True) |
| 2307 | _check_decode(b'\r', "\n", final=True) |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2308 | |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2309 | _check_decode(b'\r', "") |
| 2310 | _check_decode(b'a', "\na") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2311 | |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2312 | _check_decode(b'\r\r\n', "\n\n") |
| 2313 | _check_decode(b'\r', "") |
| 2314 | _check_decode(b'\r', "\n") |
| 2315 | _check_decode(b'\na', "\na") |
Amaury Forgeot d'Arc | 1ff9910 | 2007-11-19 20:34:10 +0000 | [diff] [blame] | 2316 | |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2317 | _check_decode(b'\xe8\xa2\x88\r\n', "\u8888\n") |
| 2318 | _check_decode(b'\xe8\xa2\x88', "\u8888") |
| 2319 | _check_decode(b'\n', "\n") |
| 2320 | _check_decode(b'\xe8\xa2\x88\r', "\u8888") |
| 2321 | _check_decode(b'\n', "\n") |
Guido van Rossum | 9b76da6 | 2007-04-11 01:09:03 +0000 | [diff] [blame] | 2322 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2323 | def check_newline_decoding(self, decoder, encoding): |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2324 | result = [] |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2325 | if encoding is not None: |
| 2326 | encoder = codecs.getincrementalencoder(encoding)() |
| 2327 | def _decode_bytewise(s): |
| 2328 | # Decode one byte at a time |
| 2329 | for b in encoder.encode(s): |
| 2330 | result.append(decoder.decode(bytes([b]))) |
| 2331 | else: |
| 2332 | encoder = None |
| 2333 | def _decode_bytewise(s): |
| 2334 | # Decode one char at a time |
| 2335 | for c in s: |
| 2336 | result.append(decoder.decode(c)) |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2337 | self.assertEquals(decoder.newlines, None) |
| 2338 | _decode_bytewise("abc\n\r") |
| 2339 | self.assertEquals(decoder.newlines, '\n') |
| 2340 | _decode_bytewise("\nabc") |
| 2341 | self.assertEquals(decoder.newlines, ('\n', '\r\n')) |
| 2342 | _decode_bytewise("abc\r") |
| 2343 | self.assertEquals(decoder.newlines, ('\n', '\r\n')) |
| 2344 | _decode_bytewise("abc") |
| 2345 | self.assertEquals(decoder.newlines, ('\r', '\n', '\r\n')) |
| 2346 | _decode_bytewise("abc\r") |
| 2347 | self.assertEquals("".join(result), "abc\n\nabcabc\nabcabc") |
| 2348 | decoder.reset() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2349 | input = "abc" |
| 2350 | if encoder is not None: |
| 2351 | encoder.reset() |
| 2352 | input = encoder.encode(input) |
| 2353 | self.assertEquals(decoder.decode(input), "abc") |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2354 | self.assertEquals(decoder.newlines, None) |
| 2355 | |
| 2356 | def test_newline_decoder(self): |
| 2357 | encodings = ( |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2358 | # None meaning the IncrementalNewlineDecoder takes unicode input |
| 2359 | # rather than bytes input |
| 2360 | None, 'utf-8', 'latin-1', |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2361 | 'utf-16', 'utf-16-le', 'utf-16-be', |
| 2362 | 'utf-32', 'utf-32-le', 'utf-32-be', |
| 2363 | ) |
| 2364 | for enc in encodings: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2365 | decoder = enc and codecs.getincrementaldecoder(enc)() |
| 2366 | decoder = self.IncrementalNewlineDecoder(decoder, translate=True) |
| 2367 | self.check_newline_decoding(decoder, enc) |
Alexandre Vassalotti | 472f07d | 2008-01-06 00:34:32 +0000 | [diff] [blame] | 2368 | decoder = codecs.getincrementaldecoder("utf-8")() |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2369 | decoder = self.IncrementalNewlineDecoder(decoder, translate=True) |
| 2370 | self.check_newline_decoding_utf8(decoder) |
| 2371 | |
Antoine Pitrou | 66913e2 | 2009-03-06 23:40:56 +0000 | [diff] [blame] | 2372 | def test_newline_bytes(self): |
| 2373 | # Issue 5433: Excessive optimization in IncrementalNewlineDecoder |
| 2374 | def _check(dec): |
| 2375 | self.assertEquals(dec.newlines, None) |
| 2376 | self.assertEquals(dec.decode("\u0D00"), "\u0D00") |
| 2377 | self.assertEquals(dec.newlines, None) |
| 2378 | self.assertEquals(dec.decode("\u0A00"), "\u0A00") |
| 2379 | self.assertEquals(dec.newlines, None) |
| 2380 | dec = self.IncrementalNewlineDecoder(None, translate=False) |
| 2381 | _check(dec) |
| 2382 | dec = self.IncrementalNewlineDecoder(None, translate=True) |
| 2383 | _check(dec) |
| 2384 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2385 | class CIncrementalNewlineDecoderTest(IncrementalNewlineDecoderTest): |
| 2386 | pass |
| 2387 | |
| 2388 | class PyIncrementalNewlineDecoderTest(IncrementalNewlineDecoderTest): |
| 2389 | pass |
Antoine Pitrou | 180a336 | 2008-12-14 16:36:46 +0000 | [diff] [blame] | 2390 | |
Alexandre Vassalotti | 472f07d | 2008-01-06 00:34:32 +0000 | [diff] [blame] | 2391 | |
Guido van Rossum | 01a2752 | 2007-03-07 01:00:12 +0000 | [diff] [blame] | 2392 | # XXX Tests for open() |
Guido van Rossum | 68bbcd2 | 2007-02-27 17:19:33 +0000 | [diff] [blame] | 2393 | |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 2394 | class MiscIOTest(unittest.TestCase): |
| 2395 | |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2396 | def tearDown(self): |
| 2397 | support.unlink(support.TESTFN) |
| 2398 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2399 | def test___all__(self): |
| 2400 | for name in self.io.__all__: |
| 2401 | obj = getattr(self.io, name, None) |
Benjamin Peterson | bfb9594 | 2009-04-02 01:13:40 +0000 | [diff] [blame] | 2402 | self.assertTrue(obj is not None, name) |
Guido van Rossum | 5abbf75 | 2007-08-27 17:39:33 +0000 | [diff] [blame] | 2403 | if name == "open": |
| 2404 | continue |
Benjamin Peterson | 6a52a9c | 2009-04-29 22:00:44 +0000 | [diff] [blame] | 2405 | elif "error" in name.lower() or name == "UnsupportedOperation": |
Benjamin Peterson | bfb9594 | 2009-04-02 01:13:40 +0000 | [diff] [blame] | 2406 | self.assertTrue(issubclass(obj, Exception), name) |
| 2407 | elif not name.startswith("SEEK_"): |
| 2408 | self.assertTrue(issubclass(obj, self.IOBase)) |
Benjamin Peterson | 65676e4 | 2008-11-05 21:42:45 +0000 | [diff] [blame] | 2409 | |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2410 | def test_attributes(self): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2411 | f = self.open(support.TESTFN, "wb", buffering=0) |
Benjamin Peterson | 44309e6 | 2008-11-22 00:41:45 +0000 | [diff] [blame] | 2412 | self.assertEquals(f.mode, "wb") |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2413 | f.close() |
| 2414 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2415 | f = self.open(support.TESTFN, "U") |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2416 | self.assertEquals(f.name, support.TESTFN) |
| 2417 | self.assertEquals(f.buffer.name, support.TESTFN) |
| 2418 | self.assertEquals(f.buffer.raw.name, support.TESTFN) |
| 2419 | self.assertEquals(f.mode, "U") |
Benjamin Peterson | 44309e6 | 2008-11-22 00:41:45 +0000 | [diff] [blame] | 2420 | self.assertEquals(f.buffer.mode, "rb") |
| 2421 | self.assertEquals(f.buffer.raw.mode, "rb") |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2422 | f.close() |
| 2423 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2424 | f = self.open(support.TESTFN, "w+") |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2425 | self.assertEquals(f.mode, "w+") |
Benjamin Peterson | 44309e6 | 2008-11-22 00:41:45 +0000 | [diff] [blame] | 2426 | self.assertEquals(f.buffer.mode, "rb+") # Does it really matter? |
| 2427 | self.assertEquals(f.buffer.raw.mode, "rb+") |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2428 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2429 | g = self.open(f.fileno(), "wb", closefd=False) |
Benjamin Peterson | 44309e6 | 2008-11-22 00:41:45 +0000 | [diff] [blame] | 2430 | self.assertEquals(g.mode, "wb") |
| 2431 | self.assertEquals(g.raw.mode, "wb") |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2432 | self.assertEquals(g.name, f.fileno()) |
| 2433 | self.assertEquals(g.raw.name, f.fileno()) |
| 2434 | f.close() |
| 2435 | g.close() |
| 2436 | |
Antoine Pitrou | 8043cf8 | 2009-01-09 19:54:29 +0000 | [diff] [blame] | 2437 | def test_io_after_close(self): |
| 2438 | for kwargs in [ |
| 2439 | {"mode": "w"}, |
| 2440 | {"mode": "wb"}, |
| 2441 | {"mode": "w", "buffering": 1}, |
| 2442 | {"mode": "w", "buffering": 2}, |
| 2443 | {"mode": "wb", "buffering": 0}, |
| 2444 | {"mode": "r"}, |
| 2445 | {"mode": "rb"}, |
| 2446 | {"mode": "r", "buffering": 1}, |
| 2447 | {"mode": "r", "buffering": 2}, |
| 2448 | {"mode": "rb", "buffering": 0}, |
| 2449 | {"mode": "w+"}, |
| 2450 | {"mode": "w+b"}, |
| 2451 | {"mode": "w+", "buffering": 1}, |
| 2452 | {"mode": "w+", "buffering": 2}, |
| 2453 | {"mode": "w+b", "buffering": 0}, |
| 2454 | ]: |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2455 | f = self.open(support.TESTFN, **kwargs) |
Antoine Pitrou | 8043cf8 | 2009-01-09 19:54:29 +0000 | [diff] [blame] | 2456 | f.close() |
| 2457 | self.assertRaises(ValueError, f.flush) |
| 2458 | self.assertRaises(ValueError, f.fileno) |
| 2459 | self.assertRaises(ValueError, f.isatty) |
| 2460 | self.assertRaises(ValueError, f.__iter__) |
| 2461 | if hasattr(f, "peek"): |
| 2462 | self.assertRaises(ValueError, f.peek, 1) |
| 2463 | self.assertRaises(ValueError, f.read) |
| 2464 | if hasattr(f, "read1"): |
| 2465 | self.assertRaises(ValueError, f.read1, 1024) |
| 2466 | if hasattr(f, "readinto"): |
| 2467 | self.assertRaises(ValueError, f.readinto, bytearray(1024)) |
| 2468 | self.assertRaises(ValueError, f.readline) |
| 2469 | self.assertRaises(ValueError, f.readlines) |
| 2470 | self.assertRaises(ValueError, f.seek, 0) |
| 2471 | self.assertRaises(ValueError, f.tell) |
| 2472 | self.assertRaises(ValueError, f.truncate) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2473 | self.assertRaises(ValueError, f.write, |
| 2474 | b"" if "b" in kwargs['mode'] else "") |
Antoine Pitrou | 8043cf8 | 2009-01-09 19:54:29 +0000 | [diff] [blame] | 2475 | self.assertRaises(ValueError, f.writelines, []) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2476 | self.assertRaises(ValueError, next, f) |
Antoine Pitrou | 8043cf8 | 2009-01-09 19:54:29 +0000 | [diff] [blame] | 2477 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2478 | def test_blockingioerror(self): |
| 2479 | # Various BlockingIOError issues |
| 2480 | self.assertRaises(TypeError, self.BlockingIOError) |
| 2481 | self.assertRaises(TypeError, self.BlockingIOError, 1) |
| 2482 | self.assertRaises(TypeError, self.BlockingIOError, 1, 2, 3, 4) |
| 2483 | self.assertRaises(TypeError, self.BlockingIOError, 1, "", None) |
| 2484 | b = self.BlockingIOError(1, "") |
| 2485 | self.assertEqual(b.characters_written, 0) |
| 2486 | class C(str): |
| 2487 | pass |
| 2488 | c = C("") |
| 2489 | b = self.BlockingIOError(1, c) |
| 2490 | c.b = b |
| 2491 | b.c = c |
| 2492 | wr = weakref.ref(c) |
| 2493 | del c, b |
Benjamin Peterson | 24fb1d0 | 2009-04-24 23:26:21 +0000 | [diff] [blame] | 2494 | support.gc_collect() |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 2495 | self.assertTrue(wr() is None, wr) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2496 | |
| 2497 | def test_abcs(self): |
| 2498 | # Test the visible base classes are ABCs. |
Ezio Melotti | e961593 | 2010-01-24 19:26:24 +0000 | [diff] [blame] | 2499 | self.assertIsInstance(self.IOBase, abc.ABCMeta) |
| 2500 | self.assertIsInstance(self.RawIOBase, abc.ABCMeta) |
| 2501 | self.assertIsInstance(self.BufferedIOBase, abc.ABCMeta) |
| 2502 | self.assertIsInstance(self.TextIOBase, abc.ABCMeta) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2503 | |
| 2504 | def _check_abc_inheritance(self, abcmodule): |
| 2505 | with self.open(support.TESTFN, "wb", buffering=0) as f: |
Ezio Melotti | e961593 | 2010-01-24 19:26:24 +0000 | [diff] [blame] | 2506 | self.assertIsInstance(f, abcmodule.IOBase) |
| 2507 | self.assertIsInstance(f, abcmodule.RawIOBase) |
| 2508 | self.assertNotIsInstance(f, abcmodule.BufferedIOBase) |
| 2509 | self.assertNotIsInstance(f, abcmodule.TextIOBase) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2510 | with self.open(support.TESTFN, "wb") as f: |
Ezio Melotti | e961593 | 2010-01-24 19:26:24 +0000 | [diff] [blame] | 2511 | self.assertIsInstance(f, abcmodule.IOBase) |
| 2512 | self.assertNotIsInstance(f, abcmodule.RawIOBase) |
| 2513 | self.assertIsInstance(f, abcmodule.BufferedIOBase) |
| 2514 | self.assertNotIsInstance(f, abcmodule.TextIOBase) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2515 | with self.open(support.TESTFN, "w") as f: |
Ezio Melotti | e961593 | 2010-01-24 19:26:24 +0000 | [diff] [blame] | 2516 | self.assertIsInstance(f, abcmodule.IOBase) |
| 2517 | self.assertNotIsInstance(f, abcmodule.RawIOBase) |
| 2518 | self.assertNotIsInstance(f, abcmodule.BufferedIOBase) |
| 2519 | self.assertIsInstance(f, abcmodule.TextIOBase) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2520 | |
| 2521 | def test_abc_inheritance(self): |
| 2522 | # Test implementations inherit from their respective ABCs |
| 2523 | self._check_abc_inheritance(self) |
| 2524 | |
| 2525 | def test_abc_inheritance_official(self): |
| 2526 | # Test implementations inherit from the official ABCs of the |
| 2527 | # baseline "io" module. |
| 2528 | self._check_abc_inheritance(io) |
| 2529 | |
Antoine Pitrou | e033e06 | 2010-10-29 10:38:18 +0000 | [diff] [blame] | 2530 | def _check_warn_on_dealloc(self, *args, **kwargs): |
| 2531 | f = open(*args, **kwargs) |
| 2532 | r = repr(f) |
| 2533 | with self.assertWarns(ResourceWarning) as cm: |
| 2534 | f = None |
| 2535 | support.gc_collect() |
| 2536 | self.assertIn(r, str(cm.warning.args[0])) |
| 2537 | |
| 2538 | def test_warn_on_dealloc(self): |
| 2539 | self._check_warn_on_dealloc(support.TESTFN, "wb", buffering=0) |
| 2540 | self._check_warn_on_dealloc(support.TESTFN, "wb") |
| 2541 | self._check_warn_on_dealloc(support.TESTFN, "w") |
| 2542 | |
| 2543 | def _check_warn_on_dealloc_fd(self, *args, **kwargs): |
| 2544 | fds = [] |
| 2545 | try: |
| 2546 | r, w = os.pipe() |
| 2547 | fds += r, w |
| 2548 | self._check_warn_on_dealloc(r, *args, **kwargs) |
| 2549 | # When using closefd=False, there's no warning |
| 2550 | r, w = os.pipe() |
| 2551 | fds += r, w |
| 2552 | with warnings.catch_warnings(record=True) as recorded: |
| 2553 | open(r, *args, closefd=False, **kwargs) |
| 2554 | support.gc_collect() |
| 2555 | self.assertEqual(recorded, []) |
| 2556 | finally: |
| 2557 | for fd in fds: |
| 2558 | try: |
| 2559 | os.close(fd) |
| 2560 | except EnvironmentError as e: |
| 2561 | if e.errno != errno.EBADF: |
| 2562 | raise |
| 2563 | |
| 2564 | def test_warn_on_dealloc_fd(self): |
| 2565 | self._check_warn_on_dealloc_fd("rb", buffering=0) |
| 2566 | self._check_warn_on_dealloc_fd("rb") |
| 2567 | self._check_warn_on_dealloc_fd("r") |
| 2568 | |
| 2569 | |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2570 | class CMiscIOTest(MiscIOTest): |
| 2571 | io = io |
| 2572 | |
| 2573 | class PyMiscIOTest(MiscIOTest): |
| 2574 | io = pyio |
Barry Warsaw | 40e8246 | 2008-11-20 20:14:50 +0000 | [diff] [blame] | 2575 | |
Antoine Pitrou | b46b9d5 | 2010-08-21 19:09:32 +0000 | [diff] [blame] | 2576 | |
| 2577 | @unittest.skipIf(os.name == 'nt', 'POSIX signals required for this test.') |
| 2578 | class SignalsTest(unittest.TestCase): |
| 2579 | |
| 2580 | def setUp(self): |
| 2581 | self.oldalrm = signal.signal(signal.SIGALRM, self.alarm_interrupt) |
| 2582 | |
| 2583 | def tearDown(self): |
| 2584 | signal.signal(signal.SIGALRM, self.oldalrm) |
| 2585 | |
| 2586 | def alarm_interrupt(self, sig, frame): |
| 2587 | 1/0 |
| 2588 | |
| 2589 | @unittest.skipUnless(threading, 'Threading required for this test.') |
| 2590 | def check_interrupted_write(self, item, bytes, **fdopen_kwargs): |
| 2591 | """Check that a partial write, when it gets interrupted, properly |
| 2592 | invokes the signal handler.""" |
| 2593 | read_results = [] |
| 2594 | def _read(): |
| 2595 | s = os.read(r, 1) |
| 2596 | read_results.append(s) |
| 2597 | t = threading.Thread(target=_read) |
| 2598 | t.daemon = True |
| 2599 | r, w = os.pipe() |
| 2600 | try: |
| 2601 | wio = self.io.open(w, **fdopen_kwargs) |
| 2602 | t.start() |
| 2603 | signal.alarm(1) |
| 2604 | # Fill the pipe enough that the write will be blocking. |
| 2605 | # It will be interrupted by the timer armed above. Since the |
| 2606 | # other thread has read one byte, the low-level write will |
| 2607 | # return with a successful (partial) result rather than an EINTR. |
| 2608 | # The buffered IO layer must check for pending signal |
| 2609 | # handlers, which in this case will invoke alarm_interrupt(). |
| 2610 | self.assertRaises(ZeroDivisionError, |
| 2611 | wio.write, item * (1024 * 1024)) |
| 2612 | t.join() |
| 2613 | # We got one byte, get another one and check that it isn't a |
| 2614 | # repeat of the first one. |
| 2615 | read_results.append(os.read(r, 1)) |
| 2616 | self.assertEqual(read_results, [bytes[0:1], bytes[1:2]]) |
| 2617 | finally: |
| 2618 | os.close(w) |
| 2619 | os.close(r) |
| 2620 | # This is deliberate. If we didn't close the file descriptor |
| 2621 | # before closing wio, wio would try to flush its internal |
| 2622 | # buffer, and block again. |
| 2623 | try: |
| 2624 | wio.close() |
| 2625 | except IOError as e: |
| 2626 | if e.errno != errno.EBADF: |
| 2627 | raise |
| 2628 | |
| 2629 | def test_interrupted_write_unbuffered(self): |
| 2630 | self.check_interrupted_write(b"xy", b"xy", mode="wb", buffering=0) |
| 2631 | |
| 2632 | def test_interrupted_write_buffered(self): |
| 2633 | self.check_interrupted_write(b"xy", b"xy", mode="wb") |
| 2634 | |
| 2635 | def test_interrupted_write_text(self): |
| 2636 | self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii") |
| 2637 | |
| 2638 | class CSignalsTest(SignalsTest): |
| 2639 | io = io |
| 2640 | |
| 2641 | class PySignalsTest(SignalsTest): |
| 2642 | io = pyio |
| 2643 | |
| 2644 | |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 2645 | def test_main(): |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2646 | tests = (CIOTest, PyIOTest, |
| 2647 | CBufferedReaderTest, PyBufferedReaderTest, |
| 2648 | CBufferedWriterTest, PyBufferedWriterTest, |
| 2649 | CBufferedRWPairTest, PyBufferedRWPairTest, |
| 2650 | CBufferedRandomTest, PyBufferedRandomTest, |
| 2651 | StatefulIncrementalDecoderTest, |
| 2652 | CIncrementalNewlineDecoderTest, PyIncrementalNewlineDecoderTest, |
| 2653 | CTextIOWrapperTest, PyTextIOWrapperTest, |
Antoine Pitrou | b46b9d5 | 2010-08-21 19:09:32 +0000 | [diff] [blame] | 2654 | CMiscIOTest, PyMiscIOTest, |
| 2655 | CSignalsTest, PySignalsTest, |
| 2656 | ) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2657 | |
| 2658 | # Put the namespaces of the IO module we are testing and some useful mock |
| 2659 | # classes in the __dict__ of each test. |
| 2660 | mocks = (MockRawIO, MisbehavedRawIO, MockFileIO, CloseFailureIO, |
Antoine Pitrou | 328ec74 | 2010-09-14 18:37:24 +0000 | [diff] [blame] | 2661 | MockNonBlockWriterIO, MockUnseekableIO, MockRawIOWithoutRead) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2662 | all_members = io.__all__ + ["IncrementalNewlineDecoder"] |
| 2663 | c_io_ns = {name : getattr(io, name) for name in all_members} |
| 2664 | py_io_ns = {name : getattr(pyio, name) for name in all_members} |
| 2665 | globs = globals() |
| 2666 | c_io_ns.update((x.__name__, globs["C" + x.__name__]) for x in mocks) |
| 2667 | py_io_ns.update((x.__name__, globs["Py" + x.__name__]) for x in mocks) |
| 2668 | # Avoid turning open into a bound method. |
| 2669 | py_io_ns["open"] = pyio.OpenWrapper |
| 2670 | for test in tests: |
| 2671 | if test.__name__.startswith("C"): |
| 2672 | for name, obj in c_io_ns.items(): |
| 2673 | setattr(test, name, obj) |
| 2674 | elif test.__name__.startswith("Py"): |
| 2675 | for name, obj in py_io_ns.items(): |
| 2676 | setattr(test, name, obj) |
| 2677 | |
| 2678 | support.run_unittest(*tests) |
Guido van Rossum | 28524c7 | 2007-02-27 05:47:44 +0000 | [diff] [blame] | 2679 | |
| 2680 | if __name__ == "__main__": |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 2681 | test_main() |