2019-02-14 03:31:37 +00:00
|
|
|
"""
|
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.
|
2019-02-14 03:31:37 +00:00
|
|
|
"""
|
|
|
|
|
2019-02-14 03:25:34 +00:00
|
|
|
import os
|
2019-02-27 11:44:21 +00:00
|
|
|
import platform
|
|
|
|
import unittest
|
|
|
|
|
2019-02-14 03:25:34 +00:00
|
|
|
import pqclean
|
|
|
|
import helpers
|
|
|
|
|
2019-02-18 12:04:59 +00:00
|
|
|
|
2019-02-14 03:25:34 +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
|
|
|
|
2019-02-27 11:44:21 +00:00
|
|
|
def test_functest_sanitizers():
|
|
|
|
for scheme in pqclean.Scheme.all_schemes():
|
|
|
|
for implementation in scheme.implementations:
|
|
|
|
yield check_functest_sanitizers, scheme.name, implementation.name
|
|
|
|
|
|
|
|
|
2019-02-14 03:25:34 +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)
|
2019-02-14 03:25:34 +00:00
|
|
|
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)],
|
2019-02-14 03:25:34 +00:00
|
|
|
os.path.join('..', 'test')
|
|
|
|
)
|
|
|
|
helpers.run_subprocess(
|
|
|
|
['./functest_{}_{}'.format(scheme_name, implementation_name)],
|
|
|
|
os.path.join('..', 'bin'),
|
|
|
|
)
|
2019-02-18 12:39:11 +00:00
|
|
|
|
|
|
|
|
2019-02-27 11:44:21 +00:00
|
|
|
def check_functest_sanitizers(scheme_name, implementation_name):
|
2019-02-27 11:58:00 +00:00
|
|
|
env = None
|
2019-02-28 15:38:19 +00:00
|
|
|
if platform.machine() == 'ppc' and os.environ.get('CC', 'gcc') == 'clang':
|
2019-02-27 11:44:21 +00:00
|
|
|
raise unittest.SkipTest()
|
2019-02-27 12:11:36 +00:00
|
|
|
elif platform.machine() in ['armv7l', 'aarch64']:
|
2019-02-27 11:58:00 +00:00
|
|
|
env = {'ASAN_OPTIONS': 'detect_leaks=0'}
|
|
|
|
else:
|
2019-02-28 15:32:24 +00:00
|
|
|
print("Supported platform: {}".format(platform.machine()))
|
2019-02-27 11:44:21 +00:00
|
|
|
implementation = pqclean.Implementation.by_name(
|
|
|
|
scheme_name, implementation_name)
|
|
|
|
helpers.make('clean-scheme', 'functest',
|
|
|
|
TYPE=implementation.scheme.type,
|
|
|
|
SCHEME=scheme_name,
|
|
|
|
IMPLEMENTATION=implementation_name,
|
2019-02-27 11:58:00 +00:00
|
|
|
EXTRAFLAGS='-fsanitize=address,undefined',
|
2019-02-27 11:44:21 +00:00
|
|
|
working_dir=os.path.join('..', 'test'),
|
2019-02-27 11:58:00 +00:00
|
|
|
env=env)
|
2019-02-27 11:44:21 +00:00
|
|
|
helpers.run_subprocess(
|
|
|
|
['./functest_{}_{}'.format(scheme_name, implementation_name)],
|
|
|
|
os.path.join('..', 'bin'),
|
2019-02-27 11:58:00 +00:00
|
|
|
env=env,
|
2019-02-27 11:44:21 +00:00
|
|
|
)
|
2019-02-27 11:58:00 +00:00
|
|
|
# Remove files with ASAN library compiled in
|
|
|
|
helpers.make('clean-scheme',
|
|
|
|
TYPE=implementation.scheme.type,
|
|
|
|
SCHEME=scheme_name,
|
|
|
|
IMPLEMENTATION=implementation_name,
|
|
|
|
working_dir=os.path.join('..', 'test'))
|
2019-02-27 11:44:21 +00:00
|
|
|
|
|
|
|
|
2019-02-18 12:39:11 +00:00
|
|
|
if __name__ == '__main__':
|
2019-02-18 12:51:01 +00:00
|
|
|
try:
|
|
|
|
import nose2
|
|
|
|
nose2.main()
|
|
|
|
except ImportError:
|
|
|
|
import nose
|
|
|
|
nose.runmodule()
|