mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
25 lines
650 B
Python
25 lines
650 B
Python
from __future__ import annotations
|
|
|
|
from PIL import _binary
|
|
|
|
|
|
def test_standard() -> None:
|
|
assert _binary.i8(b"*") == 42
|
|
assert _binary.o8(42) == b"*"
|
|
|
|
|
|
def test_little_endian() -> None:
|
|
assert _binary.i16le(b"\xff\xff\x00\x00") == 65535
|
|
assert _binary.i32le(b"\xff\xff\x00\x00") == 65535
|
|
|
|
assert _binary.o16le(65535) == b"\xff\xff"
|
|
assert _binary.o32le(65535) == b"\xff\xff\x00\x00"
|
|
|
|
|
|
def test_big_endian() -> None:
|
|
assert _binary.i16be(b"\x00\x00\xff\xff") == 0
|
|
assert _binary.i32be(b"\x00\x00\xff\xff") == 65535
|
|
|
|
assert _binary.o16be(65535) == b"\xff\xff"
|
|
assert _binary.o32be(65535) == b"\x00\x00\xff\xff"
|