zcash-test-vectors/tv_output.py

131 lines
3.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import sys; assert sys.version_info[0] >= 3, "Python 3 required."
2018-06-05 01:36:37 -07:00
import argparse
from binascii import hexlify
2018-06-05 01:36:37 -07:00
import json
2018-06-04 21:10:43 -07:00
def chunk(h):
hstr = str(h, 'utf-8')
return '0x' + ', 0x'.join([hstr[i:i+2] for i in range(0, len(hstr), 2)])
class Some(object):
def __init__(self, thing):
self.thing = thing
def option(x):
return Some(x) if x else None
2018-06-05 01:36:37 -07:00
#
# JSON (with string comments)
# If bitcoin_flavoured == True, 32-byte values are reversed
2018-06-05 01:36:37 -07:00
#
def tv_value_json(value, bitcoin_flavoured):
if isinstance(value, Some):
value = value.thing
2018-06-05 01:36:37 -07:00
if type(value) == bytes:
if bitcoin_flavoured and len(value) == 32:
value = value[::-1]
2018-06-05 01:36:37 -07:00
value = hexlify(value).decode()
return value
def tv_json(filename, parts, vectors, bitcoin_flavoured):
2018-06-05 01:36:37 -07:00
if type(vectors) == type({}):
vectors = [vectors]
print('''[
["From https://github.com/zcash-hackworks/zcash-test-vectors/blob/master/%s.py"],
["%s"],''' % (
filename,
', '.join([p[0] for p in parts])
))
print(' ' + ',\n '.join([
json.dumps([tv_value_json(v[p[0]], bitcoin_flavoured) for p in parts]) for v in vectors
2018-06-05 01:36:37 -07:00
]))
print(']')
#
# Rust
#
def tv_bytes_rust(name, value, pad):
print('''%s%s: [
%s%s
%s],''' % (
pad,
name,
pad,
chunk(hexlify(value)),
pad,
))
def tv_option_bytes_rust(name, value, pad):
if value:
print('''%s%s: Some([
%s%s
%s]),''' % (
pad,
name,
pad,
chunk(hexlify(value.thing)),
pad,
))
else:
print('%s%s: None,' % (pad, name))
def tv_int_rust(name, value, pad):
print('%s%s: %d,' % (pad, name, value))
def tv_part_rust(name, value, indent=3):
pad = ' ' * indent
if type(value) == bytes:
tv_bytes_rust(name, value, pad)
elif isinstance(value, Some) or value is None:
tv_option_bytes_rust(name, value, pad)
elif type(value) == int:
tv_int_rust(name, value, pad)
else:
raise ValueError('Invalid type(%s): %s' % (name, type(value)))
def tv_rust(filename, parts, vectors):
print(' struct TestVector {')
for p in parts: print(' %s: %s,' % p)
print(''' };
// From https://github.com/zcash-hackworks/zcash-test-vectors/blob/master/%s.py''' % (
filename,
))
if type(vectors) == type({}):
print(' let test_vector = TestVector {')
for p in parts: tv_part_rust(p[0], vectors[p[0]])
print(' };')
elif type(vectors) == type([]):
print(' let test_vectors = vec![')
for vector in vectors:
print(' TestVector {')
for p in parts: tv_part_rust(p[0], vector[p[0]], 4)
print(' },')
print(' ];')
else:
raise ValueError('Invalid type(vectors)')
2018-06-05 01:36:37 -07:00
#
# Rendering functions
#
def render_args():
parser = argparse.ArgumentParser()
parser.add_argument('-t', '--target', choices=['zcash', 'rust'], default='rust')
2018-06-05 01:36:37 -07:00
return parser.parse_args()
def render_tv(args, filename, parts, vectors):
if args.target == 'rust':
tv_rust(filename, parts, vectors)
elif args.target == 'zcash':
tv_json(filename, parts, vectors, True)