2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
from pathlib import Path
|
2024-06-05 15:27:23 +03:00
|
|
|
from typing import IO
|
2024-01-31 12:12:58 +03:00
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
import pytest
|
2020-08-07 13:28:33 +03:00
|
|
|
|
2024-06-05 15:27:23 +03:00
|
|
|
from PIL import BufrStubImagePlugin, Image, ImageFile
|
2019-07-06 23:40:53 +03:00
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
from .helper import hopper
|
2017-03-04 17:35:54 +03:00
|
|
|
|
|
|
|
TEST_FILE = "Tests/images/gfs.t06z.rassda.tm00.bufr_d"
|
2015-07-03 08:03:25 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_open() -> None:
|
2019-11-04 01:18:55 +03:00
|
|
|
# Act
|
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
# Assert
|
|
|
|
assert im.format == "BUFR"
|
2017-03-04 17:35:54 +03:00
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
# Dummy data from the stub
|
|
|
|
assert im.mode == "F"
|
|
|
|
assert im.size == (1, 1)
|
2017-03-04 17:35:54 +03:00
|
|
|
|
2015-07-03 09:22:56 +03:00
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_invalid_file() -> None:
|
2019-11-04 01:18:55 +03:00
|
|
|
# Arrange
|
|
|
|
invalid_file = "Tests/images/flower.jpg"
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
# Act / Assert
|
|
|
|
with pytest.raises(SyntaxError):
|
|
|
|
BufrStubImagePlugin.BufrStubImageFile(invalid_file)
|
2017-03-04 17:35:54 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_load() -> None:
|
2019-11-04 01:18:55 +03:00
|
|
|
# Arrange
|
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
# Act / Assert: stub cannot load without an implemented handler
|
2020-04-07 09:58:21 +03:00
|
|
|
with pytest.raises(OSError):
|
2019-11-04 01:18:55 +03:00
|
|
|
im.load()
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_save(tmp_path: Path) -> None:
|
2019-11-04 01:18:55 +03:00
|
|
|
# Arrange
|
|
|
|
im = hopper()
|
|
|
|
tmpfile = str(tmp_path / "temp.bufr")
|
|
|
|
|
|
|
|
# Act / Assert: stub cannot save without an implemented handler
|
2020-04-07 09:58:21 +03:00
|
|
|
with pytest.raises(OSError):
|
2019-11-04 01:18:55 +03:00
|
|
|
im.save(tmpfile)
|
2022-02-19 06:29:03 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_handler(tmp_path: Path) -> None:
|
2024-06-05 15:27:23 +03:00
|
|
|
class TestHandler(ImageFile.StubHandler):
|
2022-02-19 06:29:03 +03:00
|
|
|
opened = False
|
|
|
|
loaded = False
|
|
|
|
saved = False
|
|
|
|
|
2024-06-05 15:27:23 +03:00
|
|
|
def open(self, im: ImageFile.StubImageFile) -> None:
|
2022-02-19 06:29:03 +03:00
|
|
|
self.opened = True
|
|
|
|
|
2024-06-05 15:27:23 +03:00
|
|
|
def load(self, im: ImageFile.StubImageFile) -> Image.Image:
|
2022-02-19 06:29:03 +03:00
|
|
|
self.loaded = True
|
2023-03-11 14:39:11 +03:00
|
|
|
im.fp.close()
|
2022-02-19 06:29:03 +03:00
|
|
|
return Image.new("RGB", (1, 1))
|
|
|
|
|
2024-06-23 23:59:00 +03:00
|
|
|
def is_loaded(self) -> bool:
|
|
|
|
return self.loaded
|
|
|
|
|
2024-06-05 15:27:23 +03:00
|
|
|
def save(self, im: Image.Image, fp: IO[bytes], filename: str) -> None:
|
2022-02-19 06:29:03 +03:00
|
|
|
self.saved = True
|
|
|
|
|
|
|
|
handler = TestHandler()
|
|
|
|
BufrStubImagePlugin.register_handler(handler)
|
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
assert handler.opened
|
2024-06-23 23:59:00 +03:00
|
|
|
assert not handler.is_loaded()
|
2022-02-19 06:29:03 +03:00
|
|
|
|
|
|
|
im.load()
|
2024-06-23 23:59:00 +03:00
|
|
|
assert handler.is_loaded()
|
2022-02-19 06:29:03 +03:00
|
|
|
|
|
|
|
temp_file = str(tmp_path / "temp.bufr")
|
|
|
|
im.save(temp_file)
|
|
|
|
assert handler.saved
|
|
|
|
|
|
|
|
BufrStubImagePlugin._handler = None
|