2020-02-19 11:26:55 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-03-29 08:18:47 +00:00
|
|
|
|
2020-04-05 18:21:58 +00:00
|
|
|
import sys, os, subprocess, hashlib
|
2017-12-07 07:52:55 +00:00
|
|
|
|
2020-07-02 13:37:01 +00:00
|
|
|
def cmd(command):
|
2020-04-05 18:21:58 +00:00
|
|
|
print (command)
|
2020-07-02 13:37:01 +00:00
|
|
|
global process
|
2020-04-05 18:21:58 +00:00
|
|
|
process.stdin.write ((':'.join (command) + '\n').encode ("utf-8"))
|
2020-07-02 13:37:01 +00:00
|
|
|
process.stdin.flush ()
|
|
|
|
return process.stdout.readline().decode ("utf-8").strip ()
|
2017-12-07 07:52:55 +00:00
|
|
|
|
|
|
|
args = sys.argv[1:]
|
2018-11-01 01:25:05 +00:00
|
|
|
|
|
|
|
reference = False
|
|
|
|
if len (args) and args[0] == "--reference":
|
|
|
|
reference = True
|
|
|
|
args = args[1:]
|
|
|
|
|
2020-07-06 07:27:45 +00:00
|
|
|
have_freetype = bool(int(os.getenv ('HAVE_FREETYPE', '1')))
|
2020-07-02 13:04:24 +00:00
|
|
|
|
2018-11-01 01:25:05 +00:00
|
|
|
if not args or args[0].find('hb-shape') == -1 or not os.path.exists (args[0]):
|
2020-05-28 18:21:29 +00:00
|
|
|
sys.exit ("""First argument does not seem to point to usable hb-shape.""")
|
2018-01-09 22:15:54 +00:00
|
|
|
hb_shape, args = args[0], args[1:]
|
2017-12-07 07:52:55 +00:00
|
|
|
|
2020-07-02 13:37:01 +00:00
|
|
|
process = subprocess.Popen ([hb_shape, '--batch'],
|
2018-10-30 07:51:43 +00:00
|
|
|
stdin=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE,
|
2020-07-02 13:37:01 +00:00
|
|
|
stderr=sys.stdout)
|
2018-10-30 07:51:43 +00:00
|
|
|
|
2018-11-24 20:49:33 +00:00
|
|
|
passes = 0
|
2018-01-01 07:47:51 +00:00
|
|
|
fails = 0
|
2018-11-23 12:10:05 +00:00
|
|
|
skips = 0
|
2018-01-01 07:47:51 +00:00
|
|
|
|
2017-12-07 07:52:55 +00:00
|
|
|
if not len (args):
|
2018-01-09 20:58:57 +00:00
|
|
|
args = ['-']
|
2017-12-07 07:52:55 +00:00
|
|
|
|
2018-01-09 20:58:57 +00:00
|
|
|
for filename in args:
|
2017-12-07 07:52:55 +00:00
|
|
|
if not reference:
|
2018-01-09 20:58:57 +00:00
|
|
|
if filename == '-':
|
2017-12-07 07:52:55 +00:00
|
|
|
print ("Running tests from standard input")
|
|
|
|
else:
|
2018-01-09 20:58:57 +00:00
|
|
|
print ("Running tests in " + filename)
|
|
|
|
|
|
|
|
if filename == '-':
|
|
|
|
f = sys.stdin
|
2017-12-07 07:52:55 +00:00
|
|
|
else:
|
2020-03-14 16:33:14 +00:00
|
|
|
f = open (filename, encoding='utf8')
|
2017-12-07 07:52:55 +00:00
|
|
|
|
|
|
|
for line in f:
|
2018-11-24 20:37:01 +00:00
|
|
|
comment = False
|
|
|
|
if line.startswith ("#"):
|
|
|
|
comment = True
|
|
|
|
line = line[1:]
|
|
|
|
|
|
|
|
if line.startswith (' '):
|
|
|
|
if not reference:
|
|
|
|
print ("#%s" % line)
|
|
|
|
continue
|
|
|
|
|
|
|
|
line = line.strip ()
|
|
|
|
if not line:
|
|
|
|
continue
|
|
|
|
|
2017-12-07 08:54:12 +00:00
|
|
|
fontfile, options, unicodes, glyphs_expected = line.split (":")
|
2020-07-02 13:04:24 +00:00
|
|
|
options = options.split ()
|
2018-11-23 12:10:05 +00:00
|
|
|
if fontfile.startswith ('/') or fontfile.startswith ('"/'):
|
2020-03-14 16:39:00 +00:00
|
|
|
if os.name == 'nt': # Skip on Windows
|
2020-03-14 16:33:14 +00:00
|
|
|
continue
|
|
|
|
|
2018-11-23 12:10:05 +00:00
|
|
|
fontfile, expected_hash = fontfile.split('@')
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open (fontfile, 'rb') as ff:
|
|
|
|
actual_hash = hashlib.sha1 (ff.read()).hexdigest ().strip ()
|
|
|
|
if actual_hash != expected_hash:
|
2018-11-24 20:49:33 +00:00
|
|
|
print ('different version of %s found; Expected hash %s, got %s; skipping.' %
|
2018-11-23 12:10:05 +00:00
|
|
|
(fontfile, expected_hash, actual_hash))
|
2018-11-24 20:49:33 +00:00
|
|
|
skips += 1
|
2018-11-23 12:10:05 +00:00
|
|
|
continue
|
|
|
|
except:
|
2018-11-24 20:49:33 +00:00
|
|
|
print ('%s not found, skip.' % fontfile)
|
|
|
|
skips += 1
|
2018-11-23 12:10:05 +00:00
|
|
|
continue
|
|
|
|
else:
|
|
|
|
cwd = os.path.dirname(filename)
|
|
|
|
fontfile = os.path.normpath (os.path.join (cwd, fontfile))
|
2017-12-07 08:54:12 +00:00
|
|
|
|
2018-10-04 14:23:42 +00:00
|
|
|
extra_options = ["--shaper=ot"]
|
2018-10-04 10:13:55 +00:00
|
|
|
if glyphs_expected != '*':
|
|
|
|
extra_options.append("--verify")
|
|
|
|
|
2018-11-24 20:37:01 +00:00
|
|
|
if comment:
|
2017-12-07 08:54:12 +00:00
|
|
|
if not reference:
|
2018-11-25 03:01:06 +00:00
|
|
|
print ('# %s "%s" --unicodes %s' % (hb_shape, fontfile, unicodes))
|
2017-12-07 07:52:55 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
if not reference:
|
2018-11-25 03:01:06 +00:00
|
|
|
print ('%s "%s" %s %s --unicodes %s' %
|
2018-10-04 10:13:55 +00:00
|
|
|
(hb_shape, fontfile, ' '.join(extra_options), options, unicodes))
|
2017-12-07 07:52:55 +00:00
|
|
|
|
2020-07-06 07:27:45 +00:00
|
|
|
if "--font-funcs=ft" in options and not have_freetype:
|
2020-07-02 13:04:24 +00:00
|
|
|
skips += 1
|
|
|
|
continue
|
2017-12-07 07:52:55 +00:00
|
|
|
|
2020-07-06 07:27:45 +00:00
|
|
|
if "--font-funcs=ot" in options or not have_freetype:
|
2020-04-05 18:21:58 +00:00
|
|
|
glyphs1 = cmd ([hb_shape, fontfile, "--font-funcs=ot"] + extra_options + ["--unicodes", unicodes] + options)
|
2018-11-24 20:49:33 +00:00
|
|
|
else:
|
2020-04-05 18:21:58 +00:00
|
|
|
glyphs1 = cmd ([hb_shape, fontfile, "--font-funcs=ft"] + extra_options + ["--unicodes", unicodes] + options)
|
|
|
|
glyphs2 = cmd ([hb_shape, fontfile, "--font-funcs=ot"] + extra_options + ["--unicodes", unicodes] + options)
|
2020-07-02 13:04:24 +00:00
|
|
|
|
|
|
|
if glyphs1 != glyphs2 and glyphs_expected != '*':
|
|
|
|
print ("FT funcs: " + glyphs1, file=sys.stderr)
|
|
|
|
print ("OT funcs: " + glyphs2, file=sys.stderr)
|
|
|
|
fails += 1
|
|
|
|
else:
|
|
|
|
passes += 1
|
2017-12-07 07:52:55 +00:00
|
|
|
|
|
|
|
if reference:
|
2020-07-02 13:04:24 +00:00
|
|
|
print (":".join ([fontfile, " ".join(options), unicodes, glyphs1]))
|
2017-12-07 07:52:55 +00:00
|
|
|
continue
|
|
|
|
|
2020-07-02 13:37:01 +00:00
|
|
|
if glyphs1.strip() != glyphs_expected and glyphs_expected != '*':
|
|
|
|
print ("Actual: " + glyphs1, file=sys.stderr)
|
2020-05-28 19:13:55 +00:00
|
|
|
print ("Expected: " + glyphs_expected, file=sys.stderr)
|
2018-11-24 20:49:33 +00:00
|
|
|
fails += 1
|
|
|
|
else:
|
|
|
|
passes += 1
|
2017-12-07 07:52:55 +00:00
|
|
|
|
2018-11-24 20:49:33 +00:00
|
|
|
if not reference:
|
2020-05-28 19:13:55 +00:00
|
|
|
print ("%d tests passed; %d failed; %d skipped." % (passes, fails, skips), file=sys.stderr)
|
2018-11-24 20:49:33 +00:00
|
|
|
if not (fails + passes):
|
|
|
|
print ("No tests ran.")
|
|
|
|
elif not (fails + skips):
|
2017-12-07 07:52:55 +00:00
|
|
|
print ("All tests passed.")
|
2018-11-24 20:49:33 +00:00
|
|
|
|
|
|
|
if fails:
|
|
|
|
sys.exit (1)
|
|
|
|
elif passes:
|
|
|
|
sys.exit (0)
|
|
|
|
else:
|
|
|
|
sys.exit (77)
|