37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
''' Test of script named in testname below
|
|
'''
|
|
__url__ = 'https://github.com/silnrsi/pysilfont'
|
|
__copyright__ = 'Copyright (c) 2018 SIL International (https://www.sil.org)'
|
|
__license__ = 'Released under the MIT License (https://opensource.org/licenses/MIT)'
|
|
__author__ = 'David Raymond'
|
|
|
|
import silfont.util
|
|
|
|
# Next 7 lines of code may be test-specific
|
|
import silfont.scripts.psfbuildcomp as testcommand
|
|
testname = "psfbuildcomp"
|
|
cl = "psfbuildcomp tests/input/font-psf-test/source/PsfTest-Regular.ufo -i tests/input/psfbuildcomp.txt -l local/testresults/ufo/psfbuildcomp.log -p loglevel=i"
|
|
outfont = "local/testresults/ufo/psfbuildcomp.ufo" # Set to None for commands which don't output a font
|
|
diffexts = [".ufo", ".log"] # List of extensions of all output files
|
|
exp_errors = 9 # These may need updating if the test ufo is updated
|
|
exp_warnings = 5 # The test ufo should have some errors/warnings to test the code!
|
|
|
|
# Code after this can be the same for most/all tests; if needed to be different for a test remove this comment!
|
|
|
|
def test_run():
|
|
result = silfont.util.test_run("UFO", cl, testcommand, outfont, exp_errors, exp_warnings)
|
|
assert result
|
|
|
|
def test_diffs(): # Do a diff on all output files
|
|
result = silfont.util.test_diffs("ufo", testname, diffexts)
|
|
assert result
|
|
|
|
if __name__ == "__main__":
|
|
test_run()
|
|
test_diffs()
|
|
|
|
|
|
|
|
|
|
|