blob: b05d719ed0d9dc3491717a92edac1efe9a9909b0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassb2c1cac2014-02-26 15:59:21 -07002/*
Joe Hershberger3a77be52015-05-20 14:27:27 -05003 * Simple unit test library
Simon Glassb2c1cac2014-02-26 15:59:21 -07004 *
5 * Copyright (c) 2013 Google, Inc
Simon Glassb2c1cac2014-02-26 15:59:21 -07006 */
7
Joe Hershberger3a77be52015-05-20 14:27:27 -05008#ifndef __TEST_UT_H
9#define __TEST_UT_H
Simon Glassb2c1cac2014-02-26 15:59:21 -070010
Simon Glassc5e7f662020-04-08 16:57:40 -060011#include <hexdump.h>
Simon Glass7e1cebf2015-07-06 12:54:37 -060012#include <linux/err.h>
13
Joe Hershberger3a77be52015-05-20 14:27:27 -050014struct unit_test_state;
Simon Glassb2c1cac2014-02-26 15:59:21 -070015
16/**
17 * ut_fail() - Record failure of a unit test
18 *
Joe Hershberger3a77be52015-05-20 14:27:27 -050019 * @uts: Test state
Vagrant Cascadianedfdb992016-04-30 19:18:00 -070020 * @fname: Filename where the error occurred
21 * @line: Line number where the error occurred
22 * @func: Function name where the error occurred
Simon Glassb2c1cac2014-02-26 15:59:21 -070023 * @cond: The condition that failed
24 */
Joe Hershberger3a77be52015-05-20 14:27:27 -050025void ut_fail(struct unit_test_state *uts, const char *fname, int line,
Simon Glassb2c1cac2014-02-26 15:59:21 -070026 const char *func, const char *cond);
27
28/**
29 * ut_failf() - Record failure of a unit test
30 *
Joe Hershberger3a77be52015-05-20 14:27:27 -050031 * @uts: Test state
Vagrant Cascadianedfdb992016-04-30 19:18:00 -070032 * @fname: Filename where the error occurred
33 * @line: Line number where the error occurred
34 * @func: Function name where the error occurred
Simon Glassb2c1cac2014-02-26 15:59:21 -070035 * @cond: The condition that failed
36 * @fmt: printf() format string for the error, followed by args
37 */
Joe Hershberger3a77be52015-05-20 14:27:27 -050038void ut_failf(struct unit_test_state *uts, const char *fname, int line,
Simon Glassb2c1cac2014-02-26 15:59:21 -070039 const char *func, const char *cond, const char *fmt, ...)
40 __attribute__ ((format (__printf__, 6, 7)));
41
Simon Glassd856e912020-01-27 08:49:56 -070042/**
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 */
55int 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 */
67int 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 */
78int ut_check_console_dump(struct unit_test_state *uts, int total_bytes);
Simon Glassb2c1cac2014-02-26 15:59:21 -070079
80/* Assert that a condition is non-zero */
81#define ut_assert(cond) \
82 if (!(cond)) { \
Joe Hershberger3a77be52015-05-20 14:27:27 -050083 ut_fail(uts, __FILE__, __LINE__, __func__, #cond); \
Joe Hershberger436cfc72015-05-20 14:27:34 -050084 return CMD_RET_FAILURE; \
Simon Glassb2c1cac2014-02-26 15:59:21 -070085 }
86
87/* Assert that a condition is non-zero, with printf() string */
88#define ut_assertf(cond, fmt, args...) \
89 if (!(cond)) { \
Joe Hershberger3a77be52015-05-20 14:27:27 -050090 ut_failf(uts, __FILE__, __LINE__, __func__, #cond, \
Simon Glassb2c1cac2014-02-26 15:59:21 -070091 fmt, ##args); \
Joe Hershberger436cfc72015-05-20 14:27:34 -050092 return CMD_RET_FAILURE; \
Simon Glassb2c1cac2014-02-26 15:59:21 -070093 }
94
95/* Assert that two int expressions are equal */
96#define ut_asserteq(expr1, expr2) { \
Simon Glass43c336b2020-01-27 08:49:41 -070097 unsigned int _val1 = (expr1), _val2 = (expr2); \
Simon Glassb2c1cac2014-02-26 15:59:21 -070098 \
Simon Glass43c336b2020-01-27 08:49:41 -070099 if (_val1 != _val2) { \
Joe Hershberger3a77be52015-05-20 14:27:27 -0500100 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700101 #expr1 " == " #expr2, \
Simon Glass43c336b2020-01-27 08:49:41 -0700102 "Expected %#x (%d), got %#x (%d)", \
103 _val1, _val1, _val2, _val2); \
Joe Hershberger436cfc72015-05-20 14:27:34 -0500104 return CMD_RET_FAILURE; \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700105 } \
106}
107
Dario Binacchi421e81e2020-03-29 18:04:40 +0200108/* 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 Glassb2c1cac2014-02-26 15:59:21 -0700124/* Assert that two string expressions are equal */
125#define ut_asserteq_str(expr1, expr2) { \
Simon Glass43c336b2020-01-27 08:49:41 -0700126 const char *_val1 = (expr1), *_val2 = (expr2); \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700127 \
Simon Glass43c336b2020-01-27 08:49:41 -0700128 if (strcmp(_val1, _val2)) { \
Joe Hershberger3a77be52015-05-20 14:27:27 -0500129 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700130 #expr1 " = " #expr2, \
Simon Glass43c336b2020-01-27 08:49:41 -0700131 "Expected \"%s\", got \"%s\"", _val1, _val2); \
Joe Hershberger436cfc72015-05-20 14:27:34 -0500132 return CMD_RET_FAILURE; \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700133 } \
134}
135
Mario Sixffdf8ab2018-09-27 09:19:32 +0200136/* Assert that two memory areas are equal */
137#define ut_asserteq_mem(expr1, expr2, len) { \
Simon Glass43c336b2020-01-27 08:49:41 -0700138 const u8 *_val1 = (u8 *)(expr1), *_val2 = (u8 *)(expr2); \
Mario Sixffdf8ab2018-09-27 09:19:32 +0200139 const uint __len = len; \
140 \
Simon Glass43c336b2020-01-27 08:49:41 -0700141 if (memcmp(_val1, _val2, __len)) { \
Mario Sixffdf8ab2018-09-27 09:19:32 +0200142 char __buf1[64 + 1] = "\0"; \
143 char __buf2[64 + 1] = "\0"; \
Simon Glass43c336b2020-01-27 08:49:41 -0700144 bin2hex(__buf1, _val1, min(__len, (uint)32)); \
145 bin2hex(__buf2, _val2, min(__len, (uint)32)); \
Mario Sixffdf8ab2018-09-27 09:19:32 +0200146 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 Glassb2c1cac2014-02-26 15:59:21 -0700154/* Assert that two pointers are equal */
155#define ut_asserteq_ptr(expr1, expr2) { \
Simon Glass43c336b2020-01-27 08:49:41 -0700156 const void *_val1 = (expr1), *_val2 = (expr2); \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700157 \
Simon Glass43c336b2020-01-27 08:49:41 -0700158 if (_val1 != _val2) { \
Joe Hershberger3a77be52015-05-20 14:27:27 -0500159 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700160 #expr1 " = " #expr2, \
Simon Glass43c336b2020-01-27 08:49:41 -0700161 "Expected %p, got %p", _val1, _val2); \
Joe Hershberger436cfc72015-05-20 14:27:34 -0500162 return CMD_RET_FAILURE; \
Simon Glassb2c1cac2014-02-26 15:59:21 -0700163 } \
164}
165
Ramon Friedbecc3e02018-06-21 17:47:16 +0300166/* Assert that a pointer is NULL */
167#define ut_assertnull(expr) { \
Simon Glass43c336b2020-01-27 08:49:41 -0700168 const void *_val = (expr); \
Ramon Friedbecc3e02018-06-21 17:47:16 +0300169 \
Simon Glass43c336b2020-01-27 08:49:41 -0700170 if (_val) { \
Ramon Friedbecc3e02018-06-21 17:47:16 +0300171 ut_failf(uts, __FILE__, __LINE__, __func__, \
172 #expr " != NULL", \
Simon Glass43c336b2020-01-27 08:49:41 -0700173 "Expected NULL, got %p", _val); \
Ramon Friedbecc3e02018-06-21 17:47:16 +0300174 return CMD_RET_FAILURE; \
175 } \
176}
177
Simon Glass7df766e2014-12-10 08:55:55 -0700178/* Assert that a pointer is not NULL */
179#define ut_assertnonnull(expr) { \
Simon Glass43c336b2020-01-27 08:49:41 -0700180 const void *_val = (expr); \
Simon Glass7df766e2014-12-10 08:55:55 -0700181 \
Simon Glass43c336b2020-01-27 08:49:41 -0700182 if (!_val) { \
Joe Hershberger3a77be52015-05-20 14:27:27 -0500183 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glass7df766e2014-12-10 08:55:55 -0700184 #expr " = NULL", \
185 "Expected non-null, got NULL"); \
Joe Hershberger436cfc72015-05-20 14:27:34 -0500186 return CMD_RET_FAILURE; \
Simon Glass7df766e2014-12-10 08:55:55 -0700187 } \
188}
189
Simon Glass7e1cebf2015-07-06 12:54:37 -0600190/* Assert that a pointer is not an error pointer */
Simon Glassd21afd52017-05-18 20:10:00 -0600191#define ut_assertok_ptr(expr) { \
Simon Glass43c336b2020-01-27 08:49:41 -0700192 const void *_val = (expr); \
Simon Glass7e1cebf2015-07-06 12:54:37 -0600193 \
Simon Glass43c336b2020-01-27 08:49:41 -0700194 if (IS_ERR(_val)) { \
Simon Glass7e1cebf2015-07-06 12:54:37 -0600195 ut_failf(uts, __FILE__, __LINE__, __func__, \
196 #expr " = NULL", \
197 "Expected pointer, got error %ld", \
Simon Glass43c336b2020-01-27 08:49:41 -0700198 PTR_ERR(_val)); \
Simon Glass7e1cebf2015-07-06 12:54:37 -0600199 return CMD_RET_FAILURE; \
200 } \
201}
202
Simon Glassb2c1cac2014-02-26 15:59:21 -0700203/* Assert that an operation succeeds (returns 0) */
204#define ut_assertok(cond) ut_asserteq(0, cond)
205
Simon Glassd856e912020-01-27 08:49:56 -0700206/* 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 Glass19920d72019-12-29 21:19:23 -0700234/**
235 * ut_check_free() - Return the number of bytes free in the malloc() pool
236 *
237 * @return bytes free
238 */
239ulong 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 */
248long ut_check_delta(ulong last);
249
Simon Glassb2c1cac2014-02-26 15:59:21 -0700250#endif