forked from python-pillow/Pillow
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_file_gribstub.py
More file actions
90 lines (63 loc) · 2.12 KB
/
Copy pathtest_file_gribstub.py
File metadata and controls
90 lines (63 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from __future__ import annotations
from typing import IO
import pytest
from PIL import GribStubImagePlugin, Image, ImageFile
from .helper import hopper
TYPE_CHECKING = False
if TYPE_CHECKING:
from pathlib import Path
TEST_FILE = "Tests/images/WAlaska.wind.7days.grb"
def test_open() -> None:
# Act
with Image.open(TEST_FILE) as im:
# Assert
assert im.format == "GRIB"
# Dummy data from the stub
assert im.mode == "F"
assert im.size == (1, 1)
def test_invalid_file() -> None:
# Arrange
invalid_file = "Tests/images/flower.jpg"
# Act / Assert
with pytest.raises(SyntaxError):
GribStubImagePlugin.GribStubImageFile(invalid_file)
def test_load() -> None:
# Arrange
with Image.open(TEST_FILE) as im:
# Act / Assert: stub cannot load without an implemented handler
with pytest.raises(OSError):
im.load()
def test_save(tmp_path: Path) -> None:
# Arrange
im = hopper()
tmpfile = tmp_path / "temp.grib"
# Act / Assert: stub cannot save without an implemented handler
with pytest.raises(OSError):
im.save(tmpfile)
def test_handler(tmp_path: Path) -> None:
class TestHandler(ImageFile.StubHandler):
opened = False
loaded = False
saved = False
def open(self, im: Image.Image) -> None:
self.opened = True
def load(self, im: ImageFile.ImageFile) -> Image.Image:
self.loaded = True
assert im.fp is not None
im.fp.close()
return Image.new("RGB", (1, 1))
def is_loaded(self) -> bool:
return self.loaded
def save(self, im: Image.Image, fp: IO[bytes], filename: str) -> None:
self.saved = True
handler = TestHandler()
GribStubImagePlugin.register_handler(handler)
with Image.open(TEST_FILE) as im:
assert handler.opened
assert not handler.is_loaded()
im.load()
assert handler.is_loaded()
temp_file = tmp_path / "temp.grib"
im.save(temp_file)
assert handler.saved
GribStubImagePlugin.register_handler(None)