pqc/test/test_symbol_namespace.py

66 строки
2.1 KiB
Python
Исходник Обычный вид История

"""
2019-02-18 12:04:59 +00:00
Checks that the all exported symbols are properly namespaced, i.e., all
start with "PQCLEAN_SCHEMENAME_".
"""
import sys
import unittest
import pytest
2019-02-18 12:04:59 +00:00
import helpers
import pqclean
2019-02-18 12:04:59 +00:00
@pytest.mark.parametrize(
'implementation,test_dir,impl_path,init,destr',
[(impl,
*helpers.isolate_test_files(impl.path(), 'test_symbol_ns_'))
for impl in pqclean.Scheme.all_supported_implementations()],
ids=[str(impl) for impl in pqclean.Scheme.all_supported_implementations()],
)
@helpers.filtered_test
def test_symbol_namespaces(implementation, impl_path, test_dir, init, destr):
2019-03-04 15:56:40 +00:00
if sys.platform not in ['linux', 'darwin']:
raise unittest.SkipTest("Unsupported platform")
init()
helpers.make(working_dir=impl_path)
out = helpers.run_subprocess(
2019-03-04 15:56:40 +00:00
['nm', '-g', implementation.libname()],
impl_path,
)
lines = out.strip().split("\n")
symbols = []
for line in lines:
if ' T ' in line or ' D ' in line or ' S ' in line:
symbols.append(line)
namespace = implementation.namespace_prefix()
non_namespaced = []
for symbolstr in symbols:
*_, symtype, symbol = symbolstr.split()
if symtype in 'TR':
if not (symbol.startswith(namespace) or
symbol.startswith('_' + namespace) or
# KeccakP-1600 for AVX2
symbol.startswith('KeccakF1600times4') or
2019-12-11 15:04:59 +00:00
symbol.startswith('_KeccakF1600times4') or # MacOS
symbol.startswith('KeccakP1600times4') or
2019-12-11 15:04:59 +00:00
symbol.startswith('_KeccakP1600times4') or # MacOS
2019-02-27 16:36:19 +00:00
# weird things on i386
symbol.startswith('__x86.get_pc_thunk.')):
non_namespaced.append(symbol)
if non_namespaced:
print("Missing namespace literal {}".format(namespace))
for symbol in non_namespaced:
print("\ttype: {}, symbol: {}".format(symtype, symbol))
assert not non_namespaced, "Literals with missing namespaces"
destr()
if __name__ == '__main__':
pytest.main(sys.argv)