Pillow/Tests/test_file_gbr.py

27 lines
657 B
Python
Raw Normal View History

2020-02-12 19:29:19 +03:00
import pytest
from PIL import GbrImagePlugin, Image
2015-07-03 08:03:25 +03:00
2020-02-12 19:29:19 +03:00
from .helper import assert_image_equal
2015-07-03 08:03:25 +03:00
2020-02-12 19:29:19 +03:00
def test_invalid_file():
invalid_file = "Tests/images/flower.jpg"
2015-07-03 09:22:56 +03:00
2020-02-12 19:29:19 +03:00
with pytest.raises(SyntaxError):
GbrImagePlugin.GbrImageFile(invalid_file)
2015-07-03 08:03:25 +03:00
2020-02-12 19:29:19 +03:00
def test_gbr_file():
with Image.open("Tests/images/gbr.gbr") as im:
with Image.open("Tests/images/gbr.png") as target:
assert_image_equal(target, im)
2020-05-17 04:04:02 +03:00
def test_multiple_load_operations():
with Image.open("Tests/images/gbr.gbr") as im:
2020-05-17 04:04:02 +03:00
im.load()
im.load()
with Image.open("Tests/images/gbr.png") as target:
assert_image_equal(target, im)