Pillow/Tests/test_file_wal.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
720 B
Python
Raw Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
2018-01-29 18:18:06 +03:00
from PIL import WalImageFile
2021-07-18 05:35:27 +03:00
from .helper import assert_image_equal_tofile
TEST_FILE = "Tests/images/hopper.wal"
2018-01-29 18:18:06 +03:00
2024-01-27 07:19:43 +03:00
def test_open() -> None:
2021-07-18 05:35:27 +03:00
with WalImageFile.open(TEST_FILE) as im:
assert im.format == "WAL"
assert im.format_description == "Quake2 Texture"
assert im.mode == "P"
assert im.size == (128, 128)
assert isinstance(im, WalImageFile.WalImageFile)
2018-01-29 18:18:06 +03:00
2021-07-18 05:35:27 +03:00
assert_image_equal_tofile(im, "Tests/images/hopper_wal.png")
2024-01-27 07:19:43 +03:00
def test_load() -> None:
with WalImageFile.open(TEST_FILE) as im:
assert im.load()[0, 0] == 122
# Test again now that it has already been loaded once
assert im.load()[0, 0] == 122