78a65d6ec9
* Do tests with pytest to run them in parallel * attempt to handle merge commits better for PR test path Similar to how we solved this for travis * Clean up imports * don't run valgrind if not specified slow_test * Fix functest after initializer rename * upload tests results as junit * Upload test-common files since #200 got merged * Catch test results upload failure
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
"""
|
|
Checks that (hash of the) test vectors produced on this platform matches
|
|
the one provided in the META file for every scheme/implementation.
|
|
"""
|
|
|
|
import hashlib
|
|
import os
|
|
|
|
import pytest
|
|
|
|
import helpers
|
|
import pqclean
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'implementation,test_dir,impl_path,init,destr',
|
|
[(impl, *helpers.isolate_test_files(impl.path(), 'test_testvectors_'))
|
|
for sig in pqclean.Signature.all_sigs()
|
|
for impl in sig.implementations],
|
|
ids=[str(impl) for sig in pqclean.Signature.all_sigs()
|
|
for impl in sig.implementations],
|
|
)
|
|
@helpers.filtered_test
|
|
def test_testvectors(implementation, impl_path, test_dir, init, destr):
|
|
init()
|
|
dest_dir = os.path.join(test_dir, 'bin')
|
|
helpers.make('testvectors',
|
|
TYPE=implementation.scheme.type,
|
|
SCHEME=implementation.scheme.name,
|
|
SCHEME_DIR=impl_path,
|
|
IMPLEMENTATION=implementation.name,
|
|
DEST_DIR=dest_dir,
|
|
working_dir=os.path.join(test_dir, 'test'))
|
|
out = helpers.run_subprocess(
|
|
[os.path.join(dest_dir, 'testvectors_{}_{}{}'.format(
|
|
implementation.scheme.name,
|
|
implementation.name,
|
|
'.exe' if os.name == 'nt' else ''
|
|
))],
|
|
).replace('\r', '')
|
|
assert(implementation.scheme.metadata()['testvectors-sha256'].lower()
|
|
== hashlib.sha256(out.encode('utf-8')).hexdigest().lower())
|
|
destr()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
import sys
|
|
pytest.main(sys.argv)
|