blob: 7ddd6e8872414e768b1449e58e09d33a2a774e04 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass2e7d35d2014-02-26 15:59:21 -07002/*
Joe Hershbergere721b882015-05-20 14:27:27 -05003 * Simple unit test library
Simon Glass2e7d35d2014-02-26 15:59:21 -07004 *
5 * Copyright (c) 2013 Google, Inc
Simon Glass2e7d35d2014-02-26 15:59:21 -07006 */
7
Joe Hershbergere721b882015-05-20 14:27:27 -05008#ifndef __TEST_UT_H
9#define __TEST_UT_H
Simon Glass2e7d35d2014-02-26 15:59:21 -070010
Simon Glass09140112020-05-10 11:40:03 -060011#include <command.h>
Simon Glass1f4431e2020-04-08 16:57:40 -060012#include <hexdump.h>
Simon Glass85aeda42015-07-06 12:54:37 -060013#include <linux/err.h>
14
Joe Hershbergere721b882015-05-20 14:27:27 -050015struct unit_test_state;
Simon Glass2e7d35d2014-02-26 15:59:21 -070016
17/**
18 * ut_fail() - Record failure of a unit test
19 *
Joe Hershbergere721b882015-05-20 14:27:27 -050020 * @uts: Test state
Vagrant Cascadianeae4b2b2016-04-30 19:18:00 -070021 * @fname: Filename where the error occurred
22 * @line: Line number where the error occurred
23 * @func: Function name where the error occurred
Simon Glass2e7d35d2014-02-26 15:59:21 -070024 * @cond: The condition that failed
25 */
Joe Hershbergere721b882015-05-20 14:27:27 -050026void ut_fail(struct unit_test_state *uts, const char *fname, int line,
Simon Glass2e7d35d2014-02-26 15:59:21 -070027 const char *func, const char *cond);
28
29/**
30 * ut_failf() - Record failure of a unit test
31 *
Joe Hershbergere721b882015-05-20 14:27:27 -050032 * @uts: Test state
Vagrant Cascadianeae4b2b2016-04-30 19:18:00 -070033 * @fname: Filename where the error occurred
34 * @line: Line number where the error occurred
35 * @func: Function name where the error occurred
Simon Glass2e7d35d2014-02-26 15:59:21 -070036 * @cond: The condition that failed
37 * @fmt: printf() format string for the error, followed by args
38 */
Joe Hershbergere721b882015-05-20 14:27:27 -050039void ut_failf(struct unit_test_state *uts, const char *fname, int line,
Simon Glass2e7d35d2014-02-26 15:59:21 -070040 const char *func, const char *cond, const char *fmt, ...)
41 __attribute__ ((format (__printf__, 6, 7)));
42
Simon Glass400175b2020-01-27 08:49:56 -070043/**
44 * ut_check_console_line() - Check the next console line against expectations
45 *
46 * This creates a string and then checks it against the next line of console
47 * output obtained with console_record_readline().
48 *
49 * After the function returns, uts->expect_str holds the expected string and
50 * uts->actual_str holds the actual string read from the console.
51 *
52 * @uts: Test state
53 * @fmt: printf() format string for the error, followed by args
54 * @return 0 if OK, other value on error
55 */
56int ut_check_console_line(struct unit_test_state *uts, const char *fmt, ...)
57 __attribute__ ((format (__printf__, 2, 3)));
58
59/**
60 * ut_check_console_end() - Check there is no more console output
61 *
62 * After the function returns, uts->actual_str holds the actual string read
63 * from the console
64 *
65 * @uts: Test state
66 * @return 0 if OK (console has no output), other value on error
67 */
68int ut_check_console_end(struct unit_test_state *uts);
69
70/**
71 * ut_check_console_dump() - Check that next lines have a print_buffer() dump
72 *
73 * This only supports a byte dump.
74 *
75 * @total_bytes: Size of the expected dump in bytes`
76 * @return 0 if OK (looks like a dump and the length matches), other value on
77 * error
78 */
79int ut_check_console_dump(struct unit_test_state *uts, int total_bytes);
Simon Glass2e7d35d2014-02-26 15:59:21 -070080
81/* Assert that a condition is non-zero */
82#define ut_assert(cond) \
83 if (!(cond)) { \
Joe Hershbergere721b882015-05-20 14:27:27 -050084 ut_fail(uts, __FILE__, __LINE__, __func__, #cond); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -050085 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -070086 }
87
88/* Assert that a condition is non-zero, with printf() string */
89#define ut_assertf(cond, fmt, args...) \
90 if (!(cond)) { \
Joe Hershbergere721b882015-05-20 14:27:27 -050091 ut_failf(uts, __FILE__, __LINE__, __func__, #cond, \
Simon Glass2e7d35d2014-02-26 15:59:21 -070092 fmt, ##args); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -050093 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -070094 }
95
96/* Assert that two int expressions are equal */
97#define ut_asserteq(expr1, expr2) { \
Simon Glassba8444a2020-01-27 08:49:41 -070098 unsigned int _val1 = (expr1), _val2 = (expr2); \
Simon Glass2e7d35d2014-02-26 15:59:21 -070099 \
Simon Glassba8444a2020-01-27 08:49:41 -0700100 if (_val1 != _val2) { \
Joe Hershbergere721b882015-05-20 14:27:27 -0500101 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700102 #expr1 " == " #expr2, \
Simon Glassba8444a2020-01-27 08:49:41 -0700103 "Expected %#x (%d), got %#x (%d)", \
104 _val1, _val1, _val2, _val2); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500105 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700106 } \
107}
108
Dario Binacchi70573c62020-03-29 18:04:40 +0200109/* Assert that two 64 int expressions are equal */
110#define ut_asserteq_64(expr1, expr2) { \
111 u64 _val1 = (expr1), _val2 = (expr2); \
112 \
113 if (_val1 != _val2) { \
114 ut_failf(uts, __FILE__, __LINE__, __func__, \
115 #expr1 " == " #expr2, \
116 "Expected %#llx (%lld), got %#llx (%lld)", \
117 (unsigned long long)_val1, \
118 (unsigned long long)_val1, \
119 (unsigned long long)_val2, \
120 (unsigned long long)_val2); \
121 return CMD_RET_FAILURE; \
122 } \
123}
124
Simon Glass2e7d35d2014-02-26 15:59:21 -0700125/* Assert that two string expressions are equal */
126#define ut_asserteq_str(expr1, expr2) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700127 const char *_val1 = (expr1), *_val2 = (expr2); \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700128 \
Simon Glassba8444a2020-01-27 08:49:41 -0700129 if (strcmp(_val1, _val2)) { \
Joe Hershbergere721b882015-05-20 14:27:27 -0500130 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700131 #expr1 " = " #expr2, \
Simon Glassba8444a2020-01-27 08:49:41 -0700132 "Expected \"%s\", got \"%s\"", _val1, _val2); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500133 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700134 } \
135}
136
Mario Six41f67e32018-09-27 09:19:32 +0200137/* Assert that two memory areas are equal */
138#define ut_asserteq_mem(expr1, expr2, len) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700139 const u8 *_val1 = (u8 *)(expr1), *_val2 = (u8 *)(expr2); \
Mario Six41f67e32018-09-27 09:19:32 +0200140 const uint __len = len; \
141 \
Simon Glassba8444a2020-01-27 08:49:41 -0700142 if (memcmp(_val1, _val2, __len)) { \
Mario Six41f67e32018-09-27 09:19:32 +0200143 char __buf1[64 + 1] = "\0"; \
144 char __buf2[64 + 1] = "\0"; \
Simon Glassba8444a2020-01-27 08:49:41 -0700145 bin2hex(__buf1, _val1, min(__len, (uint)32)); \
146 bin2hex(__buf2, _val2, min(__len, (uint)32)); \
Mario Six41f67e32018-09-27 09:19:32 +0200147 ut_failf(uts, __FILE__, __LINE__, __func__, \
148 #expr1 " = " #expr2, \
149 "Expected \"%s\", got \"%s\"", \
150 __buf1, __buf2); \
151 return CMD_RET_FAILURE; \
152 } \
153}
154
Simon Glass2e7d35d2014-02-26 15:59:21 -0700155/* Assert that two pointers are equal */
156#define ut_asserteq_ptr(expr1, expr2) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700157 const void *_val1 = (expr1), *_val2 = (expr2); \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700158 \
Simon Glassba8444a2020-01-27 08:49:41 -0700159 if (_val1 != _val2) { \
Joe Hershbergere721b882015-05-20 14:27:27 -0500160 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700161 #expr1 " = " #expr2, \
Simon Glassba8444a2020-01-27 08:49:41 -0700162 "Expected %p, got %p", _val1, _val2); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500163 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700164 } \
165}
166
Ramon Fried8d545792018-06-21 17:47:16 +0300167/* Assert that a pointer is NULL */
168#define ut_assertnull(expr) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700169 const void *_val = (expr); \
Ramon Fried8d545792018-06-21 17:47:16 +0300170 \
Simon Glassba8444a2020-01-27 08:49:41 -0700171 if (_val) { \
Ramon Fried8d545792018-06-21 17:47:16 +0300172 ut_failf(uts, __FILE__, __LINE__, __func__, \
173 #expr " != NULL", \
Simon Glassba8444a2020-01-27 08:49:41 -0700174 "Expected NULL, got %p", _val); \
Ramon Fried8d545792018-06-21 17:47:16 +0300175 return CMD_RET_FAILURE; \
176 } \
177}
178
Simon Glassecc2ed52014-12-10 08:55:55 -0700179/* Assert that a pointer is not NULL */
180#define ut_assertnonnull(expr) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700181 const void *_val = (expr); \
Simon Glassecc2ed52014-12-10 08:55:55 -0700182 \
Simon Glassba8444a2020-01-27 08:49:41 -0700183 if (!_val) { \
Joe Hershbergere721b882015-05-20 14:27:27 -0500184 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glassecc2ed52014-12-10 08:55:55 -0700185 #expr " = NULL", \
186 "Expected non-null, got NULL"); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500187 return CMD_RET_FAILURE; \
Simon Glassecc2ed52014-12-10 08:55:55 -0700188 } \
189}
190
Simon Glass85aeda42015-07-06 12:54:37 -0600191/* Assert that a pointer is not an error pointer */
Simon Glassfe3c0b52017-05-18 20:10:00 -0600192#define ut_assertok_ptr(expr) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700193 const void *_val = (expr); \
Simon Glass85aeda42015-07-06 12:54:37 -0600194 \
Simon Glassba8444a2020-01-27 08:49:41 -0700195 if (IS_ERR(_val)) { \
Simon Glass85aeda42015-07-06 12:54:37 -0600196 ut_failf(uts, __FILE__, __LINE__, __func__, \
197 #expr " = NULL", \
198 "Expected pointer, got error %ld", \
Simon Glassba8444a2020-01-27 08:49:41 -0700199 PTR_ERR(_val)); \
Simon Glass85aeda42015-07-06 12:54:37 -0600200 return CMD_RET_FAILURE; \
201 } \
202}
203
Simon Glass2e7d35d2014-02-26 15:59:21 -0700204/* Assert that an operation succeeds (returns 0) */
205#define ut_assertok(cond) ut_asserteq(0, cond)
206
Simon Glass400175b2020-01-27 08:49:56 -0700207/* Assert that the next console output line matches */
208#define ut_assert_nextline(fmt, args...) \
209 if (ut_check_console_line(uts, fmt, ##args)) { \
210 ut_failf(uts, __FILE__, __LINE__, __func__, \
211 "console", "\nExpected '%s',\n got '%s'", \
212 uts->expect_str, uts->actual_str); \
213 return CMD_RET_FAILURE; \
214 } \
215
216/* Assert that there is no more console output */
217#define ut_assert_console_end() \
218 if (ut_check_console_end(uts)) { \
219 ut_failf(uts, __FILE__, __LINE__, __func__, \
220 "console", "Expected no more output, got '%s'",\
221 uts->actual_str); \
222 return CMD_RET_FAILURE; \
223 } \
224
225/* Assert that the next lines are print_buffer() dump at an address */
226#define ut_assert_nextlines_are_dump(total_bytes) \
227 if (ut_check_console_dump(uts, total_bytes)) { \
228 ut_failf(uts, __FILE__, __LINE__, __func__, \
229 "console", \
230 "Expected dump of length %x bytes, got '%s'", \
231 total_bytes, uts->actual_str); \
232 return CMD_RET_FAILURE; \
233 } \
234
Simon Glass81098632019-12-29 21:19:23 -0700235/**
236 * ut_check_free() - Return the number of bytes free in the malloc() pool
237 *
238 * @return bytes free
239 */
240ulong ut_check_free(void);
241
242/**
243 * ut_check_delta() - Return the number of bytes allocated/freed
244 *
245 * @last: Last value from ut_check_free
246 * @return free memory delta from @last; positive means more memory has been
247 * allocated, negative means less has been allocated (i.e. some is freed)
248 */
249long ut_check_delta(ulong last);
250
Simon Glass2e7d35d2014-02-26 15:59:21 -0700251#endif