mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
4a4b90c365
* autotyping: --none-return * autotyping: --scalar-return * autotyping: --int-param * autotyping: --float-param * autotyping: --str-param * autotyping: --annotate-named-param tmp_path:pathlib.Path
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
from PIL import Image
|
|
|
|
|
|
def test_overflow() -> None:
|
|
# There is the potential to overflow comparisons in map.c
|
|
# if there are > SIZE_MAX bytes in the image or if
|
|
# the file encodes an offset that makes
|
|
# (offset + size(bytes)) > SIZE_MAX
|
|
|
|
# Note that this image triggers the decompression bomb warning:
|
|
max_pixels = Image.MAX_IMAGE_PIXELS
|
|
Image.MAX_IMAGE_PIXELS = None
|
|
|
|
# This image hits the offset test.
|
|
with Image.open("Tests/images/l2rgb_read.bmp") as im:
|
|
with pytest.raises((ValueError, MemoryError, OSError)):
|
|
im.load()
|
|
|
|
Image.MAX_IMAGE_PIXELS = max_pixels
|
|
|
|
|
|
def test_tobytes() -> None:
|
|
# Note that this image triggers the decompression bomb warning:
|
|
max_pixels = Image.MAX_IMAGE_PIXELS
|
|
Image.MAX_IMAGE_PIXELS = None
|
|
|
|
# Previously raised an access violation on Windows
|
|
with Image.open("Tests/images/l2rgb_read.bmp") as im:
|
|
with pytest.raises((ValueError, MemoryError, OSError)):
|
|
im.tobytes()
|
|
|
|
Image.MAX_IMAGE_PIXELS = max_pixels
|
|
|
|
|
|
@pytest.mark.skipif(sys.maxsize <= 2**32, reason="Requires 64-bit system")
|
|
def test_ysize() -> None:
|
|
numpy = pytest.importorskip("numpy", reason="NumPy not installed")
|
|
|
|
# Should not raise 'Integer overflow in ysize'
|
|
arr = numpy.zeros((46341, 46341), dtype=numpy.uint8)
|
|
Image.fromarray(arr)
|