2016-05-17 18:20:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2014-06-07 17:05:50 +00:00
|
|
|
*
|
2016-05-17 18:20:24 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2014-06-07 17:05:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HEADER_TESTUTIL_H
|
2015-01-22 03:40:55 +00:00
|
|
|
# define HEADER_TESTUTIL_H
|
2014-06-07 17:05:50 +00:00
|
|
|
|
2017-03-22 04:27:55 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2016-08-09 15:03:23 +00:00
|
|
|
#include <openssl/err.h>
|
2016-11-07 15:53:15 +00:00
|
|
|
#include <openssl/e_os2.h>
|
2017-05-08 02:09:41 +00:00
|
|
|
#include <openssl/bn.h>
|
2016-08-09 15:03:23 +00:00
|
|
|
|
2016-11-07 15:53:15 +00:00
|
|
|
/*-
|
2017-04-18 14:27:27 +00:00
|
|
|
* Simple unit tests should implement register_tests().
|
2016-11-07 15:53:15 +00:00
|
|
|
* To register tests, call ADD_TEST or ADD_ALL_TESTS:
|
|
|
|
*
|
|
|
|
* void register_tests(void)
|
|
|
|
* {
|
|
|
|
* ADD_TEST(test_foo);
|
|
|
|
* ADD_ALL_TESTS(test_bar, num_test_bar);
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* Tests that need to perform custom setup or read command-line arguments should
|
2017-04-18 14:27:27 +00:00
|
|
|
* implement test_main():
|
2016-11-07 15:53:15 +00:00
|
|
|
*
|
|
|
|
* int test_main(int argc, char *argv[])
|
|
|
|
* {
|
|
|
|
* int ret;
|
|
|
|
*
|
|
|
|
* // Custom setup ...
|
|
|
|
*
|
|
|
|
* ADD_TEST(test_foo);
|
|
|
|
* ADD_ALL_TESTS(test_bar, num_test_bar);
|
|
|
|
* // Add more tests ...
|
|
|
|
*
|
|
|
|
* ret = run_tests(argv[0]);
|
|
|
|
*
|
|
|
|
* // Custom teardown ...
|
|
|
|
*
|
|
|
|
* return ret;
|
|
|
|
* }
|
2016-11-03 16:15:41 +00:00
|
|
|
*/
|
2016-11-07 15:53:15 +00:00
|
|
|
|
|
|
|
/* Adds a simple test case. */
|
2016-11-03 16:15:41 +00:00
|
|
|
# define ADD_TEST(test_function) add_test(#test_function, test_function)
|
|
|
|
|
2016-11-07 15:53:15 +00:00
|
|
|
/*
|
|
|
|
* Simple parameterized tests. Calls test_function(idx) for each 0 <= idx < num.
|
|
|
|
*/
|
|
|
|
# define ADD_ALL_TESTS(test_function, num) \
|
2017-04-19 08:34:54 +00:00
|
|
|
add_all_tests(#test_function, test_function, num, 1)
|
|
|
|
/*
|
|
|
|
* A variant of the same without TAP output.
|
|
|
|
*/
|
|
|
|
# define ADD_ALL_TESTS_NOSUBTEST(test_function, num) \
|
|
|
|
add_all_tests(#test_function, test_function, num, 0)
|
2016-11-07 15:53:15 +00:00
|
|
|
|
2014-12-28 02:48:40 +00:00
|
|
|
/*-
|
2016-11-03 16:15:41 +00:00
|
|
|
* Test cases that share common setup should use the helper
|
2014-12-28 02:48:40 +00:00
|
|
|
* SETUP_TEST_FIXTURE and EXECUTE_TEST macros for test case functions.
|
2014-06-07 17:05:50 +00:00
|
|
|
*
|
|
|
|
* SETUP_TEST_FIXTURE will call set_up() to create a new TEST_FIXTURE_TYPE
|
|
|
|
* object called "fixture". It will also allocate the "result" variable used
|
|
|
|
* by EXECUTE_TEST. set_up() should take a const char* specifying the test
|
|
|
|
* case name and return a TEST_FIXTURE_TYPE by value.
|
|
|
|
*
|
|
|
|
* EXECUTE_TEST will pass fixture to execute_func() by value, call
|
|
|
|
* tear_down(), and return the result of execute_func(). execute_func() should
|
2016-04-05 12:29:06 +00:00
|
|
|
* take a TEST_FIXTURE_TYPE by value and return 1 on success and 0 on
|
2014-06-07 17:05:50 +00:00
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
* Unit tests can define their own SETUP_TEST_FIXTURE and EXECUTE_TEST
|
|
|
|
* variations like so:
|
|
|
|
*
|
|
|
|
* #define SETUP_FOOBAR_TEST_FIXTURE()\
|
|
|
|
* SETUP_TEST_FIXTURE(FOOBAR_TEST_FIXTURE, set_up_foobar)
|
|
|
|
*
|
|
|
|
* #define EXECUTE_FOOBAR_TEST()\
|
|
|
|
* EXECUTE_TEST(execute_foobar, tear_down_foobar)
|
|
|
|
*
|
|
|
|
* Then test case functions can take the form:
|
|
|
|
*
|
|
|
|
* static int test_foobar_feature()
|
2015-01-22 03:40:55 +00:00
|
|
|
* {
|
|
|
|
* SETUP_FOOBAR_TEST_FIXTURE();
|
|
|
|
* [...set individual members of fixture...]
|
|
|
|
* EXECUTE_FOOBAR_TEST();
|
|
|
|
* }
|
2014-06-07 17:05:50 +00:00
|
|
|
*/
|
2015-01-22 03:40:55 +00:00
|
|
|
# define SETUP_TEST_FIXTURE(TEST_FIXTURE_TYPE, set_up)\
|
2016-03-17 14:14:30 +00:00
|
|
|
TEST_FIXTURE_TYPE fixture = set_up(TEST_CASE_NAME); \
|
|
|
|
int result = 0
|
2014-06-07 17:05:50 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
# define EXECUTE_TEST(execute_func, tear_down)\
|
2016-04-05 12:29:06 +00:00
|
|
|
result = execute_func(fixture);\
|
2015-01-22 03:40:55 +00:00
|
|
|
tear_down(fixture);\
|
|
|
|
return result
|
2014-06-07 17:05:50 +00:00
|
|
|
|
2016-11-04 15:06:12 +00:00
|
|
|
/* Shorthand if tear_down does nothing. */
|
|
|
|
# define EXECUTE_TEST_NO_TEARDOWN(execute_func)\
|
|
|
|
result = execute_func(fixture);\
|
|
|
|
return result
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* TEST_CASE_NAME is defined as the name of the test case function where
|
2014-06-07 17:05:50 +00:00
|
|
|
* possible; otherwise we get by with the file name and line number.
|
|
|
|
*/
|
2017-02-23 13:52:23 +00:00
|
|
|
# if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
|
2015-01-22 03:40:55 +00:00
|
|
|
# if defined(_MSC_VER)
|
|
|
|
# define TEST_CASE_NAME __FUNCTION__
|
|
|
|
# else
|
|
|
|
# define testutil_stringify_helper(s) #s
|
|
|
|
# define testutil_stringify(s) testutil_stringify_helper(s)
|
|
|
|
# define TEST_CASE_NAME __FILE__ ":" testutil_stringify(__LINE__)
|
|
|
|
# endif /* _MSC_VER */
|
|
|
|
# else
|
|
|
|
# define TEST_CASE_NAME __func__
|
|
|
|
# endif /* __STDC_VERSION__ */
|
2014-06-07 17:05:50 +00:00
|
|
|
|
2016-03-17 14:14:30 +00:00
|
|
|
/*
|
2016-11-07 15:53:15 +00:00
|
|
|
* Internal helpers. Test programs shouldn't use these directly, but should
|
|
|
|
* rather link to one of the helper main() methods.
|
2016-03-17 14:14:30 +00:00
|
|
|
*/
|
2016-11-07 15:53:15 +00:00
|
|
|
|
|
|
|
/* setup_test() should be called as the first thing in a test main(). */
|
|
|
|
void setup_test(void);
|
|
|
|
/*
|
|
|
|
* finish_test() should be called as the last thing in a test main().
|
|
|
|
* The result of run_tests() should be the input to finish_test().
|
|
|
|
*/
|
|
|
|
__owur int finish_test(int ret);
|
2016-03-17 14:14:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
void add_test(const char *test_case_name, int (*test_fn) ());
|
2017-04-19 08:34:54 +00:00
|
|
|
void add_all_tests(const char *test_case_name, int (*test_fn)(int idx), int num,
|
|
|
|
int subtest);
|
2016-11-07 15:53:15 +00:00
|
|
|
__owur int run_tests(const char *test_prog_name);
|
2017-05-11 17:12:48 +00:00
|
|
|
void set_test_title(const char *title);
|
2014-06-19 16:27:54 +00:00
|
|
|
|
2017-04-18 14:27:27 +00:00
|
|
|
/*
|
|
|
|
* Declarations for user defined functions
|
|
|
|
*/
|
|
|
|
void register_tests(void);
|
|
|
|
int test_main(int argc, char *argv[]);
|
|
|
|
|
|
|
|
|
2016-07-04 18:16:14 +00:00
|
|
|
/*
|
|
|
|
* Test assumption verification helpers.
|
|
|
|
*/
|
|
|
|
|
2017-03-22 04:27:55 +00:00
|
|
|
#define PRINTF_FORMAT(a, b)
|
2017-04-18 14:27:27 +00:00
|
|
|
#if defined(__GNUC__) && defined(__STDC_VERSION__)
|
|
|
|
/*
|
|
|
|
* Because we support the 'z' modifier, which made its appearance in C99,
|
|
|
|
* we can't use __attribute__ with pre C99 dialects.
|
|
|
|
*/
|
|
|
|
# if __STDC_VERSION__ >= 199901L
|
|
|
|
# undef PRINTF_FORMAT
|
|
|
|
# define PRINTF_FORMAT(a, b) __attribute__ ((format(printf, a, b)))
|
|
|
|
# endif
|
2017-03-22 04:27:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
# define DECLARE_COMPARISON(type, name, opname) \
|
|
|
|
int test_ ## name ## _ ## opname(const char *, int, \
|
|
|
|
const char *, const char *, \
|
|
|
|
const type, const type);
|
|
|
|
|
|
|
|
# define DECLARE_COMPARISONS(type, name) \
|
|
|
|
DECLARE_COMPARISON(type, name, eq) \
|
|
|
|
DECLARE_COMPARISON(type, name, ne) \
|
|
|
|
DECLARE_COMPARISON(type, name, lt) \
|
|
|
|
DECLARE_COMPARISON(type, name, le) \
|
|
|
|
DECLARE_COMPARISON(type, name, gt) \
|
|
|
|
DECLARE_COMPARISON(type, name, ge)
|
|
|
|
|
|
|
|
DECLARE_COMPARISONS(int, int)
|
|
|
|
DECLARE_COMPARISONS(unsigned int, uint)
|
|
|
|
DECLARE_COMPARISONS(char, char)
|
|
|
|
DECLARE_COMPARISONS(unsigned char, uchar)
|
|
|
|
DECLARE_COMPARISONS(long, long)
|
|
|
|
DECLARE_COMPARISONS(unsigned long, ulong)
|
2017-04-19 11:06:08 +00:00
|
|
|
/*
|
|
|
|
* Because this comparison uses a printf format specifier that's not
|
|
|
|
* universally known (yet), we provide an option to not have it declared.
|
|
|
|
*/
|
|
|
|
# ifndef TESTUTIL_NO_size_t_COMPARISON
|
2017-03-22 04:27:55 +00:00
|
|
|
DECLARE_COMPARISONS(size_t, size_t)
|
2017-04-19 11:06:08 +00:00
|
|
|
# endif
|
2017-03-22 04:27:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Pointer comparisons against other pointers and null.
|
|
|
|
* These functions return 1 if the test is true.
|
|
|
|
* Otherwise, they return 0 and pretty-print diagnostics.
|
|
|
|
* These should not be called directly, use the TEST_xxx macros below instead.
|
|
|
|
*/
|
|
|
|
DECLARE_COMPARISON(void *, ptr, eq)
|
|
|
|
DECLARE_COMPARISON(void *, ptr, ne)
|
|
|
|
int test_ptr(const char *file, int line, const char *s, const void *p);
|
|
|
|
int test_ptr_null(const char *file, int line, const char *s, const void *p);
|
|
|
|
|
2016-07-04 18:16:14 +00:00
|
|
|
/*
|
2017-03-22 04:27:55 +00:00
|
|
|
* Equality tests for strings where NULL is a legitimate value.
|
|
|
|
* These calls return 1 if the two passed strings compare true.
|
|
|
|
* Otherwise, they return 0 and pretty-print diagnostics.
|
|
|
|
* These should not be called directly, use the TEST_xxx macros below instead.
|
2016-07-04 18:16:14 +00:00
|
|
|
*/
|
2017-03-22 04:27:55 +00:00
|
|
|
DECLARE_COMPARISON(char *, str, eq)
|
|
|
|
DECLARE_COMPARISON(char *, str, ne)
|
|
|
|
|
2017-04-18 20:33:15 +00:00
|
|
|
/*
|
|
|
|
* Same as above, but for strncmp.
|
|
|
|
*/
|
|
|
|
int test_strn_eq(const char *file, int line, const char *, const char *,
|
|
|
|
const char *a, const char *b, size_t s);
|
|
|
|
int test_strn_ne(const char *file, int line, const char *, const char *,
|
|
|
|
const char *a, const char *b, size_t s);
|
|
|
|
|
2017-03-22 04:27:55 +00:00
|
|
|
/*
|
|
|
|
* Equality test for memory blocks where NULL is a legitimate value.
|
2017-04-12 22:51:28 +00:00
|
|
|
* These calls return 1 if the two memory blocks compare true.
|
2017-03-22 04:27:55 +00:00
|
|
|
* Otherwise, they return 0 and pretty-print diagnostics.
|
|
|
|
* These should not be called directly, use the TEST_xxx macros below instead.
|
|
|
|
*/
|
|
|
|
int test_mem_eq(const char *, int, const char *, const char *,
|
|
|
|
const void *, size_t, const void *, size_t);
|
|
|
|
int test_mem_ne(const char *, int, const char *, const char *,
|
|
|
|
const void *, size_t, const void *, size_t);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check a boolean result for being true or false.
|
|
|
|
* They return 1 if the condition is true (i.e. the value is non-zro).
|
|
|
|
* Otherwise, they return 0 and pretty-prints diagnostics using |desc|.
|
|
|
|
* These should not be called directly, use the TEST_xxx macros below instead.
|
|
|
|
*/
|
|
|
|
int test_true(const char *file, int line, const char *s, int b);
|
|
|
|
int test_false(const char *file, int line, const char *s, int b);
|
|
|
|
|
2017-05-08 02:09:41 +00:00
|
|
|
/*
|
|
|
|
* Comparisons between BIGNUMs.
|
|
|
|
* BIGNUMS can be compared against other BIGNUMs or zero.
|
|
|
|
* Some additional equality tests against 1 & specific values are provided.
|
|
|
|
* Tests for parity are included as well.
|
|
|
|
*/
|
|
|
|
DECLARE_COMPARISONS(BIGNUM *, BN)
|
|
|
|
int test_BN_eq_zero(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_ne_zero(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_lt_zero(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_le_zero(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_gt_zero(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_ge_zero(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_eq_one(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_odd(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_even(const char *file, int line, const char *s, const BIGNUM *a);
|
|
|
|
int test_BN_eq_word(const char *file, int line, const char *bns, const char *ws,
|
|
|
|
const BIGNUM *a, BN_ULONG w);
|
|
|
|
int test_BN_abs_eq_word(const char *file, int line, const char *bns,
|
|
|
|
const char *ws, const BIGNUM *a, BN_ULONG w);
|
|
|
|
|
2017-03-22 04:27:55 +00:00
|
|
|
/*
|
|
|
|
* Pretty print a failure message.
|
|
|
|
* These should not be called directly, use the TEST_xxx macros below instead.
|
|
|
|
*/
|
|
|
|
void test_error(const char *file, int line, const char *desc, ...)
|
|
|
|
PRINTF_FORMAT(3, 4);
|
|
|
|
void test_error_c90(const char *desc, ...) PRINTF_FORMAT(1, 2);
|
|
|
|
void test_info(const char *file, int line, const char *desc, ...)
|
|
|
|
PRINTF_FORMAT(3, 4);
|
|
|
|
void test_info_c90(const char *desc, ...) PRINTF_FORMAT(1, 2);
|
2017-04-28 12:48:13 +00:00
|
|
|
void test_openssl_errors(void);
|
2017-03-22 04:27:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The following macros provide wrapper calls to the test functions with
|
|
|
|
* a default description that indicates the file and line number of the error.
|
2017-04-12 22:51:28 +00:00
|
|
|
*
|
|
|
|
* The following macros guarantee to evaluate each argument exactly once.
|
|
|
|
* This allows constructs such as: if(!TEST_ptr(ptr = OPENSSL_malloc(..)))
|
|
|
|
* to produce better contextual output than:
|
|
|
|
* ptr = OPENSSL_malloc(..);
|
|
|
|
* if (!TEST_ptr(ptr))
|
2017-03-22 04:27:55 +00:00
|
|
|
*/
|
|
|
|
# define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
|
|
|
|
# define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
|
2017-04-12 22:51:28 +00:00
|
|
|
# define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uint_lt(a, b) test_uint_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uint_le(a, b) test_uint_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uint_gt(a, b) test_uint_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uint_ge(a, b) test_uint_ge(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
|
|
|
|
# define TEST_char_eq(a, b) test_char_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_char_ne(a, b) test_char_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_char_lt(a, b) test_char_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_char_le(a, b) test_char_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_char_gt(a, b) test_char_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_char_ge(a, b) test_char_ge(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
|
|
|
|
# define TEST_uchar_eq(a, b) test_uchar_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uchar_ne(a, b) test_uchar_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uchar_lt(a, b) test_uchar_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uchar_le(a, b) test_uchar_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uchar_gt(a, b) test_uchar_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_uchar_ge(a, b) test_uchar_ge(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
|
|
|
|
# define TEST_long_eq(a, b) test_long_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_long_ne(a, b) test_long_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_long_lt(a, b) test_long_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_long_le(a, b) test_long_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_long_gt(a, b) test_long_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_long_ge(a, b) test_long_ge(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
|
|
|
|
# define TEST_ulong_eq(a, b) test_ulong_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_ulong_ne(a, b) test_ulong_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_ulong_lt(a, b) test_ulong_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_ulong_le(a, b) test_ulong_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_ulong_gt(a, b) test_ulong_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_ulong_ge(a, b) test_ulong_ge(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
|
|
|
|
# define TEST_size_t_eq(a, b) test_size_t_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_size_t_ne(a, b) test_size_t_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_size_t_lt(a, b) test_size_t_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_size_t_le(a, b) test_size_t_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_size_t_gt(a, b) test_size_t_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_size_t_ge(a, b) test_size_t_ge(__FILE__, __LINE__, #a, #b, a, b)
|
2017-03-22 04:27:55 +00:00
|
|
|
|
|
|
|
# define TEST_ptr_eq(a, b) test_ptr_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_ptr_ne(a, b) test_ptr_ne(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_ptr(a) test_ptr(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_ptr_null(a) test_ptr_null(__FILE__, __LINE__, #a, a)
|
|
|
|
|
|
|
|
# define TEST_str_eq(a, b) test_str_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_str_ne(a, b) test_str_ne(__FILE__, __LINE__, #a, #b, a, b)
|
2017-04-18 20:33:15 +00:00
|
|
|
# define TEST_strn_eq(a, b, n) test_strn_eq(__FILE__, __LINE__, #a, #b, a, b, n)
|
|
|
|
# define TEST_strn_ne(a, b, n) test_strn_ne(__FILE__, __LINE__, #a, #b, a, b, n)
|
2017-03-22 04:27:55 +00:00
|
|
|
|
|
|
|
# define TEST_mem_eq(a, m, b, n) test_mem_eq(__FILE__, __LINE__, #a, #b, a, m, b, n)
|
|
|
|
# define TEST_mem_ne(a, m, b, n) test_mem_ne(__FILE__, __LINE__, #a, #b, a, m, b, n)
|
|
|
|
|
2017-04-09 21:13:59 +00:00
|
|
|
# define TEST_true(a) test_true(__FILE__, __LINE__, #a, (a) != 0)
|
|
|
|
# define TEST_false(a) test_false(__FILE__, __LINE__, #a, (a) != 0)
|
2017-03-22 04:27:55 +00:00
|
|
|
|
2017-05-08 02:09:41 +00:00
|
|
|
# define TEST_BN_eq(a, b) test_BN_eq(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_BN_ne(a, b) test_BN_ne(__FILE__, __LINE__, #a, #b, a, b)
|
2017-05-08 21:58:55 +00:00
|
|
|
# define TEST_BN_lt(a, b) test_BN_lt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_BN_gt(a, b) test_BN_gt(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_BN_le(a, b) test_BN_le(__FILE__, __LINE__, #a, #b, a, b)
|
|
|
|
# define TEST_BN_ge(a, b) test_BN_ge(__FILE__, __LINE__, #a, #b, a, b)
|
2017-05-08 02:09:41 +00:00
|
|
|
# define TEST_BN_eq_zero(a) test_BN_eq_zero(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_ne_zero(a) test_BN_ne_zero(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_lt_zero(a) test_BN_lt_zero(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_gt_zero(a) test_BN_gt_zero(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_le_zero(a) test_BN_le_zero(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_ge_zero(a) test_BN_ge_zero(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_eq_one(a) test_BN_eq_one(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_eq_word(a, w) test_BN_eq_word(__FILE__, __LINE__, #a, #w, a, w)
|
|
|
|
# define TEST_BN_abs_eq_word(a, w) test_BN_abs_eq_word(__FILE__, __LINE__, #a, #w, a, w)
|
|
|
|
# define TEST_BN_odd(a) test_BN_odd(__FILE__, __LINE__, #a, a)
|
|
|
|
# define TEST_BN_even(a) test_BN_even(__FILE__, __LINE__, #a, a)
|
|
|
|
|
2017-03-22 04:27:55 +00:00
|
|
|
/*
|
|
|
|
* TEST_error(desc, ...) prints an informative error message in the standard
|
|
|
|
* format. |desc| is a printf format string.
|
|
|
|
*/
|
|
|
|
# if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
|
|
|
|
# define TEST_error test_error_c90
|
|
|
|
# define TEST_info test_info_c90
|
|
|
|
# else
|
|
|
|
# define TEST_error(...) test_error(__FILE__, __LINE__, __VA_ARGS__)
|
|
|
|
# define TEST_info(...) test_info(__FILE__, __LINE__, __VA_ARGS__)
|
|
|
|
# endif
|
2017-04-28 12:48:13 +00:00
|
|
|
# define TEST_openssl_errors test_openssl_errors
|
2016-08-09 15:03:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For "impossible" conditions such as malloc failures or bugs in test code,
|
|
|
|
* where continuing the test would be meaningless. Note that OPENSSL_assert
|
|
|
|
* is fatal, and is never compiled out.
|
|
|
|
*/
|
2017-03-22 04:27:55 +00:00
|
|
|
# define TEST_check(condition) \
|
2016-08-09 15:03:23 +00:00
|
|
|
do { \
|
|
|
|
if (!(condition)) { \
|
2017-04-28 12:48:13 +00:00
|
|
|
TEST_openssl_errors(); \
|
2016-08-09 15:03:23 +00:00
|
|
|
OPENSSL_assert(!#condition); \
|
|
|
|
} \
|
2016-11-01 14:12:32 +00:00
|
|
|
} while (0)
|
2017-04-18 14:27:27 +00:00
|
|
|
|
|
|
|
extern BIO *bio_out;
|
|
|
|
extern BIO *bio_err;
|
2017-04-19 08:34:54 +00:00
|
|
|
|
2017-06-05 17:32:05 +00:00
|
|
|
/*
|
|
|
|
* Utilities to parse a test file.
|
|
|
|
*/
|
|
|
|
#define TESTMAXPAIRS 20
|
|
|
|
|
|
|
|
typedef struct pair_st {
|
|
|
|
char *key;
|
|
|
|
char *value;
|
|
|
|
} PAIR;
|
|
|
|
|
|
|
|
typedef struct stanza_st {
|
|
|
|
const char *test_file; /* Input file name */
|
|
|
|
BIO *fp; /* Input file */
|
|
|
|
int curr; /* Current line in file */
|
|
|
|
int start; /* Line where test starts */
|
|
|
|
int errors; /* Error count */
|
|
|
|
int numtests; /* Number of tests */
|
|
|
|
int numskip; /* Number of skipped tests */
|
|
|
|
int numpairs;
|
|
|
|
PAIR pairs[TESTMAXPAIRS];
|
|
|
|
BIO *key; /* temp memory BIO for reading in keys */
|
|
|
|
char buff[4096]; /* Input buffer for a single key/value */
|
|
|
|
} STANZA;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prepare to start reading the file |testfile| as input.
|
|
|
|
*/
|
|
|
|
int test_start_file(STANZA *s, const char *testfile);
|
|
|
|
int test_end_file(STANZA *s);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a stanza from the test file. A stanza consists of a block
|
2017-06-06 15:35:43 +00:00
|
|
|
* of lines of the form
|
2017-06-05 17:32:05 +00:00
|
|
|
* key = value
|
|
|
|
* The block is terminated by EOF or a blank line.
|
|
|
|
* Return 1 if found, 0 on EOF or error.
|
|
|
|
*/
|
|
|
|
int test_readstanza(STANZA *s);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear a stanza, release all allocated memory.
|
|
|
|
*/
|
|
|
|
void test_clearstanza(STANZA *s);
|
|
|
|
|
2017-04-28 12:37:19 +00:00
|
|
|
#endif /* HEADER_TESTUTIL_H */
|