pqc/test/test_functest.py

40 lines
1.0 KiB
Python
Raw Normal View History

"""
2019-02-18 12:04:59 +00:00
Checks that the functional test program (functest) can be successfully built
and executed for every scheme/implementation.
"""
import os
import pqclean
import helpers
2019-02-18 12:04:59 +00:00
def test_functest():
for scheme in pqclean.Scheme.all_schemes():
for implementation in scheme.implementations:
yield check_functest, scheme.name, implementation.name
2019-02-18 12:04:59 +00:00
def check_functest(scheme_name, implementation_name):
2019-02-18 12:04:59 +00:00
implementation = pqclean.Implementation.by_name(
scheme_name, implementation_name)
helpers.run_subprocess(
2019-02-18 12:04:59 +00:00
['make',
'TYPE={}'.format(implementation.scheme.type),
'SCHEME={}'.format(scheme_name),
'IMPLEMENTATION={}'.format(implementation_name)],
os.path.join('..', 'test')
)
helpers.run_subprocess(
['./functest_{}_{}'.format(scheme_name, implementation_name)],
os.path.join('..', 'bin'),
)
if __name__ == '__main__':
2019-02-18 12:51:01 +00:00
try:
import nose2
nose2.main()
except ImportError:
import nose
nose.runmodule()