Pillow/Tests/test_file_gribstub.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.9 KiB
Python
Raw Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
from pathlib import Path
2024-02-12 13:06:17 +03:00
from typing import IO
2020-01-27 14:46:52 +03:00
import pytest
from PIL import GribStubImagePlugin, Image
2020-01-27 14:46:52 +03:00
from .helper import hopper
TEST_FILE = "Tests/images/WAlaska.wind.7days.grb"
2015-07-03 08:03:25 +03:00
def test_open() -> None:
2020-01-27 14:46:52 +03:00
# Act
with Image.open(TEST_FILE) as im:
# Assert
assert im.format == "GRIB"
2020-01-27 14:46:52 +03:00
# Dummy data from the stub
assert im.mode == "F"
assert im.size == (1, 1)
2015-07-03 09:22:56 +03:00
def test_invalid_file() -> None:
2020-01-27 14:46:52 +03:00
# 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
def test_load() -> None:
2020-01-27 14:46:52 +03:00
# Arrange
with Image.open(TEST_FILE) as im:
# Act / Assert: stub cannot load without an implemented handler
with pytest.raises(OSError):
2020-01-27 14:46:52 +03:00
im.load()
def test_save(tmp_path: Path) -> None:
2020-01-27 14:46:52 +03:00
# Arrange
im = hopper()
tmpfile = str(tmp_path / "temp.grib")
# Act / Assert: stub cannot save without an implemented handler
with pytest.raises(OSError):
2020-01-27 14:46:52 +03:00
im.save(tmpfile)
2022-02-19 06:29:03 +03:00
def test_handler(tmp_path: Path) -> None:
2022-02-19 06:29:03 +03:00
class TestHandler:
opened = False
loaded = False
saved = False
2024-02-12 13:06:17 +03:00
def open(self, im: Image.Image) -> None:
2022-02-19 06:29:03 +03:00
self.opened = True
2024-02-12 13:06:17 +03:00
def load(self, im: Image.Image) -> 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-02-12 13:06:17 +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()
GribStubImagePlugin.register_handler(handler)
with Image.open(TEST_FILE) as im:
assert handler.opened
assert not handler.loaded
im.load()
assert handler.loaded
temp_file = str(tmp_path / "temp.grib")
im.save(temp_file)
assert handler.saved
GribStubImagePlugin._handler = None