Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 2 | /* |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 3 | * Simple unit test library |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2013 Google, Inc |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 8 | #ifndef __TEST_UT_H |
| 9 | #define __TEST_UT_H |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 10 | |
Simon Glass | c5e7f66 | 2020-04-08 16:57:40 -0600 | [diff] [blame] | 11 | #include <hexdump.h> |
Simon Glass | 7e1cebf | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 12 | #include <linux/err.h> |
| 13 | |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 14 | struct unit_test_state; |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 15 | |
| 16 | /** |
| 17 | * ut_fail() - Record failure of a unit test |
| 18 | * |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 19 | * @uts: Test state |
Vagrant Cascadian | edfdb99 | 2016-04-30 19:18:00 -0700 | [diff] [blame] | 20 | * @fname: Filename where the error occurred |
| 21 | * @line: Line number where the error occurred |
| 22 | * @func: Function name where the error occurred |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 23 | * @cond: The condition that failed |
| 24 | */ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 25 | void ut_fail(struct unit_test_state *uts, const char *fname, int line, |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 26 | const char *func, const char *cond); |
| 27 | |
| 28 | /** |
| 29 | * ut_failf() - Record failure of a unit test |
| 30 | * |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 31 | * @uts: Test state |
Vagrant Cascadian | edfdb99 | 2016-04-30 19:18:00 -0700 | [diff] [blame] | 32 | * @fname: Filename where the error occurred |
| 33 | * @line: Line number where the error occurred |
| 34 | * @func: Function name where the error occurred |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 35 | * @cond: The condition that failed |
| 36 | * @fmt: printf() format string for the error, followed by args |
| 37 | */ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 38 | void ut_failf(struct unit_test_state *uts, const char *fname, int line, |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 39 | const char *func, const char *cond, const char *fmt, ...) |
| 40 | __attribute__ ((format (__printf__, 6, 7))); |
| 41 | |
Simon Glass | d856e91 | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 42 | /** |
| 43 | * ut_check_console_line() - Check the next console line against expectations |
| 44 | * |
| 45 | * This creates a string and then checks it against the next line of console |
| 46 | * output obtained with console_record_readline(). |
| 47 | * |
| 48 | * After the function returns, uts->expect_str holds the expected string and |
| 49 | * uts->actual_str holds the actual string read from the console. |
| 50 | * |
| 51 | * @uts: Test state |
| 52 | * @fmt: printf() format string for the error, followed by args |
| 53 | * @return 0 if OK, other value on error |
| 54 | */ |
| 55 | int ut_check_console_line(struct unit_test_state *uts, const char *fmt, ...) |
| 56 | __attribute__ ((format (__printf__, 2, 3))); |
| 57 | |
| 58 | /** |
| 59 | * ut_check_console_end() - Check there is no more console output |
| 60 | * |
| 61 | * After the function returns, uts->actual_str holds the actual string read |
| 62 | * from the console |
| 63 | * |
| 64 | * @uts: Test state |
| 65 | * @return 0 if OK (console has no output), other value on error |
| 66 | */ |
| 67 | int ut_check_console_end(struct unit_test_state *uts); |
| 68 | |
| 69 | /** |
| 70 | * ut_check_console_dump() - Check that next lines have a print_buffer() dump |
| 71 | * |
| 72 | * This only supports a byte dump. |
| 73 | * |
| 74 | * @total_bytes: Size of the expected dump in bytes` |
| 75 | * @return 0 if OK (looks like a dump and the length matches), other value on |
| 76 | * error |
| 77 | */ |
| 78 | int ut_check_console_dump(struct unit_test_state *uts, int total_bytes); |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 79 | |
| 80 | /* Assert that a condition is non-zero */ |
| 81 | #define ut_assert(cond) \ |
| 82 | if (!(cond)) { \ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 83 | ut_fail(uts, __FILE__, __LINE__, __func__, #cond); \ |
Joe Hershberger | 436cfc7 | 2015-05-20 14:27:34 -0500 | [diff] [blame] | 84 | return CMD_RET_FAILURE; \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | /* Assert that a condition is non-zero, with printf() string */ |
| 88 | #define ut_assertf(cond, fmt, args...) \ |
| 89 | if (!(cond)) { \ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 90 | ut_failf(uts, __FILE__, __LINE__, __func__, #cond, \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 91 | fmt, ##args); \ |
Joe Hershberger | 436cfc7 | 2015-05-20 14:27:34 -0500 | [diff] [blame] | 92 | return CMD_RET_FAILURE; \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /* Assert that two int expressions are equal */ |
| 96 | #define ut_asserteq(expr1, expr2) { \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 97 | unsigned int _val1 = (expr1), _val2 = (expr2); \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 98 | \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 99 | if (_val1 != _val2) { \ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 100 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 101 | #expr1 " == " #expr2, \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 102 | "Expected %#x (%d), got %#x (%d)", \ |
| 103 | _val1, _val1, _val2, _val2); \ |
Joe Hershberger | 436cfc7 | 2015-05-20 14:27:34 -0500 | [diff] [blame] | 104 | return CMD_RET_FAILURE; \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 105 | } \ |
| 106 | } |
| 107 | |
Dario Binacchi | 421e81e | 2020-03-29 18:04:40 +0200 | [diff] [blame] | 108 | /* Assert that two 64 int expressions are equal */ |
| 109 | #define ut_asserteq_64(expr1, expr2) { \ |
| 110 | u64 _val1 = (expr1), _val2 = (expr2); \ |
| 111 | \ |
| 112 | if (_val1 != _val2) { \ |
| 113 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 114 | #expr1 " == " #expr2, \ |
| 115 | "Expected %#llx (%lld), got %#llx (%lld)", \ |
| 116 | (unsigned long long)_val1, \ |
| 117 | (unsigned long long)_val1, \ |
| 118 | (unsigned long long)_val2, \ |
| 119 | (unsigned long long)_val2); \ |
| 120 | return CMD_RET_FAILURE; \ |
| 121 | } \ |
| 122 | } |
| 123 | |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 124 | /* Assert that two string expressions are equal */ |
| 125 | #define ut_asserteq_str(expr1, expr2) { \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 126 | const char *_val1 = (expr1), *_val2 = (expr2); \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 127 | \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 128 | if (strcmp(_val1, _val2)) { \ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 129 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 130 | #expr1 " = " #expr2, \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 131 | "Expected \"%s\", got \"%s\"", _val1, _val2); \ |
Joe Hershberger | 436cfc7 | 2015-05-20 14:27:34 -0500 | [diff] [blame] | 132 | return CMD_RET_FAILURE; \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 133 | } \ |
| 134 | } |
| 135 | |
Mario Six | ffdf8ab | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 136 | /* Assert that two memory areas are equal */ |
| 137 | #define ut_asserteq_mem(expr1, expr2, len) { \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 138 | const u8 *_val1 = (u8 *)(expr1), *_val2 = (u8 *)(expr2); \ |
Mario Six | ffdf8ab | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 139 | const uint __len = len; \ |
| 140 | \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 141 | if (memcmp(_val1, _val2, __len)) { \ |
Mario Six | ffdf8ab | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 142 | char __buf1[64 + 1] = "\0"; \ |
| 143 | char __buf2[64 + 1] = "\0"; \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 144 | bin2hex(__buf1, _val1, min(__len, (uint)32)); \ |
| 145 | bin2hex(__buf2, _val2, min(__len, (uint)32)); \ |
Mario Six | ffdf8ab | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 146 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 147 | #expr1 " = " #expr2, \ |
| 148 | "Expected \"%s\", got \"%s\"", \ |
| 149 | __buf1, __buf2); \ |
| 150 | return CMD_RET_FAILURE; \ |
| 151 | } \ |
| 152 | } |
| 153 | |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 154 | /* Assert that two pointers are equal */ |
| 155 | #define ut_asserteq_ptr(expr1, expr2) { \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 156 | const void *_val1 = (expr1), *_val2 = (expr2); \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 157 | \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 158 | if (_val1 != _val2) { \ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 159 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 160 | #expr1 " = " #expr2, \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 161 | "Expected %p, got %p", _val1, _val2); \ |
Joe Hershberger | 436cfc7 | 2015-05-20 14:27:34 -0500 | [diff] [blame] | 162 | return CMD_RET_FAILURE; \ |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 163 | } \ |
| 164 | } |
| 165 | |
Ramon Fried | becc3e0 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 166 | /* Assert that a pointer is NULL */ |
| 167 | #define ut_assertnull(expr) { \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 168 | const void *_val = (expr); \ |
Ramon Fried | becc3e0 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 169 | \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 170 | if (_val) { \ |
Ramon Fried | becc3e0 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 171 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 172 | #expr " != NULL", \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 173 | "Expected NULL, got %p", _val); \ |
Ramon Fried | becc3e0 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 174 | return CMD_RET_FAILURE; \ |
| 175 | } \ |
| 176 | } |
| 177 | |
Simon Glass | 7df766e | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 178 | /* Assert that a pointer is not NULL */ |
| 179 | #define ut_assertnonnull(expr) { \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 180 | const void *_val = (expr); \ |
Simon Glass | 7df766e | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 181 | \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 182 | if (!_val) { \ |
Joe Hershberger | 3a77be5 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 183 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | 7df766e | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 184 | #expr " = NULL", \ |
| 185 | "Expected non-null, got NULL"); \ |
Joe Hershberger | 436cfc7 | 2015-05-20 14:27:34 -0500 | [diff] [blame] | 186 | return CMD_RET_FAILURE; \ |
Simon Glass | 7df766e | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 187 | } \ |
| 188 | } |
| 189 | |
Simon Glass | 7e1cebf | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 190 | /* Assert that a pointer is not an error pointer */ |
Simon Glass | d21afd5 | 2017-05-18 20:10:00 -0600 | [diff] [blame] | 191 | #define ut_assertok_ptr(expr) { \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 192 | const void *_val = (expr); \ |
Simon Glass | 7e1cebf | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 193 | \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 194 | if (IS_ERR(_val)) { \ |
Simon Glass | 7e1cebf | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 195 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 196 | #expr " = NULL", \ |
| 197 | "Expected pointer, got error %ld", \ |
Simon Glass | 43c336b | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 198 | PTR_ERR(_val)); \ |
Simon Glass | 7e1cebf | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 199 | return CMD_RET_FAILURE; \ |
| 200 | } \ |
| 201 | } |
| 202 | |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 203 | /* Assert that an operation succeeds (returns 0) */ |
| 204 | #define ut_assertok(cond) ut_asserteq(0, cond) |
| 205 | |
Simon Glass | d856e91 | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 206 | /* Assert that the next console output line matches */ |
| 207 | #define ut_assert_nextline(fmt, args...) \ |
| 208 | if (ut_check_console_line(uts, fmt, ##args)) { \ |
| 209 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 210 | "console", "\nExpected '%s',\n got '%s'", \ |
| 211 | uts->expect_str, uts->actual_str); \ |
| 212 | return CMD_RET_FAILURE; \ |
| 213 | } \ |
| 214 | |
| 215 | /* Assert that there is no more console output */ |
| 216 | #define ut_assert_console_end() \ |
| 217 | if (ut_check_console_end(uts)) { \ |
| 218 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 219 | "console", "Expected no more output, got '%s'",\ |
| 220 | uts->actual_str); \ |
| 221 | return CMD_RET_FAILURE; \ |
| 222 | } \ |
| 223 | |
| 224 | /* Assert that the next lines are print_buffer() dump at an address */ |
| 225 | #define ut_assert_nextlines_are_dump(total_bytes) \ |
| 226 | if (ut_check_console_dump(uts, total_bytes)) { \ |
| 227 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 228 | "console", \ |
| 229 | "Expected dump of length %x bytes, got '%s'", \ |
| 230 | total_bytes, uts->actual_str); \ |
| 231 | return CMD_RET_FAILURE; \ |
| 232 | } \ |
| 233 | |
Simon Glass | 19920d7 | 2019-12-29 21:19:23 -0700 | [diff] [blame] | 234 | /** |
| 235 | * ut_check_free() - Return the number of bytes free in the malloc() pool |
| 236 | * |
| 237 | * @return bytes free |
| 238 | */ |
| 239 | ulong ut_check_free(void); |
| 240 | |
| 241 | /** |
| 242 | * ut_check_delta() - Return the number of bytes allocated/freed |
| 243 | * |
| 244 | * @last: Last value from ut_check_free |
| 245 | * @return free memory delta from @last; positive means more memory has been |
| 246 | * allocated, negative means less has been allocated (i.e. some is freed) |
| 247 | */ |
| 248 | long ut_check_delta(ulong last); |
| 249 | |
Simon Glass | b2c1cac | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 250 | #endif |