1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Simple unit test library
5 * Copyright (c) 2013 Google, Inc
13 #include <linux/err.h>
14 #include <test/test.h>
16 struct unit_test_state;
19 * ut_fail() - Record failure of a unit test
22 * @fname: Filename where the error occurred
23 * @line: Line number where the error occurred
24 * @func: Function name where the error occurred
25 * @cond: The condition that failed
27 void ut_fail(struct unit_test_state *uts, const char *fname, int line,
28 const char *func, const char *cond);
31 * ut_failf() - Record failure of a unit test
34 * @fname: Filename where the error occurred
35 * @line: Line number where the error occurred
36 * @func: Function name where the error occurred
37 * @cond: The condition that failed
38 * @fmt: printf() format string for the error, followed by args
40 void ut_failf(struct unit_test_state *uts, const char *fname, int line,
41 const char *func, const char *cond, const char *fmt, ...)
42 __attribute__ ((format (__printf__, 6, 7)));
45 * ut_check_console_line() - Check the next console line against expectations
47 * This creates a string and then checks it against the next line of console
48 * output obtained with console_record_readline().
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.
54 * @fmt: printf() format string for the error, followed by args
55 * Return: 0 if OK, other value on error
57 int ut_check_console_line(struct unit_test_state *uts, const char *fmt, ...)
58 __attribute__ ((format (__printf__, 2, 3)));
61 * ut_check_console_linen() - Check part of the next console line
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
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.
71 * @fmt: printf() format string for the error, followed by args
72 * Return: 0 if OK, other value on error
74 int ut_check_console_linen(struct unit_test_state *uts, const char *fmt, ...)
75 __attribute__ ((format (__printf__, 2, 3)));
78 * ut_check_skipline() - Check that the next console line exists and skip it
81 * Return: 0 if OK, other value on error
83 int ut_check_skipline(struct unit_test_state *uts);
86 * ut_check_skip_to_line() - skip output until a line is found
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.
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.
95 * @fmt: printf() format string to look for, followed by args
96 * Return: 0 if OK, -ENOENT if not found, other value on error
98 int ut_check_skip_to_line(struct unit_test_state *uts, const char *fmt, ...);
101 * ut_check_console_end() - Check there is no more console output
103 * After the function returns, uts->actual_str holds the actual string read
107 * Return: 0 if OK (console has no output), other value on error
109 int ut_check_console_end(struct unit_test_state *uts);
112 * ut_check_console_dump() - Check that next lines have a print_buffer() dump
114 * This only supports a byte dump.
116 * @total_bytes: Size of the expected dump in bytes`
117 * Return: 0 if OK (looks like a dump and the length matches), other value on
120 int ut_check_console_dump(struct unit_test_state *uts, int total_bytes);
122 /* Report a failure, with printf() string */
123 #define ut_reportf(fmt, args...) \
124 ut_failf(uts, __FILE__, __LINE__, __func__, "report", \
127 /* Assert that a condition is non-zero */
128 #define ut_assert(cond) \
130 ut_fail(uts, __FILE__, __LINE__, __func__, #cond); \
131 return CMD_RET_FAILURE; \
134 /* Assert that a condition is non-zero, with printf() string */
135 #define ut_assertf(cond, fmt, args...) \
137 ut_failf(uts, __FILE__, __LINE__, __func__, #cond, \
139 return CMD_RET_FAILURE; \
142 /* Assert that two int expressions are equal */
143 #define ut_asserteq(expr1, expr2) { \
144 unsigned int _val1 = (expr1), _val2 = (expr2); \
146 if (_val1 != _val2) { \
147 ut_failf(uts, __FILE__, __LINE__, __func__, \
148 #expr1 " == " #expr2, \
149 "Expected %#x (%d), got %#x (%d)", \
150 _val1, _val1, _val2, _val2); \
151 return CMD_RET_FAILURE; \
155 /* Assert that two 64 int expressions are equal */
156 #define ut_asserteq_64(expr1, expr2) { \
157 u64 _val1 = (expr1), _val2 = (expr2); \
159 if (_val1 != _val2) { \
160 ut_failf(uts, __FILE__, __LINE__, __func__, \
161 #expr1 " == " #expr2, \
162 "Expected %#llx (%lld), got %#llx (%lld)", \
163 (unsigned long long)_val1, \
164 (unsigned long long)_val1, \
165 (unsigned long long)_val2, \
166 (unsigned long long)_val2); \
167 return CMD_RET_FAILURE; \
171 /* Assert that two string expressions are equal */
172 #define ut_asserteq_str(expr1, expr2) { \
173 const char *_val1 = (expr1), *_val2 = (expr2); \
175 if (strcmp(_val1, _val2)) { \
176 ut_failf(uts, __FILE__, __LINE__, __func__, \
177 #expr1 " = " #expr2, \
178 "Expected \"%s\", got \"%s\"", _val1, _val2); \
179 return CMD_RET_FAILURE; \
184 * Assert that two string expressions are equal, up to length of the
187 #define ut_asserteq_strn(expr1, expr2) { \
188 const char *_val1 = (expr1), *_val2 = (expr2); \
189 int _len = strlen(_val1); \
191 if (memcmp(_val1, _val2, _len)) { \
192 ut_failf(uts, __FILE__, __LINE__, __func__, \
193 #expr1 " = " #expr2, \
194 "Expected \"%.*s\", got \"%.*s\"", \
195 _len, _val1, _len, _val2); \
196 return CMD_RET_FAILURE; \
200 /* Assert that two memory areas are equal */
201 #define ut_asserteq_mem(expr1, expr2, len) { \
202 const u8 *_val1 = (u8 *)(expr1), *_val2 = (u8 *)(expr2); \
203 const uint __len = len; \
205 if (memcmp(_val1, _val2, __len)) { \
206 char __buf1[64 + 1] = "\0"; \
207 char __buf2[64 + 1] = "\0"; \
208 bin2hex(__buf1, _val1, min(__len, (uint)32)); \
209 bin2hex(__buf2, _val2, min(__len, (uint)32)); \
210 ut_failf(uts, __FILE__, __LINE__, __func__, \
211 #expr1 " = " #expr2, \
212 "Expected \"%s\", got \"%s\"", \
214 return CMD_RET_FAILURE; \
218 /* Assert that two pointers are equal */
219 #define ut_asserteq_ptr(expr1, expr2) { \
220 const void *_val1 = (expr1), *_val2 = (expr2); \
222 if (_val1 != _val2) { \
223 ut_failf(uts, __FILE__, __LINE__, __func__, \
224 #expr1 " = " #expr2, \
225 "Expected %p, got %p", _val1, _val2); \
226 return CMD_RET_FAILURE; \
230 /* Assert that two addresses (converted from pointers) are equal */
231 #define ut_asserteq_addr(expr1, expr2) { \
232 ulong _val1 = map_to_sysmem(expr1); \
233 ulong _val2 = map_to_sysmem(expr2); \
235 if (_val1 != _val2) { \
236 ut_failf(uts, __FILE__, __LINE__, __func__, \
237 #expr1 " = " #expr2, \
238 "Expected %lx, got %lx", _val1, _val2); \
239 return CMD_RET_FAILURE; \
243 /* Assert that a pointer is NULL */
244 #define ut_assertnull(expr) { \
245 const void *_val = (expr); \
248 ut_failf(uts, __FILE__, __LINE__, __func__, \
250 "Expected NULL, got %p", _val); \
251 return CMD_RET_FAILURE; \
255 /* Assert that a pointer is not NULL */
256 #define ut_assertnonnull(expr) { \
257 const void *_val = (expr); \
260 ut_failf(uts, __FILE__, __LINE__, __func__, \
262 "Expected non-null, got NULL"); \
263 return CMD_RET_FAILURE; \
267 /* Assert that a pointer is not an error pointer */
268 #define ut_assertok_ptr(expr) { \
269 const void *_val = (expr); \
271 if (IS_ERR(_val)) { \
272 ut_failf(uts, __FILE__, __LINE__, __func__, \
274 "Expected pointer, got error %ld", \
276 return CMD_RET_FAILURE; \
280 /* Assert that an operation succeeds (returns 0) */
281 #define ut_assertok(cond) ut_asserteq(0, cond)
283 /* Assert that the next console output line matches */
284 #define ut_assert_nextline(fmt, args...) \
285 if (ut_check_console_line(uts, fmt, ##args)) { \
286 ut_failf(uts, __FILE__, __LINE__, __func__, \
287 "console", "\nExpected '%s',\n got '%s'", \
288 uts->expect_str, uts->actual_str); \
289 return CMD_RET_FAILURE; \
292 /* Assert that the next console output line matches up to the length */
293 #define ut_assert_nextlinen(fmt, args...) \
294 if (ut_check_console_linen(uts, fmt, ##args)) { \
295 ut_failf(uts, __FILE__, __LINE__, __func__, \
296 "console", "\nExpected '%s',\n got '%s'", \
297 uts->expect_str, uts->actual_str); \
298 return CMD_RET_FAILURE; \
301 /* Assert that there is a 'next' console output line, and skip it */
302 #define ut_assert_skipline() \
303 if (ut_check_skipline(uts)) { \
304 ut_failf(uts, __FILE__, __LINE__, __func__, \
305 "console", "\nExpected a line, got end"); \
306 return CMD_RET_FAILURE; \
309 /* Assert that a following console output line matches */
310 #define ut_assert_skip_to_line(fmt, args...) \
311 if (ut_check_skip_to_line(uts, fmt, ##args)) { \
312 ut_failf(uts, __FILE__, __LINE__, __func__, \
313 "console", "\nExpected '%s',\n got to '%s'", \
314 uts->expect_str, uts->actual_str); \
315 return CMD_RET_FAILURE; \
318 /* Assert that there is no more console output */
319 #define ut_assert_console_end() \
320 if (ut_check_console_end(uts)) { \
321 ut_failf(uts, __FILE__, __LINE__, __func__, \
322 "console", "Expected no more output, got '%s'",\
324 return CMD_RET_FAILURE; \
327 /* Assert that the next lines are print_buffer() dump at an address */
328 #define ut_assert_nextlines_are_dump(total_bytes) \
329 if (ut_check_console_dump(uts, total_bytes)) { \
330 ut_failf(uts, __FILE__, __LINE__, __func__, \
332 "Expected dump of length %x bytes, got '%s'", \
333 total_bytes, uts->actual_str); \
334 return CMD_RET_FAILURE; \
337 /* Assert that the next console output line is empty */
338 #define ut_assert_nextline_empty() \
339 ut_assert_nextline("%s", "")
342 * ut_check_free() - Return the number of bytes free in the malloc() pool
346 ulong ut_check_free(void);
349 * ut_check_delta() - Return the number of bytes allocated/freed
351 * @last: Last value from ut_check_free
352 * Return: free memory delta from @last; positive means more memory has been
353 * allocated, negative means less has been allocated (i.e. some is freed)
355 long ut_check_delta(ulong last);
358 * ut_silence_console() - Silence the console if requested by the user
360 * This stops test output from appear on the console. It is the default on
361 * sandbox, unless the -v flag is given. For other boards, this does nothing.
363 * @uts: Test state (in case in future we want to keep state here)
365 void ut_silence_console(struct unit_test_state *uts);
368 * ut_unsilence_console() - Unsilence the console after a test
370 * This restarts console output again and turns off console recording. This
371 * happens on all boards, including sandbox.
373 void ut_unsilence_console(struct unit_test_state *uts);
376 * ut_set_skip_delays() - Sets whether delays should be skipped
378 * Normally functions like mdelay() cause U-Boot to wait for a while. This
379 * allows all such delays to be skipped on sandbox, to speed up tests
381 * @uts: Test state (in case in future we want to keep state here)
382 * @skip_delays: true to skip delays, false to process them normally
384 void ut_set_skip_delays(struct unit_test_state *uts, bool skip_delays);
387 * test_get_state() - Get the active test state
389 * Return: the currently active test state, or NULL if none
391 struct unit_test_state *test_get_state(void);
394 * test_set_state() - Set the active test state
396 * @uts: Test state to use as currently active test state, or NULL if none
398 void test_set_state(struct unit_test_state *uts);
401 * ut_run_tests() - Run a set of tests
403 * This runs the test, handling any preparation and clean-up needed. It prints
404 * the name of each test before running it.
406 * @category: Category of these tests. This is a string printed at the start to
407 * announce the the number of tests
408 * @prefix: String prefix for the tests. Any tests that have this prefix will be
409 * printed without the prefix, so that it is easier to see the unique part
410 * of the test name. If NULL, no prefix processing is done
411 * @tests: List of tests to run
412 * @count: Number of tests to run
413 * @select_name: Name of a single test to run (from the list provided). If NULL
414 * then all tests are run
415 * @runs_per_test: Number of times to run each test (typically 1)
416 * @force_run: Run tests that are marked as manual-only (UT_TESTF_MANUAL)
417 * @test_insert: String describing a test to run after n other tests run, in the
418 * format n:name where n is the number of tests to run before this one and
419 * name is the name of the test to run. This is used to find which test causes
420 * another test to fail. If the one test fails, testing stops immediately.
421 * Pass NULL to disable this
422 * Return: 0 if all tests passed, -1 if any failed
424 int ut_run_list(const char *name, const char *prefix, struct unit_test *tests,
425 int count, const char *select_name, int runs_per_test,
426 bool force_run, const char *test_insert);