Update test_font_pcf_charsets to adhere to test architecture changes

This commit is contained in:
Marcin Jaworski 2020-03-31 10:56:43 +02:00
parent 85f62c424d
commit 37ee51de88

View File

@ -1,9 +1,8 @@
from .helper import PillowTestCase import os
from PIL import Image, FontFile, PcfFontFile from PIL import FontFile, Image, ImageDraw, ImageFont, PcfFontFile
from PIL import ImageFont, ImageDraw
codecs = dir(Image.core) from .helper import assert_image_equal, assert_image_similar, skip_unless_feature
fontname = "Tests/fonts/ter-x20b.pcf" fontname = "Tests/fonts/ter-x20b.pcf"
@ -26,82 +25,96 @@ charsets = {
} }
class TestFontPcf(PillowTestCase): pytestmark = skip_unless_feature("zlib")
def setUp(self):
if "zip_encoder" not in codecs or "zip_decoder" not in codecs:
self.skipTest("zlib support not available")
def save_font(self, encoding):
with open(fontname, "rb") as test_file:
font = PcfFontFile.PcfFontFile(test_file, encoding)
self.assertIsInstance(font, FontFile.FontFile)
# check the number of characters in the font
self.assertEqual(
len([_f for _f in font.glyph if _f]), charsets[encoding]["glyph_count"]
)
tempname = self.tempfile("temp.pil") def save_font(request, tmp_path, encoding):
self.addCleanup(self.delete_tempfile, tempname[:-4] + ".pbm") with open(fontname, "rb") as test_file:
font.save(tempname) font = PcfFontFile.PcfFontFile(test_file, encoding)
assert isinstance(font, FontFile.FontFile)
# check the number of characters in the font
assert len([_f for _f in font.glyph if _f]) == charsets[encoding]["glyph_count"]
with Image.open(tempname.replace(".pil", ".pbm")) as loaded: tempname = str(tmp_path / "temp.pil")
with Image.open("Tests/fonts/ter-x20b-%s.pbm" % encoding) as target:
self.assert_image_equal(loaded, target)
with open(tempname, "rb") as f_loaded: def delete_tempfile():
with open("Tests/fonts/ter-x20b-%s.pil" % encoding, "rb") as f_target: try:
self.assertEqual(f_loaded.read(), f_target.read()) os.remove(tempname[:-4] + ".pbm")
return tempname except OSError:
pass # report?
def _test_sanity(self, encoding): request.addfinalizer(delete_tempfile)
self.save_font(encoding) font.save(tempname)
def test_sanity_iso8859_1(self): with Image.open(tempname.replace(".pil", ".pbm")) as loaded:
self._test_sanity("iso8859-1") with Image.open("Tests/fonts/ter-x20b-%s.pbm" % encoding) as target:
assert_image_equal(loaded, target)
def test_sanity_iso8859_2(self): with open(tempname, "rb") as f_loaded:
self._test_sanity("iso8859-2") with open("Tests/fonts/ter-x20b-%s.pil" % encoding, "rb") as f_target:
assert f_loaded.read() == f_target.read()
return tempname
def test_sanity_cp1250(self):
self._test_sanity("cp1250")
def _test_draw(self, encoding): def _test_sanity(request, tmp_path, encoding):
tempname = self.save_font(encoding) save_font(request, tmp_path, encoding)
font = ImageFont.load(tempname)
im = Image.new("L", (150, 30), "white")
draw = ImageDraw.Draw(im)
message = charsets[encoding]["message"].encode(encoding)
draw.text((0, 0), message, "black", font=font)
with Image.open(charsets[encoding]["image1"]) as target:
self.assert_image_similar(im, target, 0)
def test_draw_iso8859_1(self):
self._test_draw("iso8859-1")
def test_draw_iso8859_2(self): def test_sanity_iso8859_1(request, tmp_path):
self._test_draw("iso8859-2") _test_sanity(request, tmp_path, "iso8859-1")
def test_draw_cp1250(self):
self._test_draw("cp1250")
def _test_textsize(self, encoding): def test_sanity_iso8859_2(request, tmp_path):
tempname = self.save_font(encoding) _test_sanity(request, tmp_path, "iso8859-2")
font = ImageFont.load(tempname)
for i in range(255):
(dx, dy) = font.getsize(bytearray([i]))
self.assertEqual(dy, 20)
self.assertIn(dx, (0, 10))
message = charsets[encoding]["message"].encode(encoding)
for l in range(len(message)):
msg = message[: l + 1]
self.assertEqual(font.getsize(msg), (len(msg) * 10, 20))
def test_textsize_iso8859_1(self):
self._test_textsize("iso8859-1")
def test_textsize_iso8859_2(self): def test_sanity_cp1250(request, tmp_path):
self._test_textsize("iso8859-2") _test_sanity(request, tmp_path, "cp1250")
def test_textsize_cp1250(self):
self._test_textsize("cp1250")
def _test_draw(request, tmp_path, encoding):
tempname = save_font(request, tmp_path, encoding)
font = ImageFont.load(tempname)
im = Image.new("L", (150, 30), "white")
draw = ImageDraw.Draw(im)
message = charsets[encoding]["message"].encode(encoding)
draw.text((0, 0), message, "black", font=font)
with Image.open(charsets[encoding]["image1"]) as target:
assert_image_similar(im, target, 0)
def test_draw_iso8859_1(request, tmp_path):
_test_draw(request, tmp_path, "iso8859-1")
def test_draw_iso8859_2(request, tmp_path):
_test_draw(request, tmp_path, "iso8859-2")
def test_draw_cp1250(request, tmp_path):
_test_draw(request, tmp_path, "cp1250")
def _test_textsize(request, tmp_path, encoding):
tempname = save_font(request, tmp_path, encoding)
font = ImageFont.load(tempname)
for i in range(255):
(dx, dy) = font.getsize(bytearray([i]))
assert dy == 20
assert dx in (0, 10)
message = charsets[encoding]["message"].encode(encoding)
for l in range(len(message)):
msg = message[: l + 1]
assert font.getsize(msg) == (len(msg) * 10, 20)
def test_textsize_iso8859_1(request, tmp_path):
_test_textsize(request, tmp_path, "iso8859-1")
def test_textsize_iso8859_2(request, tmp_path):
_test_textsize(request, tmp_path, "iso8859-2")
def test_textsize_cp1250(request, tmp_path):
_test_textsize(request, tmp_path, "cp1250")