Pillow/Tests/oss-fuzz/test_fuzzers.py

63 lines
1.6 KiB
Python
Raw Normal View History

2021-03-14 14:21:02 +03:00
import subprocess
2021-03-14 15:27:47 +03:00
import sys
2021-03-14 14:21:02 +03:00
import fuzzers
2021-04-10 13:03:39 +03:00
import packaging
import pytest
2021-04-10 13:03:39 +03:00
from PIL import Image, features
2021-03-14 14:21:02 +03:00
if sys.platform.startswith("win32"):
pytest.skip("Fuzzer is linux only", allow_module_level=True)
2021-04-10 17:58:01 +03:00
if features.check("libjpeg_turbo"):
version = packaging.version.parse(features.version("libjpeg_turbo"))
2021-04-10 13:03:39 +03:00
if version.major == 2 and version.minor == 0:
2021-04-10 17:58:01 +03:00
pytestmark = pytest.mark.valgrind_known_error(
reason="Known failing with libjpeg_turbo 2.0"
)
@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,
OverflowError,
):
2021-03-14 14:21:02 +03:00
# 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
finally:
fuzzers.disable_decompressionbomb_error()
2021-03-14 14:21:02 +03:00
@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):
2021-03-15 02:18:07 +03:00
if not path:
2021-03-14 14:21:02 +03:00
return
with open(path, "rb") as f:
try:
fuzzers.fuzz_font(f.read())
2021-03-17 15:16:35 +03:00
except (Image.DecompressionBombError, Image.DecompressionBombWarning):
pass
2021-03-14 14:21:02 +03:00
assert True