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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
import os
import sys
import ctypes
import pytest
from io import BytesIO
from sdl2 import rwops
if sys.version_info[0] >= 3:
byteify = bytes
stringify = lambda x, enc: x.decode(enc)
else:
byteify = lambda x, enc: x.encode(enc)
stringify = lambda x, enc: str(x)
testfile = os.path.join(os.path.dirname(os.path.abspath(__file__)),
"resources", "rwopstest.txt")
# TODO: extended checks for r/w operations outside of buffer ranges, invalid
# values, etc.!
class TestSDLRWops(object):
__tags__ = ["sdl"]
def test_SDL_RWops(self):
rw = rwops.SDL_RWops()
assert isinstance(rw, rwops.SDL_RWops)
def test_SDL_RWFromFile(self):
rw = rwops.SDL_RWFromFile(testfile.encode("utf-8"), b"r")
assert isinstance(rw.contents, rwops.SDL_RWops)
# Read the first 36 bytes(sic!). It should be:
# 'This is a test file for sdl2.rwops!'
length = 36
buf = BytesIO()
while length >= 2:
# Reading in two bytes - we have plain text(1-byte encoding), so
# we read in 2 characters at a time. This means that the first
# character is always stored in the lo byte.
ch = rwops.SDL_ReadLE16(rw)
buf.write(byteify(chr(ch & 0x00FF), "utf-8"))
buf.write(byteify(chr(ch >> 8), "utf-8"))
length -= 2
assert stringify(buf.getvalue(), "utf-8") == \
"This is a test file for sdl2.rwops!"
@pytest.mark.skip("not implemented")
def test_SDL_RWFromFP(self):
pass
@pytest.mark.skip("not implemented")
def test_SDL_RWFromMem(self):
pass
@pytest.mark.skip("not implemented")
def test_SDL_RWFromConstMem(self):
pass
def test_rw_from_object(self):
buf = BytesIO()
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
for s in("Test", "Test", "Test", "Banana"):
buf.write(byteify(s, "utf-8"))
length = rwops.SDL_RWseek(rw, 0, rwops.RW_SEEK_END)
rwops.SDL_RWseek(rw, 0, rwops.RW_SEEK_SET)
assert len(buf.getvalue()) == length
rwops.SDL_RWclose(rw)
assert buf.closed
with pytest.raises(ValueError):
buf.write("Test")
with pytest.raises(ValueError):
buf.getvalue()
def test_SDL_RWSeekTell(self):
data = byteify("A Teststring of length 25", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
pos = rwops.SDL_RWseek(rw, 0, rwops.RW_SEEK_END)
assert pos == buf.tell() == len(data)
pos = rwops.SDL_RWseek(rw, 0, rwops.RW_SEEK_SET)
assert pos == buf.tell() == 0
pos = rwops.SDL_RWseek(rw, 15, rwops.RW_SEEK_CUR)
assert pos == buf.tell() == 15
pos = rwops.SDL_RWseek(rw, -3, rwops.RW_SEEK_CUR)
assert pos == buf.tell() == 12
pos = rwops.SDL_RWseek(rw, 7, rwops.RW_SEEK_CUR)
assert pos == buf.tell() == 19
pos = rwops.SDL_RWseek(rw, -11, rwops.RW_SEEK_END)
assert pos == buf.tell() == 14
pos = rwops.SDL_RWseek(rw, 8, rwops.RW_SEEK_SET)
assert pos == buf.tell() == 8
pos = rwops.SDL_RWseek(rw, -2, rwops.RW_SEEK_SET)
assert pos == -1
assert buf.tell() == 8
pos = rwops.SDL_RWseek(rw, 12, rwops.RW_SEEK_END)
assert pos == buf.tell() == len(data) + 12
def test_SDL_RWread(self):
data = byteify("A Teststring of length 25", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
readbuf = ctypes.create_string_buffer(2)
read = rwops.SDL_RWread(rw, readbuf, 1, 2)
assert read == 2
assert readbuf.raw == b"A "
readbuf = ctypes.create_string_buffer(10)
read = rwops.SDL_RWread(rw, readbuf, 1, 10)
assert read == 10
assert readbuf.raw == b"Teststring"
def test_SDL_RWwrite(self):
data = byteify("A Teststring of length 25", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
writebuf = ctypes.create_string_buffer(b"XQ")
written = rwops.SDL_RWwrite(rw, writebuf, 1, 2)
assert written == 2
assert buf.getvalue() == b"XQTeststring of length 25"
writebuf = ctypes.create_string_buffer(b"banana")
rwops.SDL_RWseek(rw, 14, rwops.RW_SEEK_CUR)
written = rwops.SDL_RWwrite(rw, writebuf, 1, 6)
assert written == 6
assert buf.getvalue() == b"XQTeststring of banana 25"
def test_SDL_RWclose(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
assert buf.getvalue() == data
rwops.SDL_RWclose(rw)
with pytest.raises(ValueError):
buf.getvalue()
@pytest.mark.skip("not implemented")
def test_SDL_AllocFreeRW(self):
pass
@pytest.mark.skip("not implemented")
def test_SDL_LoadFile_RW(self):
pass
@pytest.mark.skip("not implemented")
def test_SDL_LoadFile(self):
pass
def test_SDL_ReadLE16(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
ch = rwops.SDL_ReadLE16(rw)
assert chr(ch & 0x00FF) == "A"
assert chr(ch >> 8) == " "
pos = rwops.SDL_RWseek(rw, 8, rwops.RW_SEEK_SET)
assert pos == 8
ch = rwops.SDL_ReadLE16(rw)
assert chr(ch & 0x00FF) == "r"
assert chr(ch >> 8) == "i"
def test_SDL_ReadBE16(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
ch = rwops.SDL_ReadBE16(rw)
assert chr(ch & 0x00FF) == " "
assert chr(ch >> 8) == "A"
pos = rwops.SDL_RWseek(rw, 8, rwops.RW_SEEK_SET)
assert pos == 8
ch = rwops.SDL_ReadBE16(rw)
assert chr(ch & 0x00FF) == "i"
assert chr(ch >> 8) == "r"
def test_SDL_ReadLE32(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
ch = rwops.SDL_ReadLE32(rw)
assert chr(ch & 0x000000FF) == "A"
assert chr((ch & 0x0000FF00) >> 8) == " "
assert chr((ch & 0x00FF0000) >> 16) == "T"
assert chr((ch & 0xFF000000) >> 24) == "e"
pos = rwops.SDL_RWseek(rw, 8, rwops.RW_SEEK_SET)
assert pos == 8
ch = rwops.SDL_ReadLE32(rw)
assert chr(ch & 0x000000FF) == "r"
assert chr((ch & 0x0000FF00) >> 8) == "i"
assert chr((ch & 0x00FF0000) >> 16) == "n"
assert chr((ch & 0xFF000000) >> 24) == "g"
def test_SDL_ReadBE32(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
ch = rwops.SDL_ReadBE32(rw)
assert chr(ch & 0x000000FF) == "e"
assert chr((ch & 0x0000FF00) >> 8) == "T"
assert chr((ch & 0x00FF0000) >> 16) == " "
assert chr((ch & 0xFF000000) >> 24) == "A"
pos = rwops.SDL_RWseek(rw, 8, rwops.RW_SEEK_SET)
assert pos == 8
ch = rwops.SDL_ReadBE32(rw)
assert chr(ch & 0x000000FF) == "g"
assert chr((ch & 0x0000FF00) >> 8) == "n"
assert chr((ch & 0x00FF0000) >> 16) == "i"
assert chr((ch & 0xFF000000) >> 24) == "r"
def test_SDL_ReadLE64(self):
data = byteify("A Teststring 64b", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
ch = rwops.SDL_ReadLE64(rw)
assert chr(ch & 0x00000000000000FF) == "A"
assert chr((ch & 0x000000000000FF00) >> 8) == " "
assert chr((ch & 0x0000000000FF0000) >> 16) == "T"
assert chr((ch & 0x00000000FF000000) >> 24) == "e"
assert chr((ch & 0x000000FF00000000) >> 32) == "s"
assert chr((ch & 0x0000FF0000000000) >> 40) == "t"
assert chr((ch & 0x00FF000000000000) >> 48) == "s"
assert chr((ch & 0xFF00000000000000) >> 56) == "t"
pos = rwops.SDL_RWseek(rw, 8, rwops.RW_SEEK_SET)
assert pos == 8
ch = rwops.SDL_ReadLE64(rw)
assert chr(ch & 0x00000000000000FF) == "r"
assert chr((ch & 0x000000000000FF00) >> 8) == "i"
assert chr((ch & 0x0000000000FF0000) >> 16) == "n"
assert chr((ch & 0x00000000FF000000) >> 24) == "g"
assert chr((ch & 0x000000FF00000000) >> 32) == " "
assert chr((ch & 0x0000FF0000000000) >> 40) == "6"
assert chr((ch & 0x00FF000000000000) >> 48) == "4"
assert chr((ch & 0xFF00000000000000) >> 56) == "b"
def test_SDL_ReadBE64(self):
data = byteify("A Teststring 64b", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
ch = rwops.SDL_ReadBE64(rw)
assert chr(ch & 0x00000000000000FF) == "t"
assert chr((ch & 0x000000000000FF00) >> 8) == "s"
assert chr((ch & 0x0000000000FF0000) >> 16) == "t"
assert chr((ch & 0x00000000FF000000) >> 24) == "s"
assert chr((ch & 0x000000FF00000000) >> 32) == "e"
assert chr((ch & 0x0000FF0000000000) >> 40) == "T"
assert chr((ch & 0x00FF000000000000) >> 48) == " "
assert chr((ch & 0xFF00000000000000) >> 56) == "A"
pos = rwops.SDL_RWseek(rw, 8, rwops.RW_SEEK_SET)
assert pos == 8
ch = rwops.SDL_ReadBE64(rw)
assert chr(ch & 0x00000000000000FF) == "b"
assert chr((ch & 0x000000000000FF00) >> 8) == "4"
assert chr((ch & 0x0000000000FF0000) >> 16) == "6"
assert chr((ch & 0x00000000FF000000) >> 24) == " "
assert chr((ch & 0x000000FF00000000) >> 32) == "g"
assert chr((ch & 0x0000FF0000000000) >> 40) == "n"
assert chr((ch & 0x00FF000000000000) >> 48) == "i"
assert chr((ch & 0xFF00000000000000) >> 56) == "r"
def test_SDL_WriteLE16(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
value = ((ord("q") << 8) | (ord("%")))
rwops.SDL_WriteLE16(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "%qTeststring"
rwops.SDL_RWseek(rw, 6, rwops.RW_SEEK_SET)
rwops.SDL_WriteLE16(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "%qTest%qring"
def test_SDL_WriteBE16(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
value = ((ord("q") << 8) | (ord("%")))
rwops.SDL_WriteBE16(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "q%Teststring"
rwops.SDL_RWseek(rw, 6, rwops.RW_SEEK_SET)
rwops.SDL_WriteBE16(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "q%Testq%ring"
def test_SDL_WriteLE32(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
value = ((ord("a") << 24) |
(ord("c") << 16) |
(ord("f") << 8) |
(ord("z"))
)
rwops.SDL_WriteLE32(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "zfcaststring"
rwops.SDL_RWseek(rw, 6, rwops.RW_SEEK_SET)
rwops.SDL_WriteLE32(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "zfcastzfcang"
def test_SDL_WriteBE32(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
value = ((ord("a") << 24) |
(ord("c") << 16) |
(ord("f") << 8) |
(ord("z"))
)
rwops.SDL_WriteBE32(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "acfzststring"
rwops.SDL_RWseek(rw, 6, rwops.RW_SEEK_SET)
rwops.SDL_WriteBE32(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "acfzstacfzng"
def test_SDL_WriteLE64(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
value = ((ord("q") << 56) |
(ord("w") << 48) |
(ord("b") << 40) |
(ord("k") << 32) |
(ord("a") << 24) |
(ord("c") << 16) |
(ord("f") << 8) |
(ord("z"))
)
rwops.SDL_WriteLE64(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "zfcakbwqring"
rwops.SDL_RWseek(rw, 4, rwops.RW_SEEK_SET)
rwops.SDL_WriteLE64(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "zfcazfcakbwq"
def test_SDL_WriteBE64(self):
data = byteify("A Teststring", "utf-8")
buf = BytesIO(data)
rw = rwops.rw_from_object(buf)
assert isinstance(rw, rwops.SDL_RWops)
value = ((ord("q") << 56) |
(ord("w") << 48) |
(ord("b") << 40) |
(ord("k") << 32) |
(ord("a") << 24) |
(ord("c") << 16) |
(ord("f") << 8) |
(ord("z"))
)
rwops.SDL_WriteBE64(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "qwbkacfzring"
rwops.SDL_RWseek(rw, 4, rwops.RW_SEEK_SET)
rwops.SDL_WriteBE64(rw, value)
assert stringify(buf.getvalue(), "utf-8") == "qwbkqwbkacfz"
|