2020-02-12 19:29:19 +03:00
|
|
|
import pytest
|
2020-08-07 13:28:33 +03:00
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
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-11 18:38:42 +03:00
|
|
|
|
|
|
|
|
2020-05-17 04:04:02 +03:00
|
|
|
def test_multiple_load_operations():
|
2020-05-11 18:38:42 +03:00
|
|
|
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)
|