Pillow/Tests/oss-fuzz/test_fuzzers.py

41 lines
1.0 KiB
Python
Raw Normal View History

2021-03-14 14:21:02 +03:00
import glob
import subprocess
import fuzzers
import pytest
2021-03-14 14:21:02 +03:00
from PIL import Image
@pytest.mark.parametrize(
"path",
subprocess.check_output("find Tests/images -type f", shell=True).split(b"\n"),
)
2021-03-14 14:21:02 +03:00
def test_fuzz_images(path):
fuzzers.enable_decompressionbomb_error()
try:
with open(path, "rb") as f:
2021-03-14 14:21:02 +03:00
fuzzers.fuzz_image(f.read())
assert True
except (OSError, SyntaxError, MemoryError, ValueError, NotImplementedError):
# Known exceptions that are through from Pillow
assert True
except (
Image.DecompressionBombError,
Image.DecompressionBombWarning,
Image.UnidentifiedImageError,
):
2021-03-14 14:21:02 +03:00
# Known Image.* exceptions
assert True
@pytest.mark.parametrize(
"path", subprocess.check_output("find Tests/fonts -type f", shell=True).split(b"\n")
)
2021-03-14 14:21:02 +03:00
def test_fuzz_fonts(path):
if not path or b"LICENSE.txt" in path or b".pil" in path:
2021-03-14 14:21:02 +03:00
return
with open(path, "rb") as f:
2021-03-14 14:21:02 +03:00
fuzzers.fuzz_font(f.read())
assert True