1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
class AppTestBytesIO:
spaceconfig = dict(usemodules=['_io'])
def test_init(self):
import _io
raises(TypeError, _io.BytesIO, "12345")
buf = b"1234567890"
b = _io.BytesIO(buf)
assert b.getvalue() == buf
b = _io.BytesIO(None)
assert b.getvalue() == b""
b.__init__(buf * 2)
assert b.getvalue() == buf * 2
b.__init__(buf)
assert b.getvalue() == buf
def test_init_kwargs(self):
import _io
buf = b"1234567890"
b = _io.BytesIO(initial_bytes=buf)
assert b.read() == buf
raises(TypeError, _io.BytesIO, buf, foo=None)
def test_new(self):
import _io
f = _io.BytesIO.__new__(_io.BytesIO)
assert not f.closed
def test_capabilities(self):
import _io
f = _io.BytesIO()
assert f.readable()
assert f.writable()
assert f.seekable()
f.close()
raises(ValueError, f.readable)
raises(ValueError, f.writable)
raises(ValueError, f.seekable)
def test_write(self):
import _io
f = _io.BytesIO()
assert f.write(b"") == 0
assert f.write(b"hello") == 5
exc = raises(TypeError, f.write, u"lo")
assert str(exc.value) == "'str' does not support the buffer interface"
import gc; gc.collect()
assert f.getvalue() == b"hello"
f.close()
def test_read(self):
import _io
f = _io.BytesIO(b"hello")
assert f.read() == b"hello"
import gc; gc.collect()
assert f.read(8192) == b""
f.close()
def test_seek(self):
import _io
f = _io.BytesIO(b"hello")
assert f.tell() == 0
assert f.seek(-1, 2) == 4
assert f.tell() == 4
assert f.seek(0) == 0
def test_truncate(self):
import _io
f = _io.BytesIO()
f.write(b"hello")
assert f.truncate(0) == 0
assert f.tell() == 5
f.seek(0)
f.write(b"hello")
f.seek(3)
assert f.truncate() == 3
assert f.getvalue() == b"hel"
assert f.truncate(2) == 2
assert f.tell() == 3
def test_setstate(self):
# state is (content, position, __dict__)
import _io
f = _io.BytesIO(b"hello")
content, pos, __dict__ = f.__getstate__()
assert (content, pos) == (b"hello", 0)
assert __dict__ is None or __dict__ == {}
f.__setstate__((b"world", 3, {"a": 1}))
assert f.getvalue() == b"world"
assert f.read() == b"ld"
assert f.a == 1
assert f.__getstate__() == (b"world", 5, {"a": 1})
raises(TypeError, f.__setstate__, (b"", 0))
f.close()
raises(ValueError, f.__getstate__)
raises(ValueError, f.__setstate__, ("world", 3, {"a": 1}))
def test_readinto(self):
import _io
for methodname in ["readinto", "readinto1"]:
b = _io.BytesIO(b"hello")
readinto = getattr(b, methodname)
a1 = bytearray(b't')
a2 = bytearray(b'testing')
assert readinto(a1) == 1
assert readinto(a2) == 4
b.seek(0)
m = memoryview(bytearray(b"world"))
assert readinto(m) == 5
#
exc = raises(TypeError, readinto, u"hello")
msg = str(exc.value)
# print(msg)
assert " read-write b" in msg and msg.endswith(", not str")
#
exc = raises(TypeError, readinto, memoryview(b"hello"))
msg = str(exc.value)
# print(msg)
assert " read-write b" in msg and msg.endswith(", not memoryview")
#
b.close()
assert a1 == b"h"
assert a2 == b"elloing"
raises(ValueError, readinto, bytearray(b"hello"))
def test_getbuffer(self):
import _io
memio = _io.BytesIO(b"1234567890")
buf = memio.getbuffer()
assert bytes(buf) == b"1234567890"
memio.seek(5)
buf = memio.getbuffer()
assert bytes(buf) == b"1234567890"
assert buf[5] == ord(b"6")
# Mutating the buffer updates the BytesIO
buf[3:6] = b"abc"
assert bytes(buf) == b"123abc7890"
assert memio.getvalue() == b"123abc7890"
# After the buffer gets released, we can resize the BytesIO again
del buf
memio.truncate()
memio.close()
raises(ValueError, memio.getbuffer)
def test_read1(self):
import _io
memio = _io.BytesIO(b"1234567890")
raises(TypeError, memio.read1)
assert memio.read() == b"1234567890"
def test_readline(self):
import _io
f = _io.BytesIO(b'abc\ndef\nxyzzy\nfoo\x00bar\nanother line')
assert f.readline() == b'abc\n'
assert f.readline(10) == b'def\n'
assert f.readline(2) == b'xy'
assert f.readline(4) == b'zzy\n'
assert f.readline() == b'foo\x00bar\n'
assert f.readline(None) == b'another line'
raises(TypeError, f.readline, 5.3)
def test_overread(self):
import _io
f = _io.BytesIO(b'abc')
assert f.readline(10) == b'abc'
|