Pillow/Tests/test_file_gd.py

24 lines
516 B
Python
Raw Normal View History

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"
def test_sanity():
with GdImageFile.open(TEST_GD_FILE) as im:
assert im.size == (128, 128)
assert im.format == "GD"
def test_bad_mode():
with pytest.raises(ValueError):
GdImageFile.open(TEST_GD_FILE, "bad mode")
2017-09-17 13:15:59 +03:00
def test_invalid_file():
invalid_file = "Tests/images/flower.jpg"
2017-09-17 13:15:59 +03:00
with pytest.raises(UnidentifiedImageError):
GdImageFile.open(invalid_file)