2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
import pytest
|
2020-08-07 13:28:33 +03:00
|
|
|
|
2020-02-18 01:03:32 +03:00
|
|
|
from PIL import Image, ImagePalette
|
2017-10-04 16:34:56 +03:00
|
|
|
|
2020-02-18 01:03:32 +03:00
|
|
|
from .helper import assert_image_similar, hopper, skip_unless_feature
|
2019-07-06 23:40:53 +03:00
|
|
|
|
2020-02-18 15:30:56 +03:00
|
|
|
MicImagePlugin = pytest.importorskip(
|
|
|
|
"PIL.MicImagePlugin", reason="olefile not installed"
|
|
|
|
)
|
2020-02-19 20:26:52 +03:00
|
|
|
pytestmark = skip_unless_feature("libtiff")
|
2020-02-18 15:30:56 +03:00
|
|
|
TEST_FILE = "Tests/images/hopper.mic"
|
2020-02-12 19:29:19 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_sanity() -> None:
|
2020-02-12 19:29:19 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
im.load()
|
|
|
|
assert im.mode == "RGBA"
|
|
|
|
assert im.size == (128, 128)
|
|
|
|
assert im.format == "MIC"
|
|
|
|
|
|
|
|
# Adjust for the gamma of 2.2 encoded into the file
|
|
|
|
lut = ImagePalette.make_gamma_lut(1 / 2.2)
|
|
|
|
im = Image.merge("RGBA", [chan.point(lut) for chan in im.split()])
|
2017-03-13 09:18:13 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
im2 = hopper("RGBA")
|
|
|
|
assert_image_similar(im, im2, 10)
|
2017-06-13 23:07:46 +03:00
|
|
|
|
2017-03-13 09:18:13 +03:00
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_n_frames() -> None:
|
2020-02-12 19:29:19 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
assert im.n_frames == 1
|
2017-03-13 09:18:13 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_is_animated() -> None:
|
2020-02-12 19:29:19 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
assert not im.is_animated
|
2017-03-13 09:18:13 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_tell() -> None:
|
2020-02-12 19:29:19 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
assert im.tell() == 0
|
2017-03-13 09:18:13 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_seek() -> None:
|
2020-02-12 19:29:19 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
im.seek(0)
|
|
|
|
assert im.tell() == 0
|
2017-03-13 09:18:13 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
with pytest.raises(EOFError):
|
|
|
|
im.seek(99)
|
|
|
|
assert im.tell() == 0
|
2017-03-13 09:18:13 +03:00
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_close() -> None:
|
2023-03-11 15:11:43 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
pass
|
|
|
|
assert im.ole.fp.closed
|
|
|
|
|
|
|
|
im = Image.open(TEST_FILE)
|
|
|
|
im.close()
|
|
|
|
assert im.ole.fp.closed
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_invalid_file() -> None:
|
2020-02-12 19:29:19 +03:00
|
|
|
# Test an invalid OLE file
|
|
|
|
invalid_file = "Tests/images/flower.jpg"
|
|
|
|
with pytest.raises(SyntaxError):
|
|
|
|
MicImagePlugin.MicImageFile(invalid_file)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
# Test a valid OLE file, but not a MIC file
|
|
|
|
ole_file = "Tests/images/test-ole-file.doc"
|
|
|
|
with pytest.raises(SyntaxError):
|
|
|
|
MicImagePlugin.MicImageFile(ole_file)
|