Pillow/Tests/test_font_bdf.py

25 lines
627 B
Python
Raw Normal View History

2014-07-07 21:03:50 +04:00
from helper import unittest, PillowTestCase
2014-06-10 13:10:47 +04:00
from PIL import FontFile, BdfFontFile
filename = "Tests/images/courB08.bdf"
2014-06-10 13:10:47 +04:00
class TestFontBdf(PillowTestCase):
2014-06-10 13:10:47 +04:00
def test_sanity(self):
with open(filename, "rb") as test_file:
font = BdfFontFile.BdfFontFile(test_file)
2014-06-10 13:10:47 +04:00
self.assertIsInstance(font, FontFile.FontFile)
self.assertEqual(len([_f for _f in font.glyph if _f]), 190)
2015-07-03 08:03:25 +03:00
def test_invalid_file(self):
with open("Tests/images/flower.jpg", "rb") as fp:
2017-09-01 14:05:40 +03:00
self.assertRaises(SyntaxError, BdfFontFile.BdfFontFile, fp)
2015-07-03 08:03:25 +03:00
2014-06-10 13:10:47 +04:00
if __name__ == '__main__':
unittest.main()