2019-11-04 01:18:55 +03:00
|
|
|
import pytest
|
2020-08-07 13:28:33 +03:00
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
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
|
|
|
|
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
def test_invalid_file():
|
|
|
|
invalid_file = "Tests/images/flower.jpg"
|
2017-09-17 13:15:59 +03:00
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
with pytest.raises(UnidentifiedImageError):
|
|
|
|
GdImageFile.open(invalid_file)
|