[_k_e_r_n_test] rewrite as pytest-style; fix indentation

This commit is contained in:
Cosimo Lupo 2017-11-02 10:35:02 +00:00
parent 045287aa25
commit 240ef765a8

View File

@ -1,30 +1,33 @@
from __future__ import print_function, absolute_import from __future__ import print_function, absolute_import
from fontTools.misc.py23 import * from fontTools.misc.py23 import *
from fontTools import ttLib
import unittest
from fontTools.ttLib.tables._k_e_r_n import KernTable_format_0 from fontTools.ttLib.tables._k_e_r_n import KernTable_format_0
import pytest
class MockFont(object): class MockFont(object):
def getGlyphOrder(self): def getGlyphOrder(self):
return ["glyph00000", "glyph00001", "glyph00002", "glyph00003"] return ["glyph00000", "glyph00001", "glyph00002", "glyph00003"]
def getGlyphName(self, glyphID): def getGlyphName(self, glyphID):
return "glyph%.5d" % glyphID return "glyph%.5d" % glyphID
class KernTable_format_0_Test(unittest.TestCase):
def test_decompileBadGlyphId(self): class KernTable_format_0_Test(object):
subtable = KernTable_format_0()
subtable.apple = False def test_decompileBadGlyphId(self):
subtable.decompile( b'\x00' * 6 subtable = KernTable_format_0()
+ b'\x00' + b'\x02' + b'\x00' * 6 subtable.apple = False
+ b'\x00' + b'\x01' + b'\x00' + b'\x03' + b'\x00' + b'\x01' subtable.decompile(
+ b'\x00' + b'\x01' + b'\xFF' + b'\xFF' + b'\x00' + b'\x02', b'\x00' * 6 +
MockFont()) b'\x00' + b'\x02' + b'\x00' * 6 +
self.assertEqual(subtable[("glyph00001", "glyph00003")], 1) b'\x00' + b'\x01' + b'\x00' + b'\x03' + b'\x00' + b'\x01' +
self.assertEqual(subtable[("glyph00001", "glyph65535")], 2) b'\x00' + b'\x01' + b'\xFF' + b'\xFF' + b'\x00' + b'\x02',
MockFont())
assert subtable[("glyph00001", "glyph00003")] == 1
assert subtable[("glyph00001", "glyph65535")] == 2
if __name__ == "__main__": if __name__ == "__main__":
import sys import sys
sys.exit(unittest.main()) sys.exit(pytest.main(sys.argv))