mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 05:06:49 +03:00
Merge pull request #7748 from radarhere/test_font_leaks
This commit is contained in:
commit
e09366307c
|
@ -1,8 +1,10 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from PIL import Image, ImageDraw, ImageFont
|
from PIL import Image, ImageDraw, ImageFont, _util
|
||||||
|
|
||||||
from .helper import PillowLeakTestCase, skip_unless_feature
|
from .helper import PillowLeakTestCase, features, skip_unless_feature
|
||||||
|
|
||||||
|
original_core = ImageFont.core
|
||||||
|
|
||||||
|
|
||||||
class TestTTypeFontLeak(PillowLeakTestCase):
|
class TestTTypeFontLeak(PillowLeakTestCase):
|
||||||
|
@ -31,5 +33,11 @@ class TestDefaultFontLeak(TestTTypeFontLeak):
|
||||||
mem_limit = 1024 # k
|
mem_limit = 1024 # k
|
||||||
|
|
||||||
def test_leak(self) -> None:
|
def test_leak(self) -> None:
|
||||||
default_font = ImageFont.load_default()
|
if features.check_module("freetype2"):
|
||||||
|
ImageFont.core = _util.DeferredError(ImportError)
|
||||||
|
try:
|
||||||
|
default_font = ImageFont.load_default()
|
||||||
|
finally:
|
||||||
|
ImageFont.core = original_core
|
||||||
|
|
||||||
self._test_font(default_font)
|
self._test_font(default_font)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user