Pillow/Tests/test_font_leaks.py

34 lines
918 B
Python
Raw Normal View History

from PIL import Image, ImageDraw, ImageFont
from .helper import PillowLeakTestCase, skip_unless_feature
2017-09-02 19:03:56 +03:00
2018-03-03 12:54:00 +03:00
2017-09-02 19:03:56 +03:00
class TestTTypeFontLeak(PillowLeakTestCase):
2021-10-15 17:30:05 +03:00
# fails at iteration 3 in main
2017-09-02 19:03:56 +03:00
iterations = 10
2018-03-04 07:33:44 +03:00
mem_limit = 4096 # k
2017-09-02 19:03:56 +03:00
def _test_font(self, font):
2019-06-13 18:54:24 +03:00
im = Image.new("RGB", (255, 255), "white")
2017-09-02 19:03:56 +03:00
draw = ImageDraw.ImageDraw(im)
2019-06-13 18:54:24 +03:00
self._test_leak(
lambda: draw.text(
(0, 0), "some text " * 1024, font=font, fill="black" # ~10k
)
)
2018-01-27 09:07:24 +03:00
@skip_unless_feature("freetype2")
2017-09-02 19:03:56 +03:00
def test_leak(self):
2019-06-13 18:54:24 +03:00
ttype = ImageFont.truetype("Tests/fonts/FreeMono.ttf", 20)
2017-09-02 19:03:56 +03:00
self._test_font(ttype)
2018-03-03 12:54:00 +03:00
2017-09-02 19:03:56 +03:00
class TestDefaultFontLeak(TestTTypeFontLeak):
2021-10-15 17:30:05 +03:00
# fails at iteration 37 in main
2017-09-02 19:03:56 +03:00
iterations = 100
2018-03-04 07:33:44 +03:00
mem_limit = 1024 # k
2018-01-27 09:07:24 +03:00
2017-09-02 19:03:56 +03:00
def test_leak(self):
default_font = ImageFont.load_default()
self._test_font(default_font)