2 * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
10 #include "../testutil.h"
13 #include "../../e_os.h"
15 /* The size of memory buffers to display on failure */
16 #define MEM_BUFFER_SIZE (21)
19 * A common routine to output test failure messages. Generally this should not
20 * be called directly, rather it should be called by the following functions.
22 * |desc| is a printf formatted description with arguments |args| that is
23 * supplied by the user and |desc| can be NULL. |type| is the data type
24 * that was tested (int, char, ptr, ...). |fmt| is a system provided
25 * printf format with following arguments that spell out the failure
26 * details i.e. the actual values compared and the operator used.
28 * The typical use for this is from an utility test function:
30 * int test6(const char *file, int line, int n) {
32 * test_fail_message(1, file, line, "int", "value %d is not %d", n, 6);
38 * calling test6(3, "oops") will return 0 and produce out along the lines of:
39 * FAIL oops: (int) value 3 is not 6\n
41 * It general, test_fail_message should not be called directly.
43 static void test_fail_message(const char *prefix, const char *file, int line,
44 const char *type, const char *fmt, ...)
47 static void helper_printf_stderr(const char *fmt, ...)
52 test_vprintf_stderr(fmt, ap);
56 static void test_fail_message_va(const char *prefix, const char *file, int line,
57 const char *type, const char *fmt, va_list ap)
59 test_puts_stderr(prefix != NULL ? prefix : "ERROR");
60 test_puts_stderr(":");
62 helper_printf_stderr(" (%s)", type);
64 test_puts_stderr(" ");
65 test_vprintf_stderr(fmt, ap);
68 helper_printf_stderr(" @ %s:%d", file, line);
70 test_puts_stderr("\n");
74 static void test_fail_message(const char *prefix, const char *file, int line,
75 const char *type, const char *fmt, ...)
80 test_fail_message_va(prefix, file, line, type, fmt, ap);
84 void test_info_c90(const char *desc, ...)
89 test_fail_message_va("INFO", NULL, -1, NULL, desc, ap);
93 void test_info(const char *file, int line, const char *desc, ...)
98 test_fail_message_va("INFO", file, line, NULL, desc, ap);
102 void test_error_c90(const char *desc, ...)
107 test_fail_message(NULL, NULL, -1, NULL, desc, ap);
111 void test_error(const char *file, int line, const char *desc, ...)
116 test_fail_message_va(NULL, file, line, NULL, desc, ap);
121 * Define some comparisons between pairs of various types.
122 * These functions return 1 if the test is true.
123 * Otherwise, they return 0 and pretty-print diagnostics.
125 * In each case the functions produced are:
126 * int test_name_eq(const type t1, const type t2, const char *desc, ...);
127 * int test_name_ne(const type t1, const type t2, const char *desc, ...);
128 * int test_name_lt(const type t1, const type t2, const char *desc, ...);
129 * int test_name_le(const type t1, const type t2, const char *desc, ...);
130 * int test_name_gt(const type t1, const type t2, const char *desc, ...);
131 * int test_name_ge(const type t1, const type t2, const char *desc, ...);
133 * The t1 and t2 arguments are to be compared for equality, inequality,
134 * less than, less than or equal to, greater than and greater than or
135 * equal to respectively. If the specified condition holds, the functions
136 * return 1. If the condition does not hold, the functions print a diagnostic
137 * message and return 0.
139 * The desc argument is a printf format string followed by its arguments and
140 * this is included in the output if the condition being tested for is false.
142 #define DEFINE_COMPARISON(type, name, opname, op, fmt) \
143 int test_ ## name ## _ ## opname(const char *file, int line, \
144 const char *s1, const char *s2, \
145 const type t1, const type t2) \
149 test_fail_message(NULL, file, line, #type, \
150 "%s [" fmt "] " #op " %s [" fmt "]", \
155 #define DEFINE_COMPARISONS(type, name, fmt) \
156 DEFINE_COMPARISON(type, name, eq, ==, fmt) \
157 DEFINE_COMPARISON(type, name, ne, !=, fmt) \
158 DEFINE_COMPARISON(type, name, lt, <, fmt) \
159 DEFINE_COMPARISON(type, name, le, <=, fmt) \
160 DEFINE_COMPARISON(type, name, gt, >, fmt) \
161 DEFINE_COMPARISON(type, name, ge, >=, fmt)
163 DEFINE_COMPARISONS(int, int, "%d")
164 DEFINE_COMPARISONS(unsigned int, uint, "%u")
165 DEFINE_COMPARISONS(char, char, "%c")
166 DEFINE_COMPARISONS(unsigned char, uchar, "%u")
167 DEFINE_COMPARISONS(long, long, "%ld")
168 DEFINE_COMPARISONS(unsigned long, ulong, "%lu")
169 DEFINE_COMPARISONS(size_t, size_t, "%zu")
171 DEFINE_COMPARISON(void *, ptr, eq, ==, "%p")
172 DEFINE_COMPARISON(void *, ptr, ne, !=, "%p")
174 int test_ptr_null(const char *file, int line, const char *s, const void *p)
178 test_fail_message(NULL, file, line, "ptr", "%s [%p] == NULL", s, p);
182 int test_ptr(const char *file, int line, const char *s, const void *p)
186 test_fail_message(NULL, file, line, "ptr", "%s [%p] != NULL", s, p);
190 int test_true(const char *file, int line, const char *s, int b)
194 test_fail_message(NULL, file, line, "bool", "%s [false] == true", s);
198 int test_false(const char *file, int line, const char *s, int b)
202 test_fail_message(NULL, file, line, "bool", "%s [true] == false", s);
206 static const char *print_string_maybe_null(const char *s)
208 return s == NULL ? "(NULL)" : s;
211 int test_str_eq(const char *file, int line, const char *st1, const char *st2,
212 const char *s1, const char *s2)
214 if (s1 == NULL && s2 == NULL)
216 if (s1 == NULL || s2 == NULL || strcmp(s1, s2) != 0) {
217 test_fail_message(NULL, file, line, "string", "%s [%s] == %s [%s]",
218 st1, print_string_maybe_null(s1),
219 st2, print_string_maybe_null(s2));
225 int test_str_ne(const char *file, int line, const char *st1, const char *st2,
226 const char *s1, const char *s2)
228 if ((s1 == NULL) ^ (s2 == NULL))
230 if (s1 == NULL || strcmp(s1, s2) == 0) {
231 test_fail_message(NULL, file, line, "string", "%s [%s] != %s [%s]",
232 st1, print_string_maybe_null(s1),
233 st2, print_string_maybe_null(s2));
239 int test_strn_eq(const char *file, int line, const char *st1, const char *st2,
240 const char *s1, const char *s2, size_t len)
244 if (s1 == NULL && s2 == NULL)
246 if (s1 == NULL || s2 == NULL || strncmp(s1, s2, len) != 0) {
247 test_fail_message(NULL, file, line, "string", "%.s [%.*s] == %s [%.*s]",
248 st1, prec, print_string_maybe_null(s1),
249 st2, prec, print_string_maybe_null(s2));
255 int test_strn_ne(const char *file, int line, const char *st1, const char *st2,
256 const char *s1, const char *s2, size_t len)
260 if ((s1 == NULL) ^ (s2 == NULL))
262 if (s1 == NULL || strncmp(s1, s2, len) == 0) {
263 test_fail_message(NULL, file, line, "string", "%s [%.*s] != %s [%.*s]",
264 st1, prec, print_string_maybe_null(s1),
265 st2, prec, print_string_maybe_null(s2));
272 * We could use OPENSSL_buf2hexstr() to do this but trying to allocate memory
273 * in a failure state isn't generally a great idea.
275 static const char *print_mem_maybe_null(const void *s, size_t n,
276 char out[MEM_BUFFER_SIZE])
279 const unsigned char *p = (const unsigned char *)s;
280 int pad = 2*n >= MEM_BUFFER_SIZE;
285 n = MEM_BUFFER_SIZE-4;
287 for (i=0; i<2*n; i++) {
288 unsigned char c = (i & 1) != 0 ? p[i / 2] & 15 : p[i / 2] >> 4;
289 out[i] = "0123456789abcdef"[c];
301 int test_mem_eq(const char *file, int line, const char *st1, const char *st2,
302 const void *s1, size_t n1, const void *s2, size_t n2)
304 char b1[MEM_BUFFER_SIZE], b2[MEM_BUFFER_SIZE];
306 if (s1 == NULL && s2 == NULL)
309 test_fail_message(NULL, file, line, "memory",
310 "size mismatch %s %s [%zu] != %s %s [%zu]",
311 st1, print_mem_maybe_null(s1, n1, b1), n1,
312 st2, print_mem_maybe_null(s2, n2, b2), n2);
315 if (s1 == NULL || s2 == NULL || memcmp(s1, s2, n1) != 0) {
316 test_fail_message(NULL, file, line, "memory",
317 "%s %s [%zu] != %s %s [%zu]",
318 st1, print_mem_maybe_null(s1, n1, b1), n1,
319 st2, print_mem_maybe_null(s2, n2, b2), n2);
325 int test_mem_ne(const char *file, int line, const char *st1, const char *st2,
326 const void *s1, size_t n1, const void *s2, size_t n2)
328 char b1[MEM_BUFFER_SIZE], b2[MEM_BUFFER_SIZE];
330 if ((s1 == NULL) ^ (s2 == NULL))
334 if (s1 == NULL || memcmp(s1, s2, n1) == 0) {
335 test_fail_message(NULL, file, line, "memory",
336 "%s %s [%zu] != %s %s [%zu]",
337 st1, print_mem_maybe_null(s1, n1, b1), n1,
338 st2, print_mem_maybe_null(s2, n2, b2), n2);