This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
inter-font/misc/pylib/robofab/test/test_objectsFL.py
Rasmus Andersson 8234b62ab7 Speeds up font compilation by around 200%
Cython is used to compile some hot paths into native Python extensions.
These hot paths were identified through running ufocompile with the hotshot
profiler and then converting file by file to Cython, starting with the "hottest"
paths and continuing until returns were deminishing. This means that only a few
Python files were converted to Cython.

Closes #23
Closes #20 (really this time)
2017-09-04 11:12:34 -04:00

54 lines
1.3 KiB
Python
Executable file

"""This test suite for various FontLab-specific tests."""
import FL # needed to quickly raise ImportError if run outside of FL
import os
import tempfile
import unittest
from robofab.world import NewFont
from robofab.test.testSupport import getDemoFontPath, getDemoFontGlyphSetPath
from robofab.tools.glifImport import importAllGlifFiles
from robofab.pens.digestPen import DigestPointPen
from robofab.pens.adapterPens import SegmentToPointPen
def getDigests(font):
digests = {}
for glyphName in font.keys():
pen = DigestPointPen()
font[glyphName].drawPoints(pen)
digests[glyphName] = pen.getDigest()
return digests
class FLTestCase(unittest.TestCase):
def testUFOVersusGlifImport(self):
font = NewFont()
font.readUFO(getDemoFontPath(), doProgress=False)
d1 = getDigests(font)
font.close(False)
font = NewFont()
importAllGlifFiles(font.naked(), getDemoFontGlyphSetPath(), doProgress=False)
d2 = getDigests(font)
self.assertEqual(d1, d2)
font.close(False)
def testTwoUntitledFonts(self):
font1 = NewFont()
font2 = NewFont()
font1.unitsPerEm = 1024
font2.unitsPerEm = 2048
self.assertNotEqual(font1.unitsPerEm, font2.unitsPerEm)
font1.update()
font2.update()
font1.close(False)
font2.close(False)
if __name__ == "__main__":
from robofab.test.testSupport import runTests
runTests()