[instancer] add tests for iup delta optimization

This commit is contained in:
Qunxin Liu 2024-01-26 15:45:32 -08:00
parent 0cbc812340
commit 84771374e8
30 changed files with 58 additions and 9 deletions

View file

@ -11,3 +11,6 @@ INSTANCES:
wght=400,wdth=100,opsz=14
wght=200:300,opsz=14
IUP_OPTIONS:
Yes
No

View file

@ -9,3 +9,7 @@ SUBSETS:
INSTANCES:
wdth=112.5
IUP_OPTIONS:
Yes
No

View file

@ -10,3 +10,7 @@ SUBSETS:
INSTANCES:
wdth=75
IUP_OPTIONS:
Yes
No

View file

@ -9,3 +9,7 @@ SUBSETS:
INSTANCES:
wght=300
IUP_OPTIONS:
Yes
No

View file

@ -11,3 +11,7 @@ SUBSETS:
INSTANCES:
wght=300:600,wdth=85
wght=200:300:500,wdth=80:90
IUP_OPTIONS:
Yes
No

View file

@ -11,3 +11,7 @@ INSTANCES:
wght=300:600
wght=500:800
wght=200:600,wdth=80:90,CTGR=20:60
IUP_OPTIONS:
Yes
No

View file

@ -9,3 +9,7 @@ SUBSETS:
INSTANCES:
SPED=25,YEXT=520,wght=100:400,slnt=18
IUP_OPTIONS:
Yes
No

View file

@ -10,3 +10,7 @@ SUBSETS:
INSTANCES:
wght=300:600
wght=500:800
IUP_OPTIONS:
Yes
No

View file

@ -10,3 +10,7 @@ SUBSETS:
INSTANCES:
wght=400
IUP_OPTIONS:
Yes
No

View file

@ -27,16 +27,17 @@ def strip_check_sum (ttx_string):
ttx_string, count=1)
def generate_expected_output(input_file, unicodes, profile_flags, instance_flags, output_directory, font_name, no_fonttools):
def generate_expected_output(input_file, unicodes, profile_flags, instance_flags, iup_optimize, output_directory, font_name, no_fonttools):
input_path = input_file
if not no_fonttools and instance_flags:
instance_path = os.path.join(tempfile.mkdtemp (), font_name)
args = ["fonttools", "varLib.instancer",
"--no-overlap-flag",
"--no-recalc-timestamp",
"--no-optimize",
"--output=%s" % instance_path,
input_file]
"--no-recalc-timestamp"]
if not iup_optimize:
args.extend(["--no-optimize",])
args.extend(["--output=%s" % instance_path,
input_file])
args.extend(instance_flags)
check_call(args)
input_path = instance_path
@ -75,6 +76,8 @@ def generate_expected_output(input_file, unicodes, profile_flags, instance_flags
args.extend(profile_flags)
if instance_flags:
args.extend(["--instance=%s" % ','.join(instance_flags)])
if iup_optimize:
args.extend(["--optimize",])
check_call(args)
with io.StringIO () as fp:
@ -111,4 +114,4 @@ for path in args:
no_fonttools = ("no_fonttools" in test.options)
print("Creating subset %s/%s" % (output_directory, font_name))
generate_expected_output(test.font_path, unicodes, test.get_profile_flags(),
test.get_instance_flags(), output_directory, font_name, no_fonttools=no_fonttools)
test.get_instance_flags(), test.iup_optimize, output_directory, font_name, no_fonttools=no_fonttools)

View file

@ -60,6 +60,8 @@ def run_test (test, should_check_ots, preprocess):
cli_args.extend (test.get_profile_flags ())
if test.get_instance_flags ():
cli_args.extend (["--instance=%s" % ','.join(test.get_instance_flags ())])
if test.iup_optimize:
cli_args.extend (["--optimize",])
ret = subset_cmd (cli_args)
if ret != "success":

View file

@ -5,11 +5,12 @@ import os
# A single test in a subset test suite. Identifies a font
# a subsetting profile, and a subset to be cut.
class Test:
def __init__(self, font_path, profile_path, subset, instance, options):
def __init__(self, font_path, profile_path, subset, instance, iup_optimize, options):
self.font_path = font_path
self.profile_path = profile_path
self.subset = subset
self.instance = instance
self.iup_optimize = iup_optimize
self.options = options
def unicodes(self):
@ -29,6 +30,8 @@ class Test:
return self.instance
else:
s = "." + self.instance.replace(':', '-')
if self.iup_optimize:
s += ".iup_optimize"
return s
def get_profile_flags(self):
@ -79,6 +82,7 @@ class SubsetTestSuite:
self.subsets = []
self.instances = []
self.options = []
self.iup_options = []
self._parse(definition)
def get_output_directory(self):
@ -101,9 +105,13 @@ class SubsetTestSuite:
for subset in self.subsets:
if self.instances:
for instance in self.instances:
yield Test(font, profile, subset, instance, options=self.options)
if self.iup_options:
for iup_option in self.iup_options:
yield Test(font, profile, subset, instance, iup_option == 'Yes', options=self.options)
else:
yield Test(font, profile, subset, instance, False, options=self.options)
else:
yield Test(font, profile, subset, "", options=self.options)
yield Test(font, profile, subset, "", False, options=self.options)
def _base_path(self):
return os.path.dirname(os.path.dirname(self.test_path))
@ -115,6 +123,7 @@ class SubsetTestSuite:
"SUBSETS:": self.subsets,
"INSTANCES:": self.instances,
"OPTIONS:": self.options,
"IUP_OPTIONS:": self.iup_options,
}
current_destination = None