Pillow/Tests/test_file_palm.py

70 lines
1.4 KiB
Python
Raw Normal View History

2014-07-01 23:18:40 +04:00
import os.path
2020-03-02 17:02:19 +03:00
import subprocess
2014-07-01 23:18:40 +04:00
import pytest
2020-03-02 17:02:19 +03:00
from PIL import Image
2021-03-21 23:48:13 +03:00
from .helper import assert_image_equal, hopper, magick_command
2014-07-01 23:18:40 +04:00
2014-08-28 15:44:19 +04:00
2020-03-02 17:02:19 +03:00
def helper_save_as_palm(tmp_path, mode):
# Arrange
im = hopper(mode)
outfile = str(tmp_path / ("temp_" + mode + ".palm"))
2014-07-01 23:18:40 +04:00
2020-03-02 17:02:19 +03:00
# Act
im.save(outfile)
2014-07-01 23:18:40 +04:00
2020-03-02 17:02:19 +03:00
# Assert
assert os.path.isfile(outfile)
assert os.path.getsize(outfile) > 0
2014-07-01 23:18:40 +04:00
2014-08-28 15:44:19 +04:00
2021-03-21 23:48:13 +03:00
def open_with_magick(magick, tmp_path, f):
2020-03-02 17:02:19 +03:00
outfile = str(tmp_path / "temp.png")
rc = subprocess.call(
2021-03-21 23:48:13 +03:00
magick + [f, outfile], stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT
2020-03-02 17:02:19 +03:00
)
if rc:
raise OSError
return Image.open(outfile)
2014-07-01 23:53:30 +04:00
2020-03-02 17:02:19 +03:00
def roundtrip(tmp_path, mode):
2021-03-21 23:48:13 +03:00
magick = magick_command()
if not magick:
2020-03-02 17:02:19 +03:00
return
2014-07-01 23:53:30 +04:00
2020-03-02 17:02:19 +03:00
im = hopper(mode)
outfile = str(tmp_path / "temp.palm")
2014-07-01 23:53:30 +04:00
2020-03-02 17:02:19 +03:00
im.save(outfile)
2021-03-21 23:48:13 +03:00
converted = open_with_magick(magick, tmp_path, outfile)
2020-03-02 17:02:19 +03:00
assert_image_equal(converted, im)
2014-08-28 15:44:19 +04:00
2019-04-15 11:07:15 +03:00
2020-03-02 17:02:19 +03:00
def test_monochrome(tmp_path):
# Arrange
mode = "1"
2019-04-15 11:07:15 +03:00
2020-03-02 17:02:19 +03:00
# Act / Assert
helper_save_as_palm(tmp_path, mode)
roundtrip(tmp_path, mode)
2014-07-01 23:53:30 +04:00
2020-03-02 17:02:19 +03:00
2020-06-14 21:08:27 +03:00
@pytest.mark.xfail(reason="Palm P image is wrong")
2020-03-02 17:02:19 +03:00
def test_p_mode(tmp_path):
# Arrange
mode = "P"
# Act / Assert
helper_save_as_palm(tmp_path, mode)
roundtrip(tmp_path, mode)
2022-10-03 08:57:42 +03:00
@pytest.mark.parametrize("mode", ("L", "RGB"))
def test_oserror(tmp_path, mode):
with pytest.raises(OSError):
2020-03-02 17:02:19 +03:00
helper_save_as_palm(tmp_path, mode)