2020-06-09 13:52:23 +02:00
|
|
|
/**
|
|
|
|
* \file macros.h
|
|
|
|
*
|
|
|
|
* \brief This file contains generic macros for the purpose of testing.
|
|
|
|
*/
|
|
|
|
|
2020-06-15 11:59:37 +02:00
|
|
|
/*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 20:47:20 +01:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2020-06-09 13:52:23 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TEST_MACROS_H
|
|
|
|
#define TEST_MACROS_H
|
|
|
|
|
2021-05-27 11:25:03 +02:00
|
|
|
#include "mbedtls/build_info.h"
|
2020-06-09 13:52:23 +02:00
|
|
|
|
2020-06-03 08:06:47 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "mbedtls/platform.h"
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
|
|
|
|
#include "mbedtls/memory_buffer_alloc.h"
|
|
|
|
#endif
|
2023-05-30 15:45:17 +02:00
|
|
|
#include "common.h"
|
2020-06-03 08:06:47 +02:00
|
|
|
|
2021-02-09 13:09:33 +01:00
|
|
|
/**
|
|
|
|
* \brief This macro tests the expression passed to it as a test step or
|
|
|
|
* individual test in a test case.
|
|
|
|
*
|
|
|
|
* It allows a library function to return a value and return an error
|
|
|
|
* code that can be tested.
|
|
|
|
*
|
|
|
|
* Failing the test means:
|
|
|
|
* - Mark this test case as failed.
|
|
|
|
* - Print a message identifying the failure.
|
|
|
|
* - Jump to the \c exit label.
|
|
|
|
*
|
|
|
|
* This macro expands to an instruction, not an expression.
|
|
|
|
* It may jump to the \c exit label.
|
|
|
|
*
|
|
|
|
* \param TEST The test expression to be tested.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define TEST_ASSERT(TEST) \
|
2021-02-09 13:09:33 +01:00
|
|
|
do { \
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!(TEST)) \
|
|
|
|
{ \
|
|
|
|
mbedtls_test_fail( #TEST, __LINE__, __FILE__); \
|
|
|
|
goto exit; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2021-02-09 13:09:33 +01:00
|
|
|
|
2023-07-14 18:28:27 +02:00
|
|
|
/** This macro asserts fails the test with given output message.
|
|
|
|
*
|
|
|
|
* \param MESSAGE The message to be outputed on assertion
|
|
|
|
*/
|
2023-07-18 12:45:28 +02:00
|
|
|
#define TEST_FAIL(MESSAGE) \
|
2023-07-14 18:28:27 +02:00
|
|
|
do { \
|
|
|
|
mbedtls_test_fail(MESSAGE, __LINE__, __FILE__); \
|
2023-07-21 18:07:00 +02:00
|
|
|
goto exit; \
|
|
|
|
} while (0)
|
2023-07-14 18:28:27 +02:00
|
|
|
|
2021-04-29 20:28:54 +02:00
|
|
|
/** Evaluate two integer expressions and fail the test case if they have
|
|
|
|
* different values.
|
2021-02-09 13:09:33 +01:00
|
|
|
*
|
2021-04-29 20:28:54 +02:00
|
|
|
* The two expressions should have the same signedness, otherwise the
|
|
|
|
* comparison is not meaningful if the signed value is negative.
|
|
|
|
*
|
|
|
|
* \param expr1 An integral-typed expression to evaluate.
|
|
|
|
* \param expr2 Another integral-typed expression to evaluate.
|
2021-02-09 13:09:33 +01:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define TEST_EQUAL(expr1, expr2) \
|
2021-04-29 20:28:54 +02:00
|
|
|
do { \
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!mbedtls_test_equal( #expr1 " == " #expr2, __LINE__, __FILE__, \
|
2023-07-17 19:27:03 +02:00
|
|
|
(unsigned long long) (expr1), (unsigned long long) (expr2))) \
|
2023-01-11 14:50:10 +01:00
|
|
|
goto exit; \
|
|
|
|
} while (0)
|
2021-02-09 13:09:33 +01:00
|
|
|
|
2022-04-13 23:59:52 +02:00
|
|
|
/** Evaluate two unsigned integer expressions and fail the test case
|
|
|
|
* if they are not in increasing order (left <= right).
|
|
|
|
*
|
|
|
|
* \param expr1 An integral-typed expression to evaluate.
|
|
|
|
* \param expr2 Another integral-typed expression to evaluate.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define TEST_LE_U(expr1, expr2) \
|
2022-04-13 23:59:52 +02:00
|
|
|
do { \
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!mbedtls_test_le_u( #expr1 " <= " #expr2, __LINE__, __FILE__, \
|
|
|
|
expr1, expr2)) \
|
|
|
|
goto exit; \
|
|
|
|
} while (0)
|
2022-04-13 23:59:52 +02:00
|
|
|
|
|
|
|
/** Evaluate two signed integer expressions and fail the test case
|
|
|
|
* if they are not in increasing order (left <= right).
|
|
|
|
*
|
|
|
|
* \param expr1 An integral-typed expression to evaluate.
|
|
|
|
* \param expr2 Another integral-typed expression to evaluate.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define TEST_LE_S(expr1, expr2) \
|
2022-04-13 23:59:52 +02:00
|
|
|
do { \
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!mbedtls_test_le_s( #expr1 " <= " #expr2, __LINE__, __FILE__, \
|
|
|
|
expr1, expr2)) \
|
|
|
|
goto exit; \
|
|
|
|
} while (0)
|
2022-04-13 23:59:52 +02:00
|
|
|
|
2021-02-09 13:09:33 +01:00
|
|
|
/** Allocate memory dynamically and fail the test case if this fails.
|
|
|
|
* The allocated memory will be filled with zeros.
|
|
|
|
*
|
|
|
|
* You must set \p pointer to \c NULL before calling this macro and
|
2023-07-21 12:34:44 +02:00
|
|
|
* put `mbedtls_free(pointer)` in the test's cleanup code.
|
2021-02-09 13:09:33 +01:00
|
|
|
*
|
2023-07-21 12:34:44 +02:00
|
|
|
* If \p item_count is zero, the resulting \p pointer will be \c NULL.
|
2021-02-09 13:09:33 +01:00
|
|
|
* This is usually what we want in tests since API functions are
|
|
|
|
* supposed to accept null pointers when a buffer size is zero.
|
|
|
|
*
|
|
|
|
* This macro expands to an instruction, not an expression.
|
|
|
|
* It may jump to the \c exit label.
|
|
|
|
*
|
2023-07-21 12:34:44 +02:00
|
|
|
* \param pointer An lvalue where the address of the allocated buffer
|
|
|
|
* will be stored.
|
|
|
|
* This expression may be evaluated multiple times.
|
|
|
|
* \param item_count Number of elements to allocate.
|
|
|
|
* This expression may be evaluated multiple times.
|
2021-02-09 13:09:33 +01:00
|
|
|
*
|
|
|
|
*/
|
2023-07-21 12:34:44 +02:00
|
|
|
#define TEST_CALLOC(pointer, item_count) \
|
2023-07-20 17:48:18 +02:00
|
|
|
do { \
|
|
|
|
TEST_ASSERT((pointer) == NULL); \
|
2023-07-21 12:34:44 +02:00
|
|
|
if ((item_count) != 0) { \
|
2023-07-20 17:48:18 +02:00
|
|
|
(pointer) = mbedtls_calloc(sizeof(*(pointer)), \
|
2023-07-21 12:34:44 +02:00
|
|
|
(item_count)); \
|
2023-07-20 17:48:18 +02:00
|
|
|
TEST_ASSERT((pointer) != NULL); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2023-09-19 18:34:39 +02:00
|
|
|
/** Allocate memory dynamically and fail the test case if this fails.
|
|
|
|
* The allocated memory will be filled with zeros.
|
|
|
|
*
|
|
|
|
* You must set \p pointer to \c NULL before calling this macro and
|
|
|
|
* put `mbedtls_free(pointer)` in the test's cleanup code.
|
|
|
|
*
|
|
|
|
* If \p item_count is zero, the resulting \p pointer will not be \c NULL.
|
|
|
|
*
|
|
|
|
* This macro expands to an instruction, not an expression.
|
|
|
|
* It may jump to the \c exit label.
|
|
|
|
*
|
|
|
|
* \param pointer An lvalue where the address of the allocated buffer
|
|
|
|
* will be stored.
|
|
|
|
* This expression may be evaluated multiple times.
|
|
|
|
* \param item_count Number of elements to allocate.
|
|
|
|
* This expression may be evaluated multiple times.
|
|
|
|
*
|
2023-09-19 19:30:25 +02:00
|
|
|
* Note: if passing size 0, mbedtls_calloc may return NULL. In this case,
|
|
|
|
* we reattempt to allocate with the smallest possible buffer to assure a
|
|
|
|
* non-NULL pointer.
|
2023-09-19 18:34:39 +02:00
|
|
|
*/
|
|
|
|
#define TEST_CALLOC_NONNULL(pointer, item_count) \
|
|
|
|
do { \
|
|
|
|
TEST_ASSERT((pointer) == NULL); \
|
|
|
|
(pointer) = mbedtls_calloc(sizeof(*(pointer)), \
|
|
|
|
(item_count)); \
|
2023-09-19 19:30:25 +02:00
|
|
|
if (((pointer) == NULL) && ((item_count) == 0)) { \
|
|
|
|
(pointer) = mbedtls_calloc(1, 1); \
|
|
|
|
} \
|
2023-09-19 18:34:39 +02:00
|
|
|
TEST_ASSERT((pointer) != NULL); \
|
|
|
|
} while (0)
|
|
|
|
|
2023-07-20 17:48:18 +02:00
|
|
|
/* For backwards compatibility */
|
2023-07-21 12:34:44 +02:00
|
|
|
#define ASSERT_ALLOC(pointer, item_count) TEST_CALLOC(pointer, item_count)
|
2021-02-09 13:09:33 +01:00
|
|
|
|
|
|
|
/** Allocate memory dynamically. If the allocation fails, skip the test case.
|
|
|
|
*
|
2023-07-21 12:31:13 +02:00
|
|
|
* This macro behaves like #TEST_CALLOC, except that if the allocation
|
2021-02-09 13:09:33 +01:00
|
|
|
* fails, it marks the test as skipped rather than failed.
|
|
|
|
*/
|
2023-07-21 12:34:44 +02:00
|
|
|
#define TEST_CALLOC_OR_SKIP(pointer, item_count) \
|
2023-07-20 17:55:14 +02:00
|
|
|
do { \
|
|
|
|
TEST_ASSERT((pointer) == NULL); \
|
2023-07-21 12:34:44 +02:00
|
|
|
if ((item_count) != 0) { \
|
2023-07-20 17:55:14 +02:00
|
|
|
(pointer) = mbedtls_calloc(sizeof(*(pointer)), \
|
2023-07-21 12:34:44 +02:00
|
|
|
(item_count)); \
|
2023-07-20 17:55:14 +02:00
|
|
|
TEST_ASSUME((pointer) != NULL); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* For backwards compatibility */
|
2023-07-21 12:34:44 +02:00
|
|
|
#define ASSERT_ALLOC_WEAK(pointer, item_count) TEST_CALLOC_OR_SKIP(pointer, item_count)
|
2021-02-09 13:09:33 +01:00
|
|
|
|
|
|
|
/** Compare two buffers and fail the test case if they differ.
|
|
|
|
*
|
|
|
|
* This macro expands to an instruction, not an expression.
|
|
|
|
* It may jump to the \c exit label.
|
|
|
|
*
|
|
|
|
* \param p1 Pointer to the start of the first buffer.
|
|
|
|
* \param size1 Size of the first buffer in bytes.
|
|
|
|
* This expression may be evaluated multiple times.
|
|
|
|
* \param p2 Pointer to the start of the second buffer.
|
|
|
|
* \param size2 Size of the second buffer in bytes.
|
|
|
|
* This expression may be evaluated multiple times.
|
|
|
|
*/
|
2023-07-21 12:40:20 +02:00
|
|
|
#define TEST_MEMORY_COMPARE(p1, size1, p2, size2) \
|
2023-07-20 17:46:01 +02:00
|
|
|
do { \
|
2023-02-09 09:15:04 +01:00
|
|
|
TEST_EQUAL((size1), (size2)); \
|
2023-07-20 17:46:01 +02:00
|
|
|
if ((size1) != 0) { \
|
|
|
|
TEST_ASSERT(memcmp((p1), (p2), (size1)) == 0); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* For backwards compatibility */
|
2023-07-21 12:40:20 +02:00
|
|
|
#define ASSERT_COMPARE(p1, size1, p2, size2) TEST_MEMORY_COMPARE(p1, size1, p2, size2)
|
2021-02-09 13:09:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief This macro tests the expression passed to it and skips the
|
|
|
|
* running test if it doesn't evaluate to 'true'.
|
|
|
|
*
|
|
|
|
* \param TEST The test expression to be tested.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define TEST_ASSUME(TEST) \
|
2021-02-09 13:09:33 +01:00
|
|
|
do { \
|
2023-01-11 14:50:10 +01:00
|
|
|
if (!(TEST)) \
|
2021-02-09 13:09:33 +01:00
|
|
|
{ \
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_test_skip( #TEST, __LINE__, __FILE__); \
|
2021-02-09 13:09:33 +01:00
|
|
|
goto exit; \
|
|
|
|
} \
|
2023-01-11 14:50:10 +01:00
|
|
|
} while (0)
|
2021-02-09 13:09:33 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
#define TEST_HELPER_ASSERT(a) if (!(a)) \
|
|
|
|
{ \
|
|
|
|
mbedtls_fprintf(stderr, "Assertion Failed at %s:%d - %s\n", \
|
|
|
|
__FILE__, __LINE__, #a); \
|
|
|
|
mbedtls_exit(1); \
|
|
|
|
}
|
2020-06-03 08:06:47 +02:00
|
|
|
|
|
|
|
/** Return the smaller of two values.
|
|
|
|
*
|
|
|
|
* \param x An integer-valued expression without side effects.
|
|
|
|
* \param y An integer-valued expression without side effects.
|
|
|
|
*
|
|
|
|
* \return The smaller of \p x and \p y.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define MIN(x, y) ((x) < (y) ? (x) : (y))
|
2020-06-03 08:06:47 +02:00
|
|
|
|
|
|
|
/** Return the larger of two values.
|
|
|
|
*
|
|
|
|
* \param x An integer-valued expression without side effects.
|
|
|
|
* \param y An integer-valued expression without side effects.
|
|
|
|
*
|
|
|
|
* \return The larger of \p x and \p y.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
2020-06-03 08:06:47 +02:00
|
|
|
|
2020-06-09 13:52:23 +02:00
|
|
|
#endif /* TEST_MACROS_H */
|