2018-01-27 01:57:42 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Runs a subsetting test suite. Compares the results of subsetting via harfbuz
|
|
|
|
# to subsetting via fonttools.
|
|
|
|
|
2018-03-29 10:18:47 +02:00
|
|
|
from __future__ import print_function, division, absolute_import
|
2018-01-27 01:57:42 +01:00
|
|
|
|
|
|
|
import io
|
2018-02-22 23:07:52 +01:00
|
|
|
from difflib import unified_diff
|
2018-01-27 01:57:42 +01:00
|
|
|
import os
|
2018-02-15 02:00:18 +01:00
|
|
|
import re
|
2018-01-27 01:57:42 +01:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2018-01-31 04:27:11 +01:00
|
|
|
import tempfile
|
2018-01-27 01:57:42 +01:00
|
|
|
|
|
|
|
from subset_test_suite import SubsetTestSuite
|
|
|
|
|
|
|
|
|
|
|
|
def cmd(command):
|
|
|
|
p = subprocess.Popen (
|
|
|
|
command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
2018-03-07 02:47:40 +01:00
|
|
|
(stdoutdata, stderrdata) = p.communicate()
|
|
|
|
print (stderrdata, end="") # file=sys.stderr
|
|
|
|
return stdoutdata, p.returncode
|
2018-01-27 01:57:42 +01:00
|
|
|
|
2018-01-31 04:27:11 +01:00
|
|
|
def read_binary(file_path):
|
|
|
|
with open(file_path, 'rb') as f:
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
def fail_test(test, cli_args, message):
|
|
|
|
print ('ERROR: %s' % message)
|
|
|
|
print ('Test State:')
|
|
|
|
print (' test.font_path %s' % os.path.abspath(test.font_path))
|
|
|
|
print (' test.profile_path %s' % os.path.abspath(test.profile_path))
|
2018-02-02 03:22:14 +01:00
|
|
|
print (' test.unicodes %s' % test.unicodes())
|
2018-01-31 04:27:11 +01:00
|
|
|
expected_file = os.path.join(test_suite.get_output_directory(),
|
2018-02-02 03:22:14 +01:00
|
|
|
test.get_font_name())
|
|
|
|
print (' expected_file %s' % os.path.abspath(expected_file))
|
2018-01-31 04:27:11 +01:00
|
|
|
return 1
|
2018-01-27 01:57:42 +01:00
|
|
|
|
2018-03-01 00:44:00 +01:00
|
|
|
def run_test(test, should_check_ots):
|
2018-02-02 03:22:14 +01:00
|
|
|
out_file = os.path.join(tempfile.mkdtemp(), test.get_font_name() + '-subset.ttf')
|
|
|
|
cli_args = [hb_subset,
|
|
|
|
"--font-file=" + test.font_path,
|
|
|
|
"--output-file=" + out_file,
|
|
|
|
"--unicodes=%s" % test.unicodes()]
|
2018-02-27 22:15:40 +01:00
|
|
|
cli_args.extend (test.get_profile_flags())
|
2018-02-12 02:46:06 +01:00
|
|
|
print (' '.join(cli_args))
|
2018-01-31 04:27:11 +01:00
|
|
|
_, return_code = cmd(cli_args)
|
2018-01-27 01:57:42 +01:00
|
|
|
|
|
|
|
if return_code:
|
2018-01-31 04:27:11 +01:00
|
|
|
return fail_test(test, cli_args, "%s returned %d" % (' '.join(cli_args), return_code))
|
|
|
|
|
2018-02-08 20:31:27 +01:00
|
|
|
expected_ttx, return_code = run_ttx(os.path.join(test_suite.get_output_directory(),
|
2018-02-02 03:22:14 +01:00
|
|
|
test.get_font_name()))
|
2018-02-08 20:31:27 +01:00
|
|
|
if return_code:
|
2018-02-08 20:30:36 +01:00
|
|
|
return fail_test(test, cli_args, "ttx (expected) returned %d" % (return_code))
|
2018-01-31 04:27:11 +01:00
|
|
|
|
2018-02-08 20:31:27 +01:00
|
|
|
actual_ttx, return_code = run_ttx(out_file)
|
|
|
|
if return_code:
|
2018-02-08 20:30:36 +01:00
|
|
|
return fail_test(test, cli_args, "ttx (actual) returned %d" % (return_code))
|
2018-01-31 04:27:11 +01:00
|
|
|
|
2018-03-07 00:43:08 +01:00
|
|
|
print ("stripping checksums.")
|
2018-02-15 02:00:18 +01:00
|
|
|
expected_ttx = strip_check_sum (expected_ttx)
|
2018-02-22 23:07:52 +01:00
|
|
|
actual_ttx = strip_check_sum (actual_ttx)
|
2018-02-15 02:00:18 +01:00
|
|
|
|
2018-02-08 20:30:36 +01:00
|
|
|
if not actual_ttx == expected_ttx:
|
2018-02-22 23:07:52 +01:00
|
|
|
for line in unified_diff(expected_ttx.splitlines(1), actual_ttx.splitlines(1)):
|
|
|
|
sys.stdout.write(line)
|
|
|
|
sys.stdout.flush()
|
2018-02-08 20:30:36 +01:00
|
|
|
return fail_test(test, cli_args, 'ttx for expected and actual does not match.')
|
2018-01-27 01:57:42 +01:00
|
|
|
|
2018-03-01 00:44:00 +01:00
|
|
|
if should_check_ots:
|
|
|
|
print ("Checking output with ots-sanitize.")
|
|
|
|
if not check_ots(out_file):
|
|
|
|
return fail_test(test, cli_args, 'ots for subsetted file fails.')
|
|
|
|
|
2018-01-27 01:57:42 +01:00
|
|
|
return 0
|
|
|
|
|
2018-02-08 20:30:36 +01:00
|
|
|
def run_ttx(file):
|
2018-03-07 00:43:08 +01:00
|
|
|
print ("ttx %s" % file)
|
2018-02-08 20:31:27 +01:00
|
|
|
cli_args = ["ttx",
|
2018-04-28 20:29:13 +02:00
|
|
|
"-q",
|
2018-02-08 20:31:27 +01:00
|
|
|
"-o-",
|
|
|
|
file]
|
|
|
|
return cmd(cli_args)
|
2018-02-08 20:30:36 +01:00
|
|
|
|
2018-02-15 02:00:18 +01:00
|
|
|
def strip_check_sum (ttx_string):
|
2018-02-22 23:28:18 +01:00
|
|
|
return re.sub ('checkSumAdjustment value=["]0x([0-9a-fA-F])+["]',
|
2018-02-27 22:15:40 +01:00
|
|
|
'checkSumAdjustment value="0x00000000"',
|
2018-03-09 13:13:03 +01:00
|
|
|
ttx_string.decode (), count=1)
|
2018-01-27 01:57:42 +01:00
|
|
|
|
2018-03-09 13:13:03 +01:00
|
|
|
def has_ots ():
|
2018-03-01 00:44:00 +01:00
|
|
|
_, returncode = cmd(["which", "ots-sanitize"])
|
|
|
|
if returncode:
|
|
|
|
print("OTS is not present, skipping all ots checks.")
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
def check_ots (path):
|
|
|
|
ots_report, returncode = cmd(["ots-sanitize", path])
|
|
|
|
if returncode:
|
|
|
|
print("OTS Failure: %s" % ots_report);
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2018-01-27 01:57:42 +01:00
|
|
|
args = sys.argv[1:]
|
|
|
|
if not args or sys.argv[1].find('hb-subset') == -1 or not os.path.exists (sys.argv[1]):
|
|
|
|
print ("First argument does not seem to point to usable hb-subset.")
|
|
|
|
sys.exit (1)
|
|
|
|
hb_subset, args = args[0], args[1:]
|
|
|
|
|
|
|
|
if not len(args):
|
|
|
|
print ("No tests supplied.")
|
|
|
|
sys.exit (1)
|
|
|
|
|
2018-02-08 23:26:18 +01:00
|
|
|
_, returncode = cmd(["which", "ttx"])
|
|
|
|
if returncode:
|
2018-02-09 00:44:24 +01:00
|
|
|
print("TTX is not present, skipping test.")
|
2018-02-09 00:38:58 +01:00
|
|
|
sys.exit (77)
|
2018-02-08 23:26:18 +01:00
|
|
|
|
2018-03-01 00:44:00 +01:00
|
|
|
has_ots = has_ots()
|
|
|
|
|
2018-01-27 01:57:42 +01:00
|
|
|
fails = 0
|
|
|
|
for path in args:
|
|
|
|
with io.open(path, mode="r", encoding="utf-8") as f:
|
|
|
|
print ("Running tests in " + path)
|
|
|
|
test_suite = SubsetTestSuite(path, f.read())
|
|
|
|
for test in test_suite.tests():
|
2018-03-01 00:44:00 +01:00
|
|
|
fails += run_test(test, has_ots)
|
2018-01-27 01:57:42 +01:00
|
|
|
|
|
|
|
if fails != 0:
|
|
|
|
print (str (fails) + " test(s) failed.")
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
print ("All tests passed.")
|