2011-01-18 17:18:38 +01:00
|
|
|
set(libs
|
2020-10-13 17:30:41 +02:00
|
|
|
${mbedtls_target}
|
2011-01-18 17:18:38 +01:00
|
|
|
)
|
|
|
|
|
2019-04-29 10:35:06 +02:00
|
|
|
# Set the project root directory if it's not already defined, as may happen if
|
|
|
|
# the tests folder is included directly by a parent project, without including
|
|
|
|
# the top level CMakeLists.txt.
|
|
|
|
if(NOT DEFINED MBEDTLS_DIR)
|
|
|
|
set(MBEDTLS_DIR ${CMAKE_SOURCE_DIR})
|
|
|
|
endif()
|
|
|
|
|
2011-01-18 17:18:38 +01:00
|
|
|
if(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
set(libs ${libs} pkcs11-helper)
|
|
|
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
|
2012-07-03 17:10:33 +02:00
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
|
|
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
|
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
|
2020-03-25 12:55:32 +01:00
|
|
|
if(NOT MBEDTLS_PYTHON_EXECUTABLE)
|
|
|
|
message(FATAL_ERROR "Cannot build test suites without Python 3")
|
2015-11-14 14:09:01 +01:00
|
|
|
endif()
|
|
|
|
|
2017-12-05 13:08:15 +01:00
|
|
|
# Enable definition of various functions used throughout the testsuite
|
2018-06-25 13:10:00 +02:00
|
|
|
# (gethostname, strdup, fileno...) even when compiling with -std=c99. Harmless
|
2017-12-05 13:08:15 +01:00
|
|
|
# on non-POSIX platforms.
|
|
|
|
add_definitions("-D_POSIX_C_SOURCE=200809L")
|
|
|
|
|
2018-11-29 11:15:06 +01:00
|
|
|
# Test suites caught by SKIP_TEST_SUITES are built but not executed.
|
|
|
|
# "foo" as a skip pattern skips "test_suite_foo" and "test_suite_foo.bar"
|
|
|
|
# but not "test_suite_foobar".
|
|
|
|
string(REGEX REPLACE "[ ,;]" "|" SKIP_TEST_SUITES_REGEX "${SKIP_TEST_SUITES}")
|
|
|
|
string(REPLACE "." "\\." SKIP_TEST_SUITES_REGEX "${SKIP_TEST_SUITES_REGEX}")
|
|
|
|
set(SKIP_TEST_SUITES_REGEX "^(${SKIP_TEST_SUITES_REGEX})(\$|\\.)")
|
|
|
|
|
2011-07-13 17:03:10 +02:00
|
|
|
function(add_test_suite suite_name)
|
|
|
|
if(ARGV1)
|
2015-06-25 09:20:03 +02:00
|
|
|
set(data_name ${ARGV1})
|
2011-07-13 17:03:10 +02:00
|
|
|
else()
|
2015-06-25 09:20:03 +02:00
|
|
|
set(data_name ${suite_name})
|
2011-07-13 16:54:54 +02:00
|
|
|
endif()
|
|
|
|
|
2009-06-28 23:50:27 +02:00
|
|
|
add_custom_command(
|
2011-07-13 17:03:10 +02:00
|
|
|
OUTPUT test_suite_${data_name}.c
|
2020-03-25 12:55:32 +01:00
|
|
|
COMMAND ${MBEDTLS_PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_test_code.py -f ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${suite_name}.function -d ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${data_name}.data -t ${CMAKE_CURRENT_SOURCE_DIR}/suites/main_test.function -p ${CMAKE_CURRENT_SOURCE_DIR}/suites/host_test.function -s ${CMAKE_CURRENT_SOURCE_DIR}/suites --helpers-file ${CMAKE_CURRENT_SOURCE_DIR}/suites/helpers.function -o .
|
2020-10-13 17:30:41 +02:00
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/scripts/generate_test_code.py ${mbedtls_target} ${CMAKE_CURRENT_SOURCE_DIR}/suites/helpers.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/main_test.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/host_test.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${suite_name}.function ${CMAKE_CURRENT_SOURCE_DIR}/suites/test_suite_${data_name}.data
|
2010-06-19 00:54:05 +02:00
|
|
|
)
|
2013-08-16 13:31:10 +02:00
|
|
|
|
2020-06-19 10:42:29 +02:00
|
|
|
add_executable(test_suite_${data_name} test_suite_${data_name}.c $<TARGET_OBJECTS:mbedtls_test>)
|
2011-07-13 17:03:10 +02:00
|
|
|
target_link_libraries(test_suite_${data_name} ${libs})
|
2020-07-02 15:58:37 +02:00
|
|
|
# Include test-specific header files from ./include and private header
|
|
|
|
# files (used by some invasive tests) from ../library. Public header
|
|
|
|
# files are automatically included because the library targets declare
|
|
|
|
# them as PUBLIC.
|
2020-05-15 17:20:47 +02:00
|
|
|
target_include_directories(test_suite_${data_name}
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../library)
|
|
|
|
|
2018-11-29 11:15:06 +01:00
|
|
|
if(${data_name} MATCHES ${SKIP_TEST_SUITES_REGEX})
|
|
|
|
message(STATUS "The test suite ${data_name} will not be executed.")
|
|
|
|
else()
|
|
|
|
add_test(${data_name}-suite test_suite_${data_name} --verbose)
|
|
|
|
endif()
|
2009-06-28 23:50:27 +02:00
|
|
|
endfunction(add_test_suite)
|
|
|
|
|
2015-07-01 13:41:35 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function")
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2021-02-23 13:44:41 +01:00
|
|
|
if(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wdocumentation -Wno-documentation-deprecated-sync -Wunreachable-code")
|
|
|
|
endif(CMAKE_COMPILER_IS_CLANG)
|
|
|
|
|
2015-07-01 17:06:28 +02:00
|
|
|
if(MSVC)
|
2016-11-03 02:12:50 +01:00
|
|
|
# If a warning level has been defined, suppress all warnings for test code
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W0")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX-")
|
2015-07-01 17:06:28 +02:00
|
|
|
endif(MSVC)
|
|
|
|
|
2013-04-08 18:09:51 +02:00
|
|
|
add_test_suite(aes aes.cbc)
|
|
|
|
add_test_suite(aes aes.cfb)
|
2020-04-03 11:56:06 +02:00
|
|
|
add_test_suite(aes aes.ecb)
|
2018-11-29 11:55:21 +01:00
|
|
|
add_test_suite(aes aes.ofb)
|
2013-04-08 18:09:51 +02:00
|
|
|
add_test_suite(aes aes.rest)
|
2016-06-09 23:22:58 +02:00
|
|
|
add_test_suite(aes aes.xts)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(arc4)
|
2018-02-20 13:56:54 +01:00
|
|
|
add_test_suite(aria)
|
2019-03-01 18:02:53 +01:00
|
|
|
add_test_suite(asn1parse)
|
2014-05-29 14:26:03 +02:00
|
|
|
add_test_suite(asn1write)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(base64)
|
2012-07-04 13:02:11 +02:00
|
|
|
add_test_suite(blowfish)
|
2009-07-06 08:40:23 +02:00
|
|
|
add_test_suite(camellia)
|
2014-05-02 15:17:29 +02:00
|
|
|
add_test_suite(ccm)
|
2016-05-15 22:28:08 +02:00
|
|
|
add_test_suite(chacha20)
|
2018-05-07 10:43:27 +02:00
|
|
|
add_test_suite(chachapoly)
|
2011-07-13 16:54:54 +02:00
|
|
|
add_test_suite(cipher cipher.aes)
|
2013-08-28 13:50:42 +02:00
|
|
|
add_test_suite(cipher cipher.arc4)
|
2012-07-04 19:10:40 +02:00
|
|
|
add_test_suite(cipher cipher.blowfish)
|
2011-07-13 16:54:54 +02:00
|
|
|
add_test_suite(cipher cipher.camellia)
|
2014-05-15 16:03:07 +02:00
|
|
|
add_test_suite(cipher cipher.ccm)
|
2016-05-16 00:56:20 +02:00
|
|
|
add_test_suite(cipher cipher.chacha20)
|
2018-05-07 10:43:27 +02:00
|
|
|
add_test_suite(cipher cipher.chachapoly)
|
2011-07-13 16:54:54 +02:00
|
|
|
add_test_suite(cipher cipher.des)
|
2013-08-30 18:34:08 +02:00
|
|
|
add_test_suite(cipher cipher.gcm)
|
2019-01-31 14:20:20 +01:00
|
|
|
add_test_suite(cipher cipher.misc)
|
2019-04-17 13:12:24 +02:00
|
|
|
add_test_suite(cipher cipher.nist_kw)
|
2012-02-06 17:45:10 +01:00
|
|
|
add_test_suite(cipher cipher.null)
|
2013-07-24 18:05:00 +02:00
|
|
|
add_test_suite(cipher cipher.padding)
|
2016-10-10 23:03:39 +02:00
|
|
|
add_test_suite(cmac)
|
2011-11-27 15:46:59 +01:00
|
|
|
add_test_suite(ctr_drbg)
|
2019-04-04 16:59:33 +02:00
|
|
|
add_test_suite(debug)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(des)
|
|
|
|
add_test_suite(dhm)
|
2013-01-26 16:20:32 +01:00
|
|
|
add_test_suite(ecdh)
|
2013-01-26 19:09:07 +01:00
|
|
|
add_test_suite(ecdsa)
|
2015-08-05 15:44:42 +02:00
|
|
|
add_test_suite(ecjpake)
|
|
|
|
add_test_suite(ecp)
|
2014-05-30 10:38:18 +02:00
|
|
|
add_test_suite(entropy)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(error)
|
2013-10-24 11:57:47 +02:00
|
|
|
add_test_suite(gcm gcm.aes128_de)
|
2020-04-03 11:56:06 +02:00
|
|
|
add_test_suite(gcm gcm.aes128_en)
|
2013-10-24 11:57:47 +02:00
|
|
|
add_test_suite(gcm gcm.aes192_de)
|
2020-04-03 11:56:06 +02:00
|
|
|
add_test_suite(gcm gcm.aes192_en)
|
2013-10-24 11:57:47 +02:00
|
|
|
add_test_suite(gcm gcm.aes256_de)
|
2020-04-03 11:56:06 +02:00
|
|
|
add_test_suite(gcm gcm.aes256_en)
|
2013-10-24 12:59:00 +02:00
|
|
|
add_test_suite(gcm gcm.camellia)
|
2019-01-31 14:20:20 +01:00
|
|
|
add_test_suite(gcm gcm.misc)
|
2016-07-17 09:51:22 +02:00
|
|
|
add_test_suite(hkdf)
|
2014-01-30 21:11:16 +01:00
|
|
|
add_test_suite(hmac_drbg hmac_drbg.misc)
|
2014-01-30 17:22:14 +01:00
|
|
|
add_test_suite(hmac_drbg hmac_drbg.no_reseed)
|
2014-01-31 09:54:14 +01:00
|
|
|
add_test_suite(hmac_drbg hmac_drbg.nopr)
|
2014-01-31 10:16:57 +01:00
|
|
|
add_test_suite(hmac_drbg hmac_drbg.pr)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(md)
|
|
|
|
add_test_suite(mdx)
|
2014-11-27 11:55:27 +01:00
|
|
|
add_test_suite(memory_buffer_alloc)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(mpi)
|
2021-01-12 08:43:30 +01:00
|
|
|
add_test_suite(mps)
|
2021-02-24 18:37:46 +01:00
|
|
|
add_test_suite(net)
|
2018-07-15 08:37:28 +02:00
|
|
|
add_test_suite(nist_kw)
|
2019-03-28 17:02:25 +01:00
|
|
|
add_test_suite(oid)
|
2014-04-11 13:28:43 +02:00
|
|
|
add_test_suite(pem)
|
2020-04-03 11:56:06 +02:00
|
|
|
add_test_suite(pk)
|
2016-02-12 14:18:20 +01:00
|
|
|
add_test_suite(pkcs1_v15)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(pkcs1_v21)
|
2013-06-24 19:26:38 +02:00
|
|
|
add_test_suite(pkcs5)
|
2013-09-15 13:01:22 +02:00
|
|
|
add_test_suite(pkparse)
|
2013-09-15 14:54:56 +02:00
|
|
|
add_test_suite(pkwrite)
|
2016-05-16 23:25:45 +02:00
|
|
|
add_test_suite(poly1305)
|
2018-04-04 11:47:52 +02:00
|
|
|
add_test_suite(psa_crypto)
|
2021-01-28 18:20:21 +01:00
|
|
|
add_test_suite(psa_crypto_attributes)
|
2018-11-19 10:53:55 +01:00
|
|
|
add_test_suite(psa_crypto_entropy)
|
2018-10-24 11:45:18 +02:00
|
|
|
add_test_suite(psa_crypto_hash)
|
2018-11-20 20:56:14 +01:00
|
|
|
add_test_suite(psa_crypto_init)
|
2018-10-22 19:11:00 +02:00
|
|
|
add_test_suite(psa_crypto_metadata)
|
2021-02-16 14:42:22 +01:00
|
|
|
add_test_suite(psa_crypto_not_supported psa_crypto_not_supported.generated)
|
|
|
|
add_test_suite(psa_crypto_not_supported psa_crypto_not_supported.misc)
|
2018-06-18 18:27:26 +02:00
|
|
|
add_test_suite(psa_crypto_persistent_key)
|
2019-06-24 13:47:24 +02:00
|
|
|
add_test_suite(psa_crypto_se_driver_hal)
|
2019-07-10 12:45:31 +02:00
|
|
|
add_test_suite(psa_crypto_se_driver_hal_mocks)
|
2018-11-30 18:53:28 +01:00
|
|
|
add_test_suite(psa_crypto_slot_management)
|
2021-03-01 17:45:11 +01:00
|
|
|
add_test_suite(psa_crypto_storage_format psa_crypto_storage_format.misc)
|
2018-11-16 22:24:38 +01:00
|
|
|
add_test_suite(psa_its)
|
2021-02-03 18:55:39 +01:00
|
|
|
add_test_suite(random)
|
2020-04-03 11:56:06 +02:00
|
|
|
add_test_suite(rsa)
|
2011-05-09 18:17:09 +02:00
|
|
|
add_test_suite(shax)
|
2019-04-04 16:59:33 +02:00
|
|
|
add_test_suite(ssl)
|
2016-07-19 15:57:00 +02:00
|
|
|
add_test_suite(timing)
|
2019-04-04 16:59:33 +02:00
|
|
|
add_test_suite(version)
|
|
|
|
add_test_suite(x509parse)
|
|
|
|
add_test_suite(x509write)
|
2020-04-03 11:56:06 +02:00
|
|
|
add_test_suite(xtea)
|
2014-02-06 15:43:21 +01:00
|
|
|
|
2018-03-21 12:12:47 +01:00
|
|
|
# Make scripts and data files needed for testing available in an
|
|
|
|
# out-of-source build.
|
2014-02-06 15:43:21 +01:00
|
|
|
if (NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
2019-05-06 11:06:06 +02:00
|
|
|
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/seedfile")
|
|
|
|
link_to_source(seedfile)
|
|
|
|
endif()
|
2018-03-21 12:12:47 +01:00
|
|
|
link_to_source(compat.sh)
|
2020-10-16 21:19:49 +02:00
|
|
|
link_to_source(context-info.sh)
|
2018-03-21 12:12:47 +01:00
|
|
|
link_to_source(data_files)
|
|
|
|
link_to_source(scripts)
|
|
|
|
link_to_source(ssl-opt.sh)
|
2019-01-02 17:29:04 +01:00
|
|
|
link_to_source(suites)
|
2014-02-06 15:43:21 +01:00
|
|
|
endif()
|