blob: 04df8ba3af319d5c2dde28e1dd979825b7ecd7a3 [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 Glass85aeda42015-07-06 12:54:37 -060011#include <linux/err.h>
12
Joe Hershbergere721b882015-05-20 14:27:27 -050013struct unit_test_state;
Simon Glass2e7d35d2014-02-26 15:59:21 -070014
15/**
16 * ut_fail() - Record failure of a unit test
17 *
Joe Hershbergere721b882015-05-20 14:27:27 -050018 * @uts: Test state
Vagrant Cascadianeae4b2b2016-04-30 19:18:00 -070019 * @fname: Filename where the error occurred
20 * @line: Line number where the error occurred
21 * @func: Function name where the error occurred
Simon Glass2e7d35d2014-02-26 15:59:21 -070022 * @cond: The condition that failed
23 */
Joe Hershbergere721b882015-05-20 14:27:27 -050024void ut_fail(struct unit_test_state *uts, const char *fname, int line,
Simon Glass2e7d35d2014-02-26 15:59:21 -070025 const char *func, const char *cond);
26
27/**
28 * ut_failf() - Record failure of a unit test
29 *
Joe Hershbergere721b882015-05-20 14:27:27 -050030 * @uts: Test state
Vagrant Cascadianeae4b2b2016-04-30 19:18:00 -070031 * @fname: Filename where the error occurred
32 * @line: Line number where the error occurred
33 * @func: Function name where the error occurred
Simon Glass2e7d35d2014-02-26 15:59:21 -070034 * @cond: The condition that failed
35 * @fmt: printf() format string for the error, followed by args
36 */
Joe Hershbergere721b882015-05-20 14:27:27 -050037void ut_failf(struct unit_test_state *uts, const char *fname, int line,
Simon Glass2e7d35d2014-02-26 15:59:21 -070038 const char *func, const char *cond, const char *fmt, ...)
39 __attribute__ ((format (__printf__, 6, 7)));
40
Simon Glass400175b2020-01-27 08:49:56 -070041/**
42 * ut_check_console_line() - Check the next console line against expectations
43 *
44 * This creates a string and then checks it against the next line of console
45 * output obtained with console_record_readline().
46 *
47 * After the function returns, uts->expect_str holds the expected string and
48 * uts->actual_str holds the actual string read from the console.
49 *
50 * @uts: Test state
51 * @fmt: printf() format string for the error, followed by args
52 * @return 0 if OK, other value on error
53 */
54int ut_check_console_line(struct unit_test_state *uts, const char *fmt, ...)
55 __attribute__ ((format (__printf__, 2, 3)));
56
57/**
58 * ut_check_console_end() - Check there is no more console output
59 *
60 * After the function returns, uts->actual_str holds the actual string read
61 * from the console
62 *
63 * @uts: Test state
64 * @return 0 if OK (console has no output), other value on error
65 */
66int ut_check_console_end(struct unit_test_state *uts);
67
68/**
69 * ut_check_console_dump() - Check that next lines have a print_buffer() dump
70 *
71 * This only supports a byte dump.
72 *
73 * @total_bytes: Size of the expected dump in bytes`
74 * @return 0 if OK (looks like a dump and the length matches), other value on
75 * error
76 */
77int ut_check_console_dump(struct unit_test_state *uts, int total_bytes);
Simon Glass2e7d35d2014-02-26 15:59:21 -070078
79/* Assert that a condition is non-zero */
80#define ut_assert(cond) \
81 if (!(cond)) { \
Joe Hershbergere721b882015-05-20 14:27:27 -050082 ut_fail(uts, __FILE__, __LINE__, __func__, #cond); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -050083 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -070084 }
85
86/* Assert that a condition is non-zero, with printf() string */
87#define ut_assertf(cond, fmt, args...) \
88 if (!(cond)) { \
Joe Hershbergere721b882015-05-20 14:27:27 -050089 ut_failf(uts, __FILE__, __LINE__, __func__, #cond, \
Simon Glass2e7d35d2014-02-26 15:59:21 -070090 fmt, ##args); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -050091 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -070092 }
93
94/* Assert that two int expressions are equal */
95#define ut_asserteq(expr1, expr2) { \
Simon Glassba8444a2020-01-27 08:49:41 -070096 unsigned int _val1 = (expr1), _val2 = (expr2); \
Simon Glass2e7d35d2014-02-26 15:59:21 -070097 \
Simon Glassba8444a2020-01-27 08:49:41 -070098 if (_val1 != _val2) { \
Joe Hershbergere721b882015-05-20 14:27:27 -050099 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700100 #expr1 " == " #expr2, \
Simon Glassba8444a2020-01-27 08:49:41 -0700101 "Expected %#x (%d), got %#x (%d)", \
102 _val1, _val1, _val2, _val2); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500103 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700104 } \
105}
106
107/* Assert that two string expressions are equal */
108#define ut_asserteq_str(expr1, expr2) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700109 const char *_val1 = (expr1), *_val2 = (expr2); \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700110 \
Simon Glassba8444a2020-01-27 08:49:41 -0700111 if (strcmp(_val1, _val2)) { \
Joe Hershbergere721b882015-05-20 14:27:27 -0500112 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700113 #expr1 " = " #expr2, \
Simon Glassba8444a2020-01-27 08:49:41 -0700114 "Expected \"%s\", got \"%s\"", _val1, _val2); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500115 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700116 } \
117}
118
Mario Six41f67e32018-09-27 09:19:32 +0200119/* Assert that two memory areas are equal */
120#define ut_asserteq_mem(expr1, expr2, len) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700121 const u8 *_val1 = (u8 *)(expr1), *_val2 = (u8 *)(expr2); \
Mario Six41f67e32018-09-27 09:19:32 +0200122 const uint __len = len; \
123 \
Simon Glassba8444a2020-01-27 08:49:41 -0700124 if (memcmp(_val1, _val2, __len)) { \
Mario Six41f67e32018-09-27 09:19:32 +0200125 char __buf1[64 + 1] = "\0"; \
126 char __buf2[64 + 1] = "\0"; \
Simon Glassba8444a2020-01-27 08:49:41 -0700127 bin2hex(__buf1, _val1, min(__len, (uint)32)); \
128 bin2hex(__buf2, _val2, min(__len, (uint)32)); \
Mario Six41f67e32018-09-27 09:19:32 +0200129 ut_failf(uts, __FILE__, __LINE__, __func__, \
130 #expr1 " = " #expr2, \
131 "Expected \"%s\", got \"%s\"", \
132 __buf1, __buf2); \
133 return CMD_RET_FAILURE; \
134 } \
135}
136
Simon Glass2e7d35d2014-02-26 15:59:21 -0700137/* Assert that two pointers are equal */
138#define ut_asserteq_ptr(expr1, expr2) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700139 const void *_val1 = (expr1), *_val2 = (expr2); \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700140 \
Simon Glassba8444a2020-01-27 08:49:41 -0700141 if (_val1 != _val2) { \
Joe Hershbergere721b882015-05-20 14:27:27 -0500142 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700143 #expr1 " = " #expr2, \
Simon Glassba8444a2020-01-27 08:49:41 -0700144 "Expected %p, got %p", _val1, _val2); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500145 return CMD_RET_FAILURE; \
Simon Glass2e7d35d2014-02-26 15:59:21 -0700146 } \
147}
148
Ramon Fried8d545792018-06-21 17:47:16 +0300149/* Assert that a pointer is NULL */
150#define ut_assertnull(expr) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700151 const void *_val = (expr); \
Ramon Fried8d545792018-06-21 17:47:16 +0300152 \
Simon Glassba8444a2020-01-27 08:49:41 -0700153 if (_val) { \
Ramon Fried8d545792018-06-21 17:47:16 +0300154 ut_failf(uts, __FILE__, __LINE__, __func__, \
155 #expr " != NULL", \
Simon Glassba8444a2020-01-27 08:49:41 -0700156 "Expected NULL, got %p", _val); \
Ramon Fried8d545792018-06-21 17:47:16 +0300157 return CMD_RET_FAILURE; \
158 } \
159}
160
Simon Glassecc2ed52014-12-10 08:55:55 -0700161/* Assert that a pointer is not NULL */
162#define ut_assertnonnull(expr) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700163 const void *_val = (expr); \
Simon Glassecc2ed52014-12-10 08:55:55 -0700164 \
Simon Glassba8444a2020-01-27 08:49:41 -0700165 if (!_val) { \
Joe Hershbergere721b882015-05-20 14:27:27 -0500166 ut_failf(uts, __FILE__, __LINE__, __func__, \
Simon Glassecc2ed52014-12-10 08:55:55 -0700167 #expr " = NULL", \
168 "Expected non-null, got NULL"); \
Joe Hershbergerfe3f6a62015-05-20 14:27:34 -0500169 return CMD_RET_FAILURE; \
Simon Glassecc2ed52014-12-10 08:55:55 -0700170 } \
171}
172
Simon Glass85aeda42015-07-06 12:54:37 -0600173/* Assert that a pointer is not an error pointer */
Simon Glassfe3c0b52017-05-18 20:10:00 -0600174#define ut_assertok_ptr(expr) { \
Simon Glassba8444a2020-01-27 08:49:41 -0700175 const void *_val = (expr); \
Simon Glass85aeda42015-07-06 12:54:37 -0600176 \
Simon Glassba8444a2020-01-27 08:49:41 -0700177 if (IS_ERR(_val)) { \
Simon Glass85aeda42015-07-06 12:54:37 -0600178 ut_failf(uts, __FILE__, __LINE__, __func__, \
179 #expr " = NULL", \
180 "Expected pointer, got error %ld", \
Simon Glassba8444a2020-01-27 08:49:41 -0700181 PTR_ERR(_val)); \
Simon Glass85aeda42015-07-06 12:54:37 -0600182 return CMD_RET_FAILURE; \
183 } \
184}
185
Simon Glass2e7d35d2014-02-26 15:59:21 -0700186/* Assert that an operation succeeds (returns 0) */
187#define ut_assertok(cond) ut_asserteq(0, cond)
188
Simon Glass400175b2020-01-27 08:49:56 -0700189/* Assert that the next console output line matches */
190#define ut_assert_nextline(fmt, args...) \
191 if (ut_check_console_line(uts, fmt, ##args)) { \
192 ut_failf(uts, __FILE__, __LINE__, __func__, \
193 "console", "\nExpected '%s',\n got '%s'", \
194 uts->expect_str, uts->actual_str); \
195 return CMD_RET_FAILURE; \
196 } \
197
198/* Assert that there is no more console output */
199#define ut_assert_console_end() \
200 if (ut_check_console_end(uts)) { \
201 ut_failf(uts, __FILE__, __LINE__, __func__, \
202 "console", "Expected no more output, got '%s'",\
203 uts->actual_str); \
204 return CMD_RET_FAILURE; \
205 } \
206
207/* Assert that the next lines are print_buffer() dump at an address */
208#define ut_assert_nextlines_are_dump(total_bytes) \
209 if (ut_check_console_dump(uts, total_bytes)) { \
210 ut_failf(uts, __FILE__, __LINE__, __func__, \
211 "console", \
212 "Expected dump of length %x bytes, got '%s'", \
213 total_bytes, uts->actual_str); \
214 return CMD_RET_FAILURE; \
215 } \
216
Simon Glass81098632019-12-29 21:19:23 -0700217/**
218 * ut_check_free() - Return the number of bytes free in the malloc() pool
219 *
220 * @return bytes free
221 */
222ulong ut_check_free(void);
223
224/**
225 * ut_check_delta() - Return the number of bytes allocated/freed
226 *
227 * @last: Last value from ut_check_free
228 * @return free memory delta from @last; positive means more memory has been
229 * allocated, negative means less has been allocated (i.e. some is freed)
230 */
231long ut_check_delta(ulong last);
232
Simon Glass2e7d35d2014-02-26 15:59:21 -0700233#endif