Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 2 | /* |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 3 | * Simple unit test library |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2013 Google, Inc |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 8 | #ifndef __TEST_UT_H |
| 9 | #define __TEST_UT_H |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 10 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 11 | #include <command.h> |
Simon Glass | 1f4431e | 2020-04-08 16:57:40 -0600 | [diff] [blame] | 12 | #include <hexdump.h> |
Simon Glass | 85aeda4 | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 13 | #include <linux/err.h> |
Simon Glass | 0e1fad4 | 2020-07-19 10:15:37 -0600 | [diff] [blame] | 14 | #include <test/test.h> |
Simon Glass | 85aeda4 | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 15 | |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 16 | struct unit_test_state; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 17 | |
| 18 | /** |
| 19 | * ut_fail() - Record failure of a unit test |
| 20 | * |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 21 | * @uts: Test state |
Vagrant Cascadian | eae4b2b | 2016-04-30 19:18:00 -0700 | [diff] [blame] | 22 | * @fname: Filename where the error occurred |
| 23 | * @line: Line number where the error occurred |
| 24 | * @func: Function name where the error occurred |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 25 | * @cond: The condition that failed |
| 26 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 27 | void ut_fail(struct unit_test_state *uts, const char *fname, int line, |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 28 | const char *func, const char *cond); |
| 29 | |
| 30 | /** |
| 31 | * ut_failf() - Record failure of a unit test |
| 32 | * |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 33 | * @uts: Test state |
Vagrant Cascadian | eae4b2b | 2016-04-30 19:18:00 -0700 | [diff] [blame] | 34 | * @fname: Filename where the error occurred |
| 35 | * @line: Line number where the error occurred |
| 36 | * @func: Function name where the error occurred |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 37 | * @cond: The condition that failed |
| 38 | * @fmt: printf() format string for the error, followed by args |
| 39 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 40 | void ut_failf(struct unit_test_state *uts, const char *fname, int line, |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 41 | const char *func, const char *cond, const char *fmt, ...) |
| 42 | __attribute__ ((format (__printf__, 6, 7))); |
| 43 | |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 44 | /** |
| 45 | * ut_check_console_line() - Check the next console line against expectations |
| 46 | * |
| 47 | * This creates a string and then checks it against the next line of console |
| 48 | * output obtained with console_record_readline(). |
| 49 | * |
| 50 | * After the function returns, uts->expect_str holds the expected string and |
| 51 | * uts->actual_str holds the actual string read from the console. |
| 52 | * |
| 53 | * @uts: Test state |
| 54 | * @fmt: printf() format string for the error, followed by args |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 55 | * Return: 0 if OK, other value on error |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 56 | */ |
| 57 | int ut_check_console_line(struct unit_test_state *uts, const char *fmt, ...) |
| 58 | __attribute__ ((format (__printf__, 2, 3))); |
| 59 | |
| 60 | /** |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 61 | * ut_check_console_linen() - Check part of the next console line |
| 62 | * |
| 63 | * This creates a string and then checks it against the next line of console |
| 64 | * output obtained with console_record_readline(). Only the length of the |
| 65 | * string is checked |
| 66 | * |
| 67 | * After the function returns, uts->expect_str holds the expected string and |
| 68 | * uts->actual_str holds the actual string read from the console. |
| 69 | * |
| 70 | * @uts: Test state |
| 71 | * @fmt: printf() format string for the error, followed by args |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 72 | * Return: 0 if OK, other value on error |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 73 | */ |
| 74 | int ut_check_console_linen(struct unit_test_state *uts, const char *fmt, ...) |
| 75 | __attribute__ ((format (__printf__, 2, 3))); |
| 76 | |
| 77 | /** |
| 78 | * ut_check_skipline() - Check that the next console line exists and skip it |
| 79 | * |
| 80 | * @uts: Test state |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 81 | * Return: 0 if OK, other value on error |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 82 | */ |
| 83 | int ut_check_skipline(struct unit_test_state *uts); |
| 84 | |
| 85 | /** |
Simon Glass | 2e09008 | 2021-08-18 21:40:33 -0600 | [diff] [blame] | 86 | * ut_check_skip_to_line() - skip output until a line is found |
| 87 | * |
| 88 | * This creates a string and then checks it against the following lines of |
| 89 | * console output obtained with console_record_readline() until it is found. |
| 90 | * |
| 91 | * After the function returns, uts->expect_str holds the expected string and |
| 92 | * uts->actual_str holds the actual string read from the console. |
| 93 | * |
| 94 | * @uts: Test state |
| 95 | * @fmt: printf() format string to look for, followed by args |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 96 | * Return: 0 if OK, -ENOENT if not found, other value on error |
Simon Glass | 2e09008 | 2021-08-18 21:40:33 -0600 | [diff] [blame] | 97 | */ |
| 98 | int ut_check_skip_to_line(struct unit_test_state *uts, const char *fmt, ...); |
| 99 | |
| 100 | /** |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 101 | * ut_check_console_end() - Check there is no more console output |
| 102 | * |
| 103 | * After the function returns, uts->actual_str holds the actual string read |
| 104 | * from the console |
| 105 | * |
| 106 | * @uts: Test state |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 107 | * Return: 0 if OK (console has no output), other value on error |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 108 | */ |
| 109 | int ut_check_console_end(struct unit_test_state *uts); |
| 110 | |
| 111 | /** |
| 112 | * ut_check_console_dump() - Check that next lines have a print_buffer() dump |
| 113 | * |
| 114 | * This only supports a byte dump. |
| 115 | * |
| 116 | * @total_bytes: Size of the expected dump in bytes` |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 117 | * Return: 0 if OK (looks like a dump and the length matches), other value on |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 118 | * error |
| 119 | */ |
| 120 | int ut_check_console_dump(struct unit_test_state *uts, int total_bytes); |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 121 | |
Simon Glass | 5e96925 | 2022-09-06 20:27:27 -0600 | [diff] [blame] | 122 | /* Report a failure, with printf() string */ |
| 123 | #define ut_reportf(fmt, args...) \ |
| 124 | ut_failf(uts, __FILE__, __LINE__, __func__, "report", \ |
| 125 | fmt, ##args) |
| 126 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 127 | /* Assert that a condition is non-zero */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 128 | #define ut_assert(cond) ({ \ |
| 129 | int __ret = 0; \ |
| 130 | \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 131 | if (!(cond)) { \ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 132 | ut_fail(uts, __FILE__, __LINE__, __func__, #cond); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 133 | return CMD_RET_FAILURE; \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 134 | } \ |
| 135 | __ret; \ |
| 136 | }) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 137 | |
| 138 | /* Assert that a condition is non-zero, with printf() string */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 139 | #define ut_assertf(cond, fmt, args...) ({ \ |
| 140 | int __ret = 0; \ |
| 141 | \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 142 | if (!(cond)) { \ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 143 | ut_failf(uts, __FILE__, __LINE__, __func__, #cond, \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 144 | fmt, ##args); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 145 | return CMD_RET_FAILURE; \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 146 | } \ |
| 147 | __ret; \ |
| 148 | }) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 149 | |
| 150 | /* Assert that two int expressions are equal */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 151 | #define ut_asserteq(expr1, expr2) ({ \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 152 | unsigned int _val1 = (expr1), _val2 = (expr2); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 153 | int __ret = 0; \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 154 | \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 155 | if (_val1 != _val2) { \ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 156 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 157 | #expr1 " == " #expr2, \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 158 | "Expected %#x (%d), got %#x (%d)", \ |
| 159 | _val1, _val1, _val2, _val2); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 160 | return CMD_RET_FAILURE; \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 161 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 162 | __ret; \ |
| 163 | }) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 164 | |
Dario Binacchi | 70573c6 | 2020-03-29 18:04:40 +0200 | [diff] [blame] | 165 | /* Assert that two 64 int expressions are equal */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 166 | #define ut_asserteq_64(expr1, expr2) ({ \ |
Dario Binacchi | 70573c6 | 2020-03-29 18:04:40 +0200 | [diff] [blame] | 167 | u64 _val1 = (expr1), _val2 = (expr2); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 168 | int __ret = 0; \ |
Dario Binacchi | 70573c6 | 2020-03-29 18:04:40 +0200 | [diff] [blame] | 169 | \ |
| 170 | if (_val1 != _val2) { \ |
| 171 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 172 | #expr1 " == " #expr2, \ |
| 173 | "Expected %#llx (%lld), got %#llx (%lld)", \ |
| 174 | (unsigned long long)_val1, \ |
| 175 | (unsigned long long)_val1, \ |
| 176 | (unsigned long long)_val2, \ |
| 177 | (unsigned long long)_val2); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 178 | return CMD_RET_FAILURE; \ |
Dario Binacchi | 70573c6 | 2020-03-29 18:04:40 +0200 | [diff] [blame] | 179 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 180 | __ret; \ |
| 181 | }) |
Dario Binacchi | 70573c6 | 2020-03-29 18:04:40 +0200 | [diff] [blame] | 182 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 183 | /* Assert that two string expressions are equal */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 184 | #define ut_asserteq_str(expr1, expr2) ({ \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 185 | const char *_val1 = (expr1), *_val2 = (expr2); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 186 | int __ret = 0; \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 187 | \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 188 | if (strcmp(_val1, _val2)) { \ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 189 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 190 | #expr1 " = " #expr2, \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 191 | "Expected \"%s\", got \"%s\"", _val1, _val2); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 192 | return CMD_RET_FAILURE; \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 193 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 194 | __ret; \ |
| 195 | }) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 196 | |
Simon Glass | 7aed90d | 2020-07-07 13:11:54 -0600 | [diff] [blame] | 197 | /* |
| 198 | * Assert that two string expressions are equal, up to length of the |
| 199 | * first |
| 200 | */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 201 | #define ut_asserteq_strn(expr1, expr2) ({ \ |
Simon Glass | 7aed90d | 2020-07-07 13:11:54 -0600 | [diff] [blame] | 202 | const char *_val1 = (expr1), *_val2 = (expr2); \ |
| 203 | int _len = strlen(_val1); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 204 | int __ret = 0; \ |
Simon Glass | 7aed90d | 2020-07-07 13:11:54 -0600 | [diff] [blame] | 205 | \ |
| 206 | if (memcmp(_val1, _val2, _len)) { \ |
| 207 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 208 | #expr1 " = " #expr2, \ |
| 209 | "Expected \"%.*s\", got \"%.*s\"", \ |
| 210 | _len, _val1, _len, _val2); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 211 | return CMD_RET_FAILURE; \ |
Simon Glass | 7aed90d | 2020-07-07 13:11:54 -0600 | [diff] [blame] | 212 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 213 | __ret; \ |
| 214 | }) |
Simon Glass | 7aed90d | 2020-07-07 13:11:54 -0600 | [diff] [blame] | 215 | |
Mario Six | 41f67e3 | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 216 | /* Assert that two memory areas are equal */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 217 | #define ut_asserteq_mem(expr1, expr2, len) ({ \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 218 | const u8 *_val1 = (u8 *)(expr1), *_val2 = (u8 *)(expr2); \ |
Mario Six | 41f67e3 | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 219 | const uint __len = len; \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 220 | int __ret = 0; \ |
Mario Six | 41f67e3 | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 221 | \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 222 | if (memcmp(_val1, _val2, __len)) { \ |
Mario Six | 41f67e3 | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 223 | char __buf1[64 + 1] = "\0"; \ |
| 224 | char __buf2[64 + 1] = "\0"; \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 225 | bin2hex(__buf1, _val1, min(__len, (uint)32)); \ |
| 226 | bin2hex(__buf2, _val2, min(__len, (uint)32)); \ |
Mario Six | 41f67e3 | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 227 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 228 | #expr1 " = " #expr2, \ |
| 229 | "Expected \"%s\", got \"%s\"", \ |
| 230 | __buf1, __buf2); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 231 | return CMD_RET_FAILURE; \ |
Mario Six | 41f67e3 | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 232 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 233 | __ret; \ |
| 234 | }) |
Mario Six | 41f67e3 | 2018-09-27 09:19:32 +0200 | [diff] [blame] | 235 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 236 | /* Assert that two pointers are equal */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 237 | #define ut_asserteq_ptr(expr1, expr2) ({ \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 238 | const void *_val1 = (expr1), *_val2 = (expr2); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 239 | int __ret = 0; \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 240 | \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 241 | if (_val1 != _val2) { \ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 242 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 243 | #expr1 " = " #expr2, \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 244 | "Expected %p, got %p", _val1, _val2); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 245 | return CMD_RET_FAILURE; \ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 246 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 247 | __ret; \ |
| 248 | }) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 249 | |
Simon Glass | cdd4e30 | 2020-09-19 18:49:27 -0600 | [diff] [blame] | 250 | /* Assert that two addresses (converted from pointers) are equal */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 251 | #define ut_asserteq_addr(expr1, expr2) ({ \ |
Simon Glass | cdd4e30 | 2020-09-19 18:49:27 -0600 | [diff] [blame] | 252 | ulong _val1 = map_to_sysmem(expr1); \ |
| 253 | ulong _val2 = map_to_sysmem(expr2); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 254 | int __ret = 0; \ |
Simon Glass | cdd4e30 | 2020-09-19 18:49:27 -0600 | [diff] [blame] | 255 | \ |
| 256 | if (_val1 != _val2) { \ |
| 257 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 258 | #expr1 " = " #expr2, \ |
| 259 | "Expected %lx, got %lx", _val1, _val2); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 260 | return CMD_RET_FAILURE; \ |
Simon Glass | cdd4e30 | 2020-09-19 18:49:27 -0600 | [diff] [blame] | 261 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 262 | __ret; \ |
| 263 | }) |
Simon Glass | cdd4e30 | 2020-09-19 18:49:27 -0600 | [diff] [blame] | 264 | |
Ramon Fried | 8d54579 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 265 | /* Assert that a pointer is NULL */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 266 | #define ut_assertnull(expr) ({ \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 267 | const void *_val = (expr); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 268 | int __ret = 0; \ |
Ramon Fried | 8d54579 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 269 | \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 270 | if (_val) { \ |
Ramon Fried | 8d54579 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 271 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 272 | #expr " != NULL", \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 273 | "Expected NULL, got %p", _val); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 274 | return CMD_RET_FAILURE; \ |
Ramon Fried | 8d54579 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 275 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 276 | __ret; \ |
| 277 | }) |
Ramon Fried | 8d54579 | 2018-06-21 17:47:16 +0300 | [diff] [blame] | 278 | |
Simon Glass | ecc2ed5 | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 279 | /* Assert that a pointer is not NULL */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 280 | #define ut_assertnonnull(expr) ({ \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 281 | const void *_val = (expr); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 282 | int __ret = 0; \ |
Simon Glass | ecc2ed5 | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 283 | \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 284 | if (!_val) { \ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 285 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
Simon Glass | ecc2ed5 | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 286 | #expr " = NULL", \ |
| 287 | "Expected non-null, got NULL"); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 288 | return CMD_RET_FAILURE; \ |
Simon Glass | ecc2ed5 | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 289 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 290 | __ret; \ |
| 291 | }) |
Simon Glass | ecc2ed5 | 2014-12-10 08:55:55 -0700 | [diff] [blame] | 292 | |
Simon Glass | 85aeda4 | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 293 | /* Assert that a pointer is not an error pointer */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 294 | #define ut_assertok_ptr(expr) ({ \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 295 | const void *_val = (expr); \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 296 | int __ret = 0; \ |
Simon Glass | 85aeda4 | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 297 | \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 298 | if (IS_ERR(_val)) { \ |
Simon Glass | 85aeda4 | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 299 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 300 | #expr " = NULL", \ |
| 301 | "Expected pointer, got error %ld", \ |
Simon Glass | ba8444a | 2020-01-27 08:49:41 -0700 | [diff] [blame] | 302 | PTR_ERR(_val)); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 303 | return CMD_RET_FAILURE; \ |
Simon Glass | 85aeda4 | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 304 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 305 | __ret; \ |
| 306 | }) |
Simon Glass | 85aeda4 | 2015-07-06 12:54:37 -0600 | [diff] [blame] | 307 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 308 | /* Assert that an operation succeeds (returns 0) */ |
| 309 | #define ut_assertok(cond) ut_asserteq(0, cond) |
| 310 | |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 311 | /* Assert that the next console output line matches */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 312 | #define ut_assert_nextline(fmt, args...) ({ \ |
| 313 | int __ret = 0; \ |
| 314 | \ |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 315 | if (ut_check_console_line(uts, fmt, ##args)) { \ |
| 316 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 317 | "console", "\nExpected '%s',\n got '%s'", \ |
| 318 | uts->expect_str, uts->actual_str); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 319 | return CMD_RET_FAILURE; \ |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 320 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 321 | __ret; \ |
| 322 | }) |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 323 | |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 324 | /* Assert that the next console output line matches up to the length */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 325 | #define ut_assert_nextlinen(fmt, args...) ({ \ |
| 326 | int __ret = 0; \ |
| 327 | \ |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 328 | if (ut_check_console_linen(uts, fmt, ##args)) { \ |
| 329 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 330 | "console", "\nExpected '%s',\n got '%s'", \ |
| 331 | uts->expect_str, uts->actual_str); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 332 | return CMD_RET_FAILURE; \ |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 333 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 334 | __ret; \ |
| 335 | }) |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 336 | |
| 337 | /* Assert that there is a 'next' console output line, and skip it */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 338 | #define ut_assert_skipline() ({ \ |
| 339 | int __ret = 0; \ |
| 340 | \ |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 341 | if (ut_check_skipline(uts)) { \ |
| 342 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 343 | "console", "\nExpected a line, got end"); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 344 | return CMD_RET_FAILURE; \ |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 345 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 346 | __ret; \ |
| 347 | }) |
Simon Glass | 33d7edf | 2020-07-28 19:41:10 -0600 | [diff] [blame] | 348 | |
Simon Glass | 2e09008 | 2021-08-18 21:40:33 -0600 | [diff] [blame] | 349 | /* Assert that a following console output line matches */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 350 | #define ut_assert_skip_to_line(fmt, args...) ({ \ |
| 351 | int __ret = 0; \ |
| 352 | \ |
Simon Glass | 2e09008 | 2021-08-18 21:40:33 -0600 | [diff] [blame] | 353 | if (ut_check_skip_to_line(uts, fmt, ##args)) { \ |
| 354 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 355 | "console", "\nExpected '%s',\n got to '%s'", \ |
| 356 | uts->expect_str, uts->actual_str); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 357 | return CMD_RET_FAILURE; \ |
Simon Glass | 2e09008 | 2021-08-18 21:40:33 -0600 | [diff] [blame] | 358 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 359 | __ret; \ |
| 360 | }) |
Simon Glass | 2e09008 | 2021-08-18 21:40:33 -0600 | [diff] [blame] | 361 | |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 362 | /* Assert that there is no more console output */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 363 | #define ut_assert_console_end() ({ \ |
| 364 | int __ret = 0; \ |
| 365 | \ |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 366 | if (ut_check_console_end(uts)) { \ |
| 367 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 368 | "console", "Expected no more output, got '%s'",\ |
| 369 | uts->actual_str); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 370 | return CMD_RET_FAILURE; \ |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 371 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 372 | __ret; \ |
| 373 | }) |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 374 | |
| 375 | /* Assert that the next lines are print_buffer() dump at an address */ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 376 | #define ut_assert_nextlines_are_dump(total_bytes) ({ \ |
| 377 | int __ret = 0; \ |
| 378 | \ |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 379 | if (ut_check_console_dump(uts, total_bytes)) { \ |
| 380 | ut_failf(uts, __FILE__, __LINE__, __func__, \ |
| 381 | "console", \ |
| 382 | "Expected dump of length %x bytes, got '%s'", \ |
| 383 | total_bytes, uts->actual_str); \ |
Simon Glass | 18030d9 | 2023-06-01 10:22:29 -0600 | [diff] [blame] | 384 | return CMD_RET_FAILURE; \ |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 385 | } \ |
Marek Vasut | fa847bb | 2023-03-10 04:33:13 +0100 | [diff] [blame] | 386 | __ret; \ |
| 387 | }) |
Simon Glass | 400175b | 2020-01-27 08:49:56 -0700 | [diff] [blame] | 388 | |
Marek Vasut | 8f4c999 | 2023-03-02 04:08:24 +0100 | [diff] [blame] | 389 | /* Assert that the next console output line is empty */ |
| 390 | #define ut_assert_nextline_empty() \ |
| 391 | ut_assert_nextline("%s", "") |
| 392 | |
Simon Glass | 8109863 | 2019-12-29 21:19:23 -0700 | [diff] [blame] | 393 | /** |
| 394 | * ut_check_free() - Return the number of bytes free in the malloc() pool |
| 395 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 396 | * Return: bytes free |
Simon Glass | 8109863 | 2019-12-29 21:19:23 -0700 | [diff] [blame] | 397 | */ |
| 398 | ulong ut_check_free(void); |
| 399 | |
| 400 | /** |
| 401 | * ut_check_delta() - Return the number of bytes allocated/freed |
| 402 | * |
| 403 | * @last: Last value from ut_check_free |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 404 | * Return: free memory delta from @last; positive means more memory has been |
Simon Glass | 8109863 | 2019-12-29 21:19:23 -0700 | [diff] [blame] | 405 | * allocated, negative means less has been allocated (i.e. some is freed) |
| 406 | */ |
| 407 | long ut_check_delta(ulong last); |
| 408 | |
Simon Glass | ef7e264 | 2020-11-08 21:08:43 -0700 | [diff] [blame] | 409 | /** |
| 410 | * ut_silence_console() - Silence the console if requested by the user |
| 411 | * |
| 412 | * This stops test output from appear on the console. It is the default on |
| 413 | * sandbox, unless the -v flag is given. For other boards, this does nothing. |
| 414 | * |
| 415 | * @uts: Test state (in case in future we want to keep state here) |
| 416 | */ |
| 417 | void ut_silence_console(struct unit_test_state *uts); |
| 418 | |
| 419 | /** |
| 420 | * ut_unsilence_console() - Unsilence the console after a test |
| 421 | * |
| 422 | * This restarts console output again and turns off console recording. This |
| 423 | * happens on all boards, including sandbox. |
| 424 | */ |
| 425 | void ut_unsilence_console(struct unit_test_state *uts); |
| 426 | |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 427 | /** |
Simon Glass | 47ec3ed | 2021-03-07 17:34:55 -0700 | [diff] [blame] | 428 | * ut_set_skip_delays() - Sets whether delays should be skipped |
| 429 | * |
| 430 | * Normally functions like mdelay() cause U-Boot to wait for a while. This |
| 431 | * allows all such delays to be skipped on sandbox, to speed up tests |
| 432 | * |
| 433 | * @uts: Test state (in case in future we want to keep state here) |
| 434 | * @skip_delays: true to skip delays, false to process them normally |
| 435 | */ |
| 436 | void ut_set_skip_delays(struct unit_test_state *uts, bool skip_delays); |
| 437 | |
| 438 | /** |
Simon Glass | fe80686 | 2021-03-07 17:35:04 -0700 | [diff] [blame] | 439 | * test_get_state() - Get the active test state |
| 440 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 441 | * Return: the currently active test state, or NULL if none |
Simon Glass | fe80686 | 2021-03-07 17:35:04 -0700 | [diff] [blame] | 442 | */ |
| 443 | struct unit_test_state *test_get_state(void); |
| 444 | |
| 445 | /** |
| 446 | * test_set_state() - Set the active test state |
| 447 | * |
| 448 | * @uts: Test state to use as currently active test state, or NULL if none |
| 449 | */ |
| 450 | void test_set_state(struct unit_test_state *uts); |
| 451 | |
| 452 | /** |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 453 | * ut_run_tests() - Run a set of tests |
| 454 | * |
| 455 | * This runs the test, handling any preparation and clean-up needed. It prints |
| 456 | * the name of each test before running it. |
| 457 | * |
| 458 | * @category: Category of these tests. This is a string printed at the start to |
| 459 | * announce the the number of tests |
| 460 | * @prefix: String prefix for the tests. Any tests that have this prefix will be |
| 461 | * printed without the prefix, so that it is easier to see the unique part |
| 462 | * of the test name. If NULL, no prefix processing is done |
| 463 | * @tests: List of tests to run |
| 464 | * @count: Number of tests to run |
| 465 | * @select_name: Name of a single test to run (from the list provided). If NULL |
| 466 | * then all tests are run |
Simon Glass | ea94d05 | 2022-08-01 07:58:45 -0600 | [diff] [blame] | 467 | * @runs_per_test: Number of times to run each test (typically 1) |
Simon Glass | cbd71fa | 2022-10-20 18:22:50 -0600 | [diff] [blame] | 468 | * @force_run: Run tests that are marked as manual-only (UT_TESTF_MANUAL) |
Simon Glass | d1b4659 | 2022-10-29 19:47:13 -0600 | [diff] [blame] | 469 | * @test_insert: String describing a test to run after n other tests run, in the |
| 470 | * format n:name where n is the number of tests to run before this one and |
| 471 | * name is the name of the test to run. This is used to find which test causes |
| 472 | * another test to fail. If the one test fails, testing stops immediately. |
| 473 | * Pass NULL to disable this |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 474 | * Return: 0 if all tests passed, -1 if any failed |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 475 | */ |
| 476 | int ut_run_list(const char *name, const char *prefix, struct unit_test *tests, |
Simon Glass | cbd71fa | 2022-10-20 18:22:50 -0600 | [diff] [blame] | 477 | int count, const char *select_name, int runs_per_test, |
Simon Glass | d1b4659 | 2022-10-29 19:47:13 -0600 | [diff] [blame] | 478 | bool force_run, const char *test_insert); |
Simon Glass | 1c72175 | 2021-03-07 17:34:47 -0700 | [diff] [blame] | 479 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 480 | #endif |