2020-02-17 21:23:51 +03:00
|
|
|
import pickle
|
|
|
|
|
2020-04-16 11:31:28 +03:00
|
|
|
import pytest
|
2014-04-22 09:54:16 +04:00
|
|
|
from PIL import Image
|
|
|
|
|
2020-04-16 12:56:12 +03:00
|
|
|
from .helper import skip_unless_feature
|
|
|
|
|
2019-05-11 07:01:23 +03:00
|
|
|
|
2020-04-16 11:31:28 +03:00
|
|
|
def helper_pickle_file(
|
|
|
|
tmp_path, pickle, protocol=0, test_file="Tests/images/hopper.jpg", mode=None
|
|
|
|
):
|
2020-03-22 22:54:54 +03:00
|
|
|
# Arrange
|
2020-04-16 11:31:28 +03:00
|
|
|
with Image.open(test_file) as im:
|
2020-03-22 22:54:54 +03:00
|
|
|
filename = str(tmp_path / "temp.pkl")
|
|
|
|
if mode:
|
|
|
|
im = im.convert(mode)
|
|
|
|
|
|
|
|
# Act
|
|
|
|
with open(filename, "wb") as f:
|
|
|
|
pickle.dump(im, f, protocol)
|
|
|
|
with open(filename, "rb") as f:
|
|
|
|
loaded_im = pickle.load(f)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert im == loaded_im
|
|
|
|
|
|
|
|
|
|
|
|
def helper_pickle_string(
|
|
|
|
pickle, protocol=0, test_file="Tests/images/hopper.jpg", mode=None
|
|
|
|
):
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
if mode:
|
|
|
|
im = im.convert(mode)
|
|
|
|
|
|
|
|
# Act
|
|
|
|
dumped_string = pickle.dumps(im, protocol)
|
|
|
|
loaded_im = pickle.loads(dumped_string)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert im == loaded_im
|
|
|
|
|
|
|
|
|
2020-04-16 11:31:28 +03:00
|
|
|
@pytest.mark.parametrize(
|
2020-04-16 11:44:28 +03:00
|
|
|
("test_file", "test_mode"),
|
|
|
|
[
|
|
|
|
("Tests/images/hopper.jpg", None),
|
|
|
|
("Tests/images/hopper.jpg", "L"),
|
|
|
|
("Tests/images/hopper.jpg", "PA"),
|
2020-04-16 12:56:12 +03:00
|
|
|
pytest.param(
|
|
|
|
"Tests/images/hopper.webp", None, marks=skip_unless_feature("webp")
|
|
|
|
),
|
2020-04-16 11:44:28 +03:00
|
|
|
("Tests/images/test-card.png", None),
|
|
|
|
("Tests/images/zero_bb.png", None),
|
|
|
|
("Tests/images/zero_bb_scale2.png", None),
|
|
|
|
("Tests/images/non_zero_bb.png", None),
|
|
|
|
("Tests/images/non_zero_bb_scale2.png", None),
|
|
|
|
("Tests/images/p_trns_single.png", None),
|
|
|
|
("Tests/images/pil123p.png", None),
|
|
|
|
("Tests/images/itxt_chunks.png", None),
|
|
|
|
],
|
2020-04-16 11:31:28 +03:00
|
|
|
)
|
2020-04-16 11:44:28 +03:00
|
|
|
def test_pickle_image(tmp_path, test_file, test_mode):
|
2020-03-22 22:54:54 +03:00
|
|
|
# Act / Assert
|
|
|
|
for protocol in range(0, pickle.HIGHEST_PROTOCOL + 1):
|
2020-04-16 15:52:10 +03:00
|
|
|
helper_pickle_string(pickle, protocol, test_file, test_mode)
|
|
|
|
helper_pickle_file(tmp_path, pickle, protocol, test_file, test_mode)
|
2020-03-22 22:54:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_pickle_la_mode_with_palette(tmp_path):
|
|
|
|
# Arrange
|
|
|
|
filename = str(tmp_path / "temp.pkl")
|
|
|
|
with Image.open("Tests/images/hopper.jpg") as im:
|
|
|
|
im = im.convert("PA")
|
|
|
|
|
|
|
|
# Act / Assert
|
|
|
|
for protocol in range(0, pickle.HIGHEST_PROTOCOL + 1):
|
|
|
|
im.mode = "LA"
|
|
|
|
with open(filename, "wb") as f:
|
|
|
|
pickle.dump(im, f, protocol)
|
|
|
|
with open(filename, "rb") as f:
|
|
|
|
loaded_im = pickle.load(f)
|
|
|
|
|
|
|
|
im.mode = "PA"
|
|
|
|
assert im == loaded_im
|
2020-04-17 11:21:57 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_pickle_tell():
|
|
|
|
# Arrange
|
|
|
|
image = Image.open("Tests/images/hopper.webp")
|
|
|
|
|
|
|
|
# Act: roundtrip
|
|
|
|
unpickled_image = pickle.loads(pickle.dumps(image))
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert unpickled_image.tell() == 0
|