2017-06-09 16:02:36 +02:00
|
|
|
#line 2 "suites/main_test.function"
|
2017-06-09 13:39:00 +02:00
|
|
|
/*
|
|
|
|
* *** THIS FILE HAS BEEN MACHINE GENERATED ***
|
|
|
|
*
|
|
|
|
* This file has been machine generated using the script:
|
2022-11-03 18:49:29 +01:00
|
|
|
* __MBEDTLS_TEST_TEMPLATE__GENERATOR_SCRIPT
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
2022-11-03 18:49:29 +01:00
|
|
|
* Test file : __MBEDTLS_TEST_TEMPLATE__TEST_FILE
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
|
|
|
* The following files were used to create this file.
|
|
|
|
*
|
2022-11-03 18:49:29 +01:00
|
|
|
* Main code file : __MBEDTLS_TEST_TEMPLATE__TEST_MAIN_FILE
|
|
|
|
* Platform code file : __MBEDTLS_TEST_TEMPLATE__TEST_PLATFORM_FILE
|
|
|
|
* Helper file : __MBEDTLS_TEST_TEMPLATE__TEST_COMMON_HELPER_FILE
|
|
|
|
* Test suite file : __MBEDTLS_TEST_TEMPLATE__TEST_CASE_FILE
|
|
|
|
* Test suite data : __MBEDTLS_TEST_TEMPLATE__TEST_CASE_DATA_FILE
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-04-14 19:39:56 +02:00
|
|
|
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
|
|
|
|
#if !defined(_POSIX_C_SOURCE)
|
2020-06-11 13:03:45 +02:00
|
|
|
#define _POSIX_C_SOURCE 200112L // for fileno() from <stdio.h>
|
2020-04-14 19:39:56 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2021-05-27 11:25:03 +02:00
|
|
|
#include "mbedtls/build_info.h"
|
2013-09-15 17:05:21 +02:00
|
|
|
|
2019-11-29 12:17:21 +01:00
|
|
|
/* Test code may use deprecated identifiers only if the preprocessor symbol
|
|
|
|
* MBEDTLS_TEST_DEPRECATED is defined. When building tests, set
|
|
|
|
* MBEDTLS_TEST_DEPRECATED explicitly if MBEDTLS_DEPRECATED_WARNING is
|
|
|
|
* enabled but the corresponding warnings are not treated as errors.
|
|
|
|
*/
|
2019-11-26 17:37:37 +01:00
|
|
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED) && !defined(MBEDTLS_DEPRECATED_WARNING)
|
|
|
|
#define MBEDTLS_TEST_DEPRECATED
|
|
|
|
#endif
|
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
/* Common helper code */
|
2013-08-16 13:31:10 +02:00
|
|
|
|
2022-11-03 18:49:29 +01:00
|
|
|
__MBEDTLS_TEST_TEMPLATE__TEST_COMMON_HELPERS
|
2013-08-16 13:31:10 +02:00
|
|
|
|
2022-11-03 18:49:29 +01:00
|
|
|
#line __MBEDTLS_TEST_TEMPLATE__LINE_NO "suites/main_test.function"
|
2013-08-16 13:31:10 +02:00
|
|
|
|
2016-02-16 00:27:28 +01:00
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
2017-06-09 13:39:00 +02:00
|
|
|
/* Test Suite Code */
|
|
|
|
|
2016-02-16 00:27:28 +01:00
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
#define TEST_SUITE_ACTIVE
|
|
|
|
|
2022-11-03 18:49:29 +01:00
|
|
|
__MBEDTLS_TEST_TEMPLATE__FUNCTIONS_CODE
|
2017-06-09 13:39:00 +02:00
|
|
|
|
2022-11-03 18:49:29 +01:00
|
|
|
#line __MBEDTLS_TEST_TEMPLATE__LINE_NO "suites/main_test.function"
|
2016-04-25 22:34:49 +02:00
|
|
|
|
2016-02-16 00:27:28 +01:00
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
/* Test dispatch code */
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
/**
|
|
|
|
* \brief Evaluates an expression/macro into its literal integer value.
|
|
|
|
* For optimizing space for embedded targets each expression/macro
|
|
|
|
* is identified by a unique identifier instead of string literals.
|
|
|
|
* Identifiers and evaluation code is generated by script:
|
2022-11-03 18:49:29 +01:00
|
|
|
* __MBEDTLS_TEST_TEMPLATE__GENERATOR_SCRIPT
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
|
|
|
* \param exp_id Expression identifier.
|
|
|
|
* \param out_value Pointer to int to hold the integer.
|
|
|
|
*
|
|
|
|
* \return 0 if exp_id is found. 1 otherwise.
|
|
|
|
*/
|
|
|
|
int get_expression( int32_t exp_id, int32_t * out_value )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-07-07 18:14:02 +02:00
|
|
|
int ret = KEY_VALUE_MAPPING_FOUND;
|
|
|
|
|
|
|
|
(void) exp_id;
|
|
|
|
(void) out_value;
|
|
|
|
|
|
|
|
switch( exp_id )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2022-11-03 18:49:29 +01:00
|
|
|
__MBEDTLS_TEST_TEMPLATE__EXPRESSION_CODE
|
|
|
|
#line __MBEDTLS_TEST_TEMPLATE__LINE_NO "suites/main_test.function"
|
2017-07-07 18:14:02 +02:00
|
|
|
default:
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-07-07 18:14:02 +02:00
|
|
|
ret = KEY_VALUE_MAPPING_NOT_FOUND;
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2017-07-07 18:14:02 +02:00
|
|
|
break;
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2017-07-07 18:14:02 +02:00
|
|
|
return( ret );
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2017-06-09 13:39:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Checks if the dependency i.e. the compile flag is set.
|
|
|
|
* For optimizing space for embedded targets each dependency
|
|
|
|
* is identified by a unique identifier instead of string literals.
|
|
|
|
* Identifiers and check code is generated by script:
|
2022-11-03 18:49:29 +01:00
|
|
|
* __MBEDTLS_TEST_TEMPLATE__GENERATOR_SCRIPT
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
2021-02-23 13:40:19 +01:00
|
|
|
* \param dep_id Dependency identifier.
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
|
|
|
* \return DEPENDENCY_SUPPORTED if set else DEPENDENCY_NOT_SUPPORTED
|
|
|
|
*/
|
|
|
|
int dep_check( int dep_id )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-07-07 18:14:02 +02:00
|
|
|
int ret = DEPENDENCY_NOT_SUPPORTED;
|
|
|
|
|
|
|
|
(void) dep_id;
|
|
|
|
|
|
|
|
switch( dep_id )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2022-11-03 18:49:29 +01:00
|
|
|
__MBEDTLS_TEST_TEMPLATE__DEP_CHECK_CODE
|
|
|
|
#line __MBEDTLS_TEST_TEMPLATE__LINE_NO "suites/main_test.function"
|
2017-07-07 18:14:02 +02:00
|
|
|
default:
|
|
|
|
break;
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2017-07-07 18:14:02 +02:00
|
|
|
return( ret );
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2017-06-09 13:39:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Function pointer type for test function wrappers.
|
|
|
|
*
|
2021-02-23 13:40:19 +01:00
|
|
|
* A test function wrapper decodes the parameters and passes them to the
|
|
|
|
* underlying test function. Both the wrapper and the underlying function
|
|
|
|
* return void. Test wrappers assume that they are passed a suitable
|
|
|
|
* parameter array and do not perform any error detection.
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
2021-02-23 13:40:19 +01:00
|
|
|
* \param param_array The array of parameters. Each element is a `void *`
|
|
|
|
* which the wrapper casts to the correct type and
|
|
|
|
* dereferences. Each wrapper function hard-codes the
|
|
|
|
* number and types of the parameters.
|
2017-06-09 13:39:00 +02:00
|
|
|
*/
|
2021-02-23 13:40:19 +01:00
|
|
|
typedef void (*TestWrapper_t)( void **param_array );
|
2016-02-16 00:27:28 +01:00
|
|
|
|
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
/**
|
|
|
|
* \brief Table of test function wrappers. Used by dispatch_test().
|
|
|
|
* This table is populated by script:
|
2022-11-03 18:49:29 +01:00
|
|
|
* __MBEDTLS_TEST_TEMPLATE__GENERATOR_SCRIPT
|
2017-09-29 18:00:25 +02:00
|
|
|
*
|
|
|
|
*/
|
2017-06-09 13:39:00 +02:00
|
|
|
TestWrapper_t test_funcs[] =
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2022-11-03 18:49:29 +01:00
|
|
|
__MBEDTLS_TEST_TEMPLATE__DISPATCH_CODE
|
|
|
|
#line __MBEDTLS_TEST_TEMPLATE__LINE_NO "suites/main_test.function"
|
2018-07-19 12:32:30 +02:00
|
|
|
};
|
2015-06-22 10:48:01 +02:00
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
/**
|
2019-01-31 14:20:20 +01:00
|
|
|
* \brief Dispatches test functions based on function index.
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
2021-02-23 13:40:19 +01:00
|
|
|
* \param func_idx Test function index.
|
|
|
|
* \param params The array of parameters to pass to the test function.
|
|
|
|
* It will be decoded by the #TestWrapper_t wrapper function.
|
2017-06-09 13:39:00 +02:00
|
|
|
*
|
|
|
|
* \return DISPATCH_TEST_SUCCESS if found
|
|
|
|
* DISPATCH_TEST_FN_NOT_FOUND if not found
|
|
|
|
* DISPATCH_UNSUPPORTED_SUITE if not compile time enabled.
|
|
|
|
*/
|
2019-09-16 10:23:10 +02:00
|
|
|
int dispatch_test( size_t func_idx, void ** params )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-06-09 13:39:00 +02:00
|
|
|
int ret = DISPATCH_TEST_SUCCESS;
|
|
|
|
TestWrapper_t fp = NULL;
|
|
|
|
|
2018-07-18 18:48:37 +02:00
|
|
|
if ( func_idx < (int)( sizeof( test_funcs ) / sizeof( TestWrapper_t ) ) )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-06-09 13:39:00 +02:00
|
|
|
fp = test_funcs[func_idx];
|
|
|
|
if ( fp )
|
2021-05-27 15:24:33 +02:00
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
|
|
|
|
mbedtls_test_enable_insecure_external_rng( );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fp( params );
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_TEST_MUTEX_USAGE)
|
|
|
|
mbedtls_test_mutex_usage_check( );
|
|
|
|
#endif /* MBEDTLS_TEST_MUTEX_USAGE */
|
|
|
|
}
|
2016-04-18 00:24:50 +02:00
|
|
|
else
|
2018-07-19 12:32:30 +02:00
|
|
|
ret = DISPATCH_UNSUPPORTED_SUITE;
|
|
|
|
}
|
2013-08-16 13:31:10 +02:00
|
|
|
else
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
|
|
|
ret = DISPATCH_TEST_FN_NOT_FOUND;
|
|
|
|
}
|
2013-08-16 13:31:10 +02:00
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
return( ret );
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2013-08-16 13:31:10 +02:00
|
|
|
|
|
|
|
|
2017-06-15 15:45:56 +02:00
|
|
|
/**
|
2021-02-23 13:40:19 +01:00
|
|
|
* \brief Checks if test function is supported in this build-time
|
|
|
|
* configuration.
|
2017-06-15 15:45:56 +02:00
|
|
|
*
|
2021-02-23 13:40:19 +01:00
|
|
|
* \param func_idx Test function index.
|
2017-06-15 15:45:56 +02:00
|
|
|
*
|
|
|
|
* \return DISPATCH_TEST_SUCCESS if found
|
|
|
|
* DISPATCH_TEST_FN_NOT_FOUND if not found
|
|
|
|
* DISPATCH_UNSUPPORTED_SUITE if not compile time enabled.
|
|
|
|
*/
|
2019-09-16 10:23:10 +02:00
|
|
|
int check_test( size_t func_idx )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-06-15 15:45:56 +02:00
|
|
|
int ret = DISPATCH_TEST_SUCCESS;
|
|
|
|
TestWrapper_t fp = NULL;
|
|
|
|
|
|
|
|
if ( func_idx < (int)( sizeof(test_funcs)/sizeof( TestWrapper_t ) ) )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-06-15 15:45:56 +02:00
|
|
|
fp = test_funcs[func_idx];
|
|
|
|
if ( fp == NULL )
|
2018-07-19 12:32:30 +02:00
|
|
|
ret = DISPATCH_UNSUPPORTED_SUITE;
|
|
|
|
}
|
2017-06-15 15:45:56 +02:00
|
|
|
else
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
|
|
|
ret = DISPATCH_TEST_FN_NOT_FOUND;
|
|
|
|
}
|
2017-06-15 15:45:56 +02:00
|
|
|
|
|
|
|
return( ret );
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2017-06-15 15:45:56 +02:00
|
|
|
|
|
|
|
|
2022-11-03 18:49:29 +01:00
|
|
|
__MBEDTLS_TEST_TEMPLATE__PLATFORM_CODE
|
2017-06-09 13:39:00 +02:00
|
|
|
|
2022-11-03 18:49:29 +01:00
|
|
|
#line __MBEDTLS_TEST_TEMPLATE__LINE_NO "suites/main_test.function"
|
2017-06-09 13:39:00 +02:00
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
/* Main Test code */
|
|
|
|
|
2016-10-13 00:07:30 +02:00
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
/**
|
|
|
|
* \brief Program main. Invokes platform specific execute_tests().
|
|
|
|
*
|
|
|
|
* \param argc Command line arguments count.
|
|
|
|
* \param argv Array of command line arguments.
|
|
|
|
*
|
|
|
|
* \return Exit code.
|
|
|
|
*/
|
|
|
|
int main( int argc, const char *argv[] )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2021-07-05 15:16:00 +02:00
|
|
|
#if defined(MBEDTLS_TEST_HOOKS)
|
2021-07-20 13:36:16 +02:00
|
|
|
extern void (*mbedtls_test_hook_test_fail)( const char * test, int line, const char * file );
|
2021-07-07 17:29:43 +02:00
|
|
|
mbedtls_test_hook_test_fail = &mbedtls_test_fail;
|
2021-07-13 12:23:12 +02:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
|
|
|
mbedtls_test_hook_error_add = &mbedtls_test_err_add_check;
|
|
|
|
#endif
|
2021-07-05 15:16:00 +02:00
|
|
|
#endif
|
|
|
|
|
2020-06-08 16:44:58 +02:00
|
|
|
int ret = mbedtls_test_platform_setup();
|
2017-06-09 13:39:00 +02:00
|
|
|
if( ret != 0 )
|
2018-07-19 12:32:30 +02:00
|
|
|
{
|
2017-06-09 13:39:00 +02:00
|
|
|
mbedtls_fprintf( stderr,
|
|
|
|
"FATAL: Failed to initialize platform - error %d\n",
|
|
|
|
ret );
|
|
|
|
return( -1 );
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|
2018-11-12 14:18:45 +01:00
|
|
|
|
2017-06-09 13:39:00 +02:00
|
|
|
ret = execute_tests( argc, argv );
|
2020-06-08 16:44:58 +02:00
|
|
|
mbedtls_test_platform_teardown();
|
2017-06-09 13:39:00 +02:00
|
|
|
return( ret );
|
2018-07-19 12:32:30 +02:00
|
|
|
}
|