Pillow/Tests/test_webp_leaks.py

24 lines
505 B
Python
Raw Normal View History

2015-02-23 12:24:33 +03:00
from io import BytesIO
from PIL import Image
from .helper import PillowLeakTestCase, skip_unless_feature
2015-02-23 12:24:33 +03:00
test_file = "Tests/images/hopper.webp"
2018-03-03 12:54:00 +03:00
@skip_unless_feature("webp")
2018-01-24 17:02:33 +03:00
class TestWebPLeaks(PillowLeakTestCase):
mem_limit = 3 * 1024 # kb
2018-01-24 17:02:33 +03:00
iterations = 100
2015-02-23 12:24:33 +03:00
def test_leak_load(self):
2019-06-13 18:54:46 +03:00
with open(test_file, "rb") as f:
2015-02-23 12:24:33 +03:00
im_data = f.read()
2018-01-24 17:02:33 +03:00
def core():
2015-02-23 12:24:33 +03:00
with Image.open(BytesIO(im_data)) as im:
im.load()
2018-01-24 17:02:33 +03:00
self._test_leak(core)