2020-09-22 17:14:40 +03:00
|
|
|
# Reproductions/tests for crashes/read errors in TiffDecode.c
|
|
|
|
|
|
|
|
# When run in Python, all of these images should fail for
|
|
|
|
# one reason or another, either as a buffer overrun,
|
|
|
|
# unrecognized datastream, or truncated image file.
|
|
|
|
# There shouldn't be any segfaults.
|
|
|
|
#
|
|
|
|
# if run like
|
|
|
|
# `valgrind --tool=memcheck pytest test_tiff_crashes.py 2>&1 | grep TiffDecode.c`
|
|
|
|
# the output should be empty. There may be Python issues
|
|
|
|
# in the valgrind especially if run in a debug Python
|
|
|
|
# version.
|
2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2020-09-22 17:14:40 +03:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
from .helper import on_ci
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
2020-11-01 17:16:38 +03:00
|
|
|
"test_file",
|
|
|
|
[
|
|
|
|
"Tests/images/crash_1.tif",
|
|
|
|
"Tests/images/crash_2.tif",
|
|
|
|
"Tests/images/crash-2020-10-test.tif",
|
2021-01-08 20:45:42 +03:00
|
|
|
"Tests/images/crash-0c7e0e8e11ce787078f00b5b0ca409a167f070e0.tif",
|
2021-01-03 23:35:32 +03:00
|
|
|
"Tests/images/crash-0e16d3bfb83be87356d026d66919deaefca44dac.tif",
|
2021-01-08 20:45:42 +03:00
|
|
|
"Tests/images/crash-1152ec2d1a1a71395b6f2ce6721c38924d025bf3.tif",
|
|
|
|
"Tests/images/crash-1185209cf7655b5aed8ae5e77784dfdd18ab59e9.tif",
|
|
|
|
"Tests/images/crash-338516dbd2f0e83caddb8ce256c22db3bd6dc40f.tif",
|
|
|
|
"Tests/images/crash-4f085cc12ece8cde18758d42608bed6a2a2cfb1c.tif",
|
|
|
|
"Tests/images/crash-86214e58da443d2b80820cff9677a38a33dcbbca.tif",
|
|
|
|
"Tests/images/crash-f46f5b2f43c370fe65706c11449f567ecc345e74.tif",
|
2021-01-23 13:36:50 +03:00
|
|
|
"Tests/images/crash-63b1dffefc8c075ddc606c0a2f5fdc15ece78863.tif",
|
2021-03-31 22:04:59 +03:00
|
|
|
"Tests/images/crash-74d2a78403a5a59db1fb0a2b8735ac068a75f6e3.tif",
|
2021-03-31 22:16:43 +03:00
|
|
|
"Tests/images/crash-81154a65438ba5aaeca73fd502fa4850fbde60f8.tif",
|
2021-04-01 00:17:20 +03:00
|
|
|
"Tests/images/crash-0da013a13571cc8eb457a39fee8db18f8a3c7127.tif",
|
2020-11-01 17:16:38 +03:00
|
|
|
],
|
2020-09-22 17:14:40 +03:00
|
|
|
)
|
|
|
|
@pytest.mark.filterwarnings("ignore:Possibly corrupt EXIF data")
|
|
|
|
@pytest.mark.filterwarnings("ignore:Metadata warning")
|
2021-08-24 11:03:10 +03:00
|
|
|
@pytest.mark.filterwarnings("ignore:Truncated File Read")
|
2024-02-12 13:06:17 +03:00
|
|
|
def test_tiff_crashes(test_file: str) -> None:
|
2020-09-22 17:14:40 +03:00
|
|
|
try:
|
|
|
|
with Image.open(test_file) as im:
|
|
|
|
im.load()
|
|
|
|
except FileNotFoundError:
|
2024-03-02 05:12:17 +03:00
|
|
|
if on_ci():
|
|
|
|
raise
|
|
|
|
pytest.skip("test image not found")
|
2020-09-22 17:14:40 +03:00
|
|
|
except OSError:
|
|
|
|
pass
|