2020-01-27 14:46:52 +03:00
|
|
|
import pytest
|
2017-03-04 14:07:48 +03:00
|
|
|
from PIL import GribStubImagePlugin, Image
|
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
from .helper import hopper
|
2019-07-06 23:40:53 +03:00
|
|
|
|
2017-03-04 14:07:48 +03:00
|
|
|
TEST_FILE = "Tests/images/WAlaska.wind.7days.grb"
|
2015-07-03 08:03:25 +03:00
|
|
|
|
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
def test_open():
|
|
|
|
# Act
|
|
|
|
with Image.open(TEST_FILE) as im:
|
2017-03-04 14:07:48 +03:00
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
# Assert
|
|
|
|
assert im.format == "GRIB"
|
2017-03-04 14:07:48 +03:00
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
# Dummy data from the stub
|
|
|
|
assert im.mode == "F"
|
|
|
|
assert im.size == (1, 1)
|
2017-03-04 14:07:48 +03:00
|
|
|
|
2015-07-03 09:22:56 +03:00
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
def test_invalid_file():
|
|
|
|
# Arrange
|
|
|
|
invalid_file = "Tests/images/flower.jpg"
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
# Act / Assert
|
|
|
|
with pytest.raises(SyntaxError):
|
|
|
|
GribStubImagePlugin.GribStubImageFile(invalid_file)
|
2017-03-04 17:10:52 +03:00
|
|
|
|
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
def test_load():
|
|
|
|
# Arrange
|
|
|
|
with Image.open(TEST_FILE) as im:
|
2017-03-04 14:07:48 +03:00
|
|
|
|
2020-01-27 14:46:52 +03:00
|
|
|
# Act / Assert: stub cannot load without an implemented handler
|
|
|
|
with pytest.raises(IOError):
|
|
|
|
im.load()
|
|
|
|
|
|
|
|
|
|
|
|
def test_save(tmp_path):
|
|
|
|
# Arrange
|
|
|
|
im = hopper()
|
|
|
|
tmpfile = str(tmp_path / "temp.grib")
|
|
|
|
|
|
|
|
# Act / Assert: stub cannot save without an implemented handler
|
|
|
|
with pytest.raises(IOError):
|
|
|
|
im.save(tmpfile)
|