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-07-29 09:38:25 +01:00
|
|
|
import pytest
|
2019-02-14 03:25:34 +00:00
|
|
|
|
2019-07-29 09:38:25 +01:00
|
|
|
import helpers
|
|
|
|
import pqclean
|
2019-02-27 11:44:21 +00:00
|
|
|
|
|
|
|
|
2019-07-29 09:38:25 +01:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'implementation,test_dir,impl_path, init, destr',
|
|
|
|
[(impl, *helpers.isolate_test_files(impl.path(), 'test_functest_'))
|
|
|
|
for impl in pqclean.Scheme.all_implementations()],
|
|
|
|
ids=[str(impl) for impl in pqclean.Scheme.all_implementations()],
|
|
|
|
)
|
2019-04-18 09:00:08 +01:00
|
|
|
@helpers.filtered_test
|
2019-07-29 09:38:25 +01:00
|
|
|
def test_functest(implementation, impl_path, test_dir,
|
|
|
|
init, destr):
|
|
|
|
init()
|
|
|
|
dest_dir = os.path.join(test_dir, 'bin')
|
2019-03-06 16:24:02 +00:00
|
|
|
helpers.make('functest',
|
2019-03-04 14:12:38 +00:00
|
|
|
TYPE=implementation.scheme.type,
|
2019-03-01 12:18:41 +00:00
|
|
|
SCHEME=implementation.scheme.name,
|
|
|
|
IMPLEMENTATION=implementation.name,
|
2019-07-29 09:38:25 +01:00
|
|
|
SCHEME_DIR=impl_path,
|
|
|
|
DEST_DIR=dest_dir,
|
|
|
|
working_dir=os.path.join(test_dir, 'test'))
|
2019-02-14 03:25:34 +00:00
|
|
|
helpers.run_subprocess(
|
2019-07-29 09:38:25 +01:00
|
|
|
[os.path.join(dest_dir, 'functest_{}_{}{}'.format(
|
2019-03-04 14:12:38 +00:00
|
|
|
implementation.scheme.name,
|
|
|
|
implementation.name,
|
|
|
|
'.exe' if os.name == 'nt' else ''
|
|
|
|
))],
|
2019-02-14 03:25:34 +00:00
|
|
|
)
|
2019-07-29 09:38:25 +01:00
|
|
|
destr()
|
2019-02-18 12:39:11 +00:00
|
|
|
|
|
|
|
|
2019-07-29 09:38:25 +01:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'implementation,test_dir,impl_path, init, destr',
|
|
|
|
[(impl,
|
|
|
|
*helpers.isolate_test_files(impl.path(), 'test_functest_sanitizers_'))
|
|
|
|
for impl in pqclean.Scheme.all_implementations()],
|
|
|
|
ids=[str(impl) for impl in pqclean.Scheme.all_implementations()],
|
|
|
|
)
|
2019-04-15 15:04:50 +01:00
|
|
|
@helpers.skip_windows()
|
2019-07-29 09:38:25 +01:00
|
|
|
@helpers.filtered_test
|
2019-04-17 10:17:46 +01:00
|
|
|
@helpers.slow_test
|
2019-07-29 09:38:25 +01:00
|
|
|
def test_functest_sanitizers(implementation, impl_path, test_dir,
|
|
|
|
init, destr):
|
|
|
|
dest_dir = os.path.join(test_dir, 'bin')
|
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-03-04 15:56:40 +00:00
|
|
|
raise unittest.SkipTest("Clang does not support ASAN on ppc")
|
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'}
|
2019-04-15 15:21:44 +01:00
|
|
|
elif platform.system() == 'Darwin':
|
2019-07-29 09:38:25 +01:00
|
|
|
raise unittest.SkipTest('ASAN is not reliable on OSX')
|
2019-02-27 11:58:00 +00:00
|
|
|
else:
|
2019-02-28 15:32:24 +00:00
|
|
|
print("Supported platform: {}".format(platform.machine()))
|
2019-03-06 16:24:02 +00:00
|
|
|
|
2019-07-29 09:38:25 +01:00
|
|
|
init()
|
|
|
|
|
2019-02-27 11:44:21 +00:00
|
|
|
helpers.make('clean-scheme', 'functest',
|
|
|
|
TYPE=implementation.scheme.type,
|
2019-03-01 12:18:41 +00:00
|
|
|
SCHEME=implementation.scheme.name,
|
|
|
|
IMPLEMENTATION=implementation.name,
|
2019-04-16 12:24:23 +01:00
|
|
|
EXTRAFLAGS='-g -fsanitize=address,undefined',
|
2019-07-29 09:38:25 +01:00
|
|
|
SCHEME_DIR=impl_path,
|
|
|
|
DEST_DIR=dest_dir,
|
|
|
|
working_dir=os.path.join(test_dir, 'test'),
|
2019-02-27 11:58:00 +00:00
|
|
|
env=env)
|
2019-07-29 09:38:25 +01:00
|
|
|
helpers.run_subprocess(
|
|
|
|
[os.path.join(dest_dir, 'functest_{}_{}{}'.format(
|
|
|
|
implementation.scheme.name,
|
|
|
|
implementation.name,
|
|
|
|
'.exe' if os.name == 'nt' else ''
|
|
|
|
))],
|
|
|
|
env=env,
|
|
|
|
)
|
|
|
|
destr()
|
2019-02-27 11:44:21 +00:00
|
|
|
|
|
|
|
|
2019-02-18 12:39:11 +00:00
|
|
|
if __name__ == '__main__':
|
2019-07-29 09:38:25 +01:00
|
|
|
import sys
|
|
|
|
pytest.main(sys.argv)
|