Pillow/Tests/test_file_gd.py

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

26 lines
576 B
Python
Raw Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
import pytest
2019-11-19 13:20:02 +03:00
from PIL import GdImageFile, UnidentifiedImageError
2017-09-17 13:15:59 +03:00
TEST_GD_FILE = "Tests/images/hopper.gd"
2024-01-27 07:19:43 +03:00
def test_sanity() -> None:
with GdImageFile.open(TEST_GD_FILE) as im:
assert im.size == (128, 128)
assert im.format == "GD"
2024-01-27 07:19:43 +03:00
def test_bad_mode() -> None:
with pytest.raises(ValueError):
GdImageFile.open(TEST_GD_FILE, "bad mode")
2017-09-17 13:15:59 +03:00
2024-01-27 07:19:43 +03:00
def test_invalid_file() -> None:
invalid_file = "Tests/images/flower.jpg"
2017-09-17 13:15:59 +03:00
with pytest.raises(UnidentifiedImageError):
GdImageFile.open(invalid_file)