blob: 90a324bf70c2eea14c73f5617f04a3a76fecf774 [file] [log] [blame]
Simon Glass1c721752021-03-07 17:34:47 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6
7#include <common.h>
8#include <console.h>
Stefan Roeseaf042c22022-09-02 13:57:54 +02009#include <cyclic.h>
Simon Glassd8ed2342021-03-07 17:34:50 -070010#include <dm.h>
Simon Glass7d026452022-03-04 08:43:01 -070011#include <event.h>
Simon Glassd8ed2342021-03-07 17:34:50 -070012#include <dm/root.h>
Simon Glassc79705e2021-03-07 17:34:58 -070013#include <dm/test.h>
Simon Glasse77615d2021-03-07 17:34:59 -070014#include <dm/uclass-internal.h>
Simon Glass1c721752021-03-07 17:34:47 -070015#include <test/test.h>
Simon Glassd8ed2342021-03-07 17:34:50 -070016#include <test/ut.h>
Simon Glass1c721752021-03-07 17:34:47 -070017
Simon Glass30a0d202021-03-07 17:34:49 -070018DECLARE_GLOBAL_DATA_PTR;
19
Simon Glassfe806862021-03-07 17:35:04 -070020/* This is valid when a test is running, NULL otherwise */
21static struct unit_test_state *cur_test_state;
22
23struct unit_test_state *test_get_state(void)
24{
25 return cur_test_state;
26}
27
28void test_set_state(struct unit_test_state *uts)
29{
30 cur_test_state = uts;
31}
32
Simon Glassc79705e2021-03-07 17:34:58 -070033/**
34 * dm_test_pre_run() - Get ready to run a driver model test
35 *
36 * This clears out the driver model data structures. For sandbox it resets the
37 * state structure
38 *
39 * @uts: Test state
40 */
41static int dm_test_pre_run(struct unit_test_state *uts)
42{
43 bool of_live = uts->of_live;
44
45 uts->root = NULL;
46 uts->testdev = NULL;
47 uts->force_fail_alloc = false;
48 uts->skip_post_probe = false;
49 gd->dm_root = NULL;
Simon Glass719d2862021-07-05 16:32:43 -060050 if (CONFIG_IS_ENABLED(UT_DM) && !CONFIG_IS_ENABLED(OF_PLATDATA))
Simon Glassc79705e2021-03-07 17:34:58 -070051 memset(dm_testdrv_op_count, '\0', sizeof(dm_testdrv_op_count));
Simon Glassd4a15922021-03-25 10:44:33 +130052 arch_reset_for_test();
Simon Glassc79705e2021-03-07 17:34:58 -070053
54 /* Determine whether to make the live tree available */
55 gd_set_of_root(of_live ? uts->of_root : NULL);
56 ut_assertok(dm_init(of_live));
57 uts->root = dm_root();
58
59 return 0;
60}
61
Simon Glasse77615d2021-03-07 17:34:59 -070062static int dm_test_post_run(struct unit_test_state *uts)
63{
64 int id;
65
Simon Glasse8c023c2021-03-15 17:25:21 +130066 /*
67 * With of-platdata-inst the uclasses are created at build time. If we
68 * destroy them we cannot get them back since uclass_add() is not
69 * supported. So skip this.
70 */
71 if (!CONFIG_IS_ENABLED(OF_PLATDATA_INST)) {
72 for (id = 0; id < UCLASS_COUNT; id++) {
73 struct uclass *uc;
Simon Glasse77615d2021-03-07 17:34:59 -070074
Simon Glasse8c023c2021-03-15 17:25:21 +130075 /*
76 * If the uclass doesn't exist we don't want to create
77 * it. So check that here before we call
78 * uclass_find_device().
79 */
80 uc = uclass_find(id);
81 if (!uc)
82 continue;
83 ut_assertok(uclass_destroy(uc));
84 }
Simon Glasse77615d2021-03-07 17:34:59 -070085 }
86
87 return 0;
88}
89
Simon Glass4b8b27e2021-03-07 17:34:51 -070090/* Ensure all the test devices are probed */
91static int do_autoprobe(struct unit_test_state *uts)
92{
93 struct udevice *dev;
94 int ret;
95
96 /* Scanning the uclass is enough to probe all the devices */
97 for (ret = uclass_first_device(UCLASS_TEST, &dev);
98 dev;
99 ret = uclass_next_device(&dev))
100 ;
101
102 return ret;
103}
104
Simon Glassd2281bb2021-03-07 17:35:03 -0700105/*
106 * ut_test_run_on_flattree() - Check if we should run a test with flat DT
107 *
108 * This skips long/slow tests where there is not much value in running a flat
109 * DT test in addition to a live DT test.
110 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100111 * Return: true to run the given test on the flat device tree
Simon Glassd2281bb2021-03-07 17:35:03 -0700112 */
113static bool ut_test_run_on_flattree(struct unit_test *test)
114{
115 const char *fname = strrchr(test->file, '/') + 1;
116
117 if (!(test->flags & UT_TESTF_DM))
118 return false;
119
120 return !strstr(fname, "video") || strstr(test->name, "video_base");
121}
122
Simon Glassca44ca02021-03-07 17:35:01 -0700123/**
Simon Glassf97f85e2021-03-07 17:35:05 -0700124 * test_matches() - Check if a test should be run
125 *
126 * This checks if the a test should be run. In the normal case of running all
127 * tests, @select_name is NULL.
128 *
129 * @prefix: String prefix for the tests. Any tests that have this prefix will be
130 * printed without the prefix, so that it is easier to see the unique part
Simon Glass84823562021-03-07 17:35:12 -0700131 * of the test name. If NULL, any suite name (xxx_test) is considered to be
132 * a prefix.
Simon Glassf97f85e2021-03-07 17:35:05 -0700133 * @test_name: Name of current test
134 * @select_name: Name of test to run (or NULL for all)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100135 * Return: true to run this test, false to skip it
Simon Glassf97f85e2021-03-07 17:35:05 -0700136 */
137static bool test_matches(const char *prefix, const char *test_name,
138 const char *select_name)
139{
Andy Shevchenkoff232a72021-02-11 16:40:10 +0200140 size_t len;
141
Simon Glassf97f85e2021-03-07 17:35:05 -0700142 if (!select_name)
143 return true;
144
Andy Shevchenkoff232a72021-02-11 16:40:10 +0200145 /* Allow glob expansion in the test name */
146 len = select_name[strlen(select_name) - 1] == '*' ? strlen(select_name) : 0;
147 if (len-- == 1)
148 return true;
149
150 if (!strncmp(test_name, select_name, len))
Simon Glassf97f85e2021-03-07 17:35:05 -0700151 return true;
152
Andy Shevchenko494a5e12021-02-11 16:40:11 +0200153 if (prefix) {
154 /* All tests have this prefix */
155 if (!strncmp(test_name, prefix, strlen(prefix)))
156 test_name += strlen(prefix);
157 } else {
Simon Glass84823562021-03-07 17:35:12 -0700158 const char *p = strstr(test_name, "_test_");
159
160 /* convert xxx_test_yyy to yyy, i.e. remove the suite name */
161 if (p)
Andy Shevchenko494a5e12021-02-11 16:40:11 +0200162 test_name = p + strlen("_test_");
Simon Glass84823562021-03-07 17:35:12 -0700163 }
Simon Glassf97f85e2021-03-07 17:35:05 -0700164
Andy Shevchenkoff232a72021-02-11 16:40:10 +0200165 if (!strncmp(test_name, select_name, len))
Simon Glassf97f85e2021-03-07 17:35:05 -0700166 return true;
167
168 return false;
169}
170
Simon Glass664277f2021-03-07 17:35:08 -0700171/**
Simon Glass1fc9c122021-03-07 17:35:07 -0700172 * ut_list_has_dm_tests() - Check if a list of tests has driver model ones
173 *
174 * @tests: List of tests to run
175 * @count: Number of tests to ru
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100176 * Return: true if any of the tests have the UT_TESTF_DM flag
Simon Glass1fc9c122021-03-07 17:35:07 -0700177 */
178static bool ut_list_has_dm_tests(struct unit_test *tests, int count)
179{
180 struct unit_test *test;
181
182 for (test = tests; test < tests + count; test++) {
183 if (test->flags & UT_TESTF_DM)
184 return true;
185 }
186
187 return false;
188}
189
Simon Glassf97f85e2021-03-07 17:35:05 -0700190/**
Simon Glass664277f2021-03-07 17:35:08 -0700191 * dm_test_restore() Put things back to normal so sandbox works as expected
192 *
193 * @of_root: Value to set for of_root
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100194 * Return: 0 if OK, -ve on error
Simon Glass664277f2021-03-07 17:35:08 -0700195 */
196static int dm_test_restore(struct device_node *of_root)
197{
198 int ret;
199
200 gd_set_of_root(of_root);
201 gd->dm_root = NULL;
202 ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE));
203 if (ret)
204 return ret;
205 dm_scan_plat(false);
206 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
207 dm_scan_fdt(false);
208
209 return 0;
210}
211
212/**
Simon Glassca44ca02021-03-07 17:35:01 -0700213 * test_pre_run() - Handle any preparation needed to run a test
214 *
215 * @uts: Test state
216 * @test: Test to prepare for
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100217 * Return: 0 if OK, -EAGAIN to skip this test since some required feature is not
Simon Glassca44ca02021-03-07 17:35:01 -0700218 * available, other -ve on error (meaning that testing cannot likely
219 * continue)
220 */
221static int test_pre_run(struct unit_test_state *uts, struct unit_test *test)
Simon Glassd002a272021-03-07 17:34:48 -0700222{
Simon Glass7d026452022-03-04 08:43:01 -0700223 ut_assertok(event_init());
Stefan Roeseaf042c22022-09-02 13:57:54 +0200224 ut_assertok(cyclic_init());
Simon Glass7d026452022-03-04 08:43:01 -0700225
Simon Glass72b524c2021-03-07 17:34:56 -0700226 if (test->flags & UT_TESTF_DM)
Simon Glassc79705e2021-03-07 17:34:58 -0700227 ut_assertok(dm_test_pre_run(uts));
Simon Glass72b524c2021-03-07 17:34:56 -0700228
Simon Glass47ec3ed2021-03-07 17:34:55 -0700229 ut_set_skip_delays(uts, false);
230
Simon Glass19fb3db2021-03-07 17:34:53 -0700231 uts->start = mallinfo();
Simon Glassd002a272021-03-07 17:34:48 -0700232
Simon Glassee8ab072022-07-30 15:52:26 -0600233 if (test->flags & UT_TESTF_SCAN_PDATA) {
Simon Glass5a986f32021-03-07 17:34:52 -0700234 ut_assertok(dm_scan_plat(false));
Simon Glassee8ab072022-07-30 15:52:26 -0600235 ut_assertok(dm_scan_other(false));
236 }
Simon Glass5a986f32021-03-07 17:34:52 -0700237
Simon Glass4b8b27e2021-03-07 17:34:51 -0700238 if (test->flags & UT_TESTF_PROBE_TEST)
239 ut_assertok(do_autoprobe(uts));
240
Simon Glassd8ed2342021-03-07 17:34:50 -0700241 if (!CONFIG_IS_ENABLED(OF_PLATDATA) &&
242 (test->flags & UT_TESTF_SCAN_FDT))
243 ut_assertok(dm_extended_scan(false));
244
Simon Glassd002a272021-03-07 17:34:48 -0700245 if (test->flags & UT_TESTF_CONSOLE_REC) {
246 int ret = console_record_reset_enable();
247
248 if (ret) {
249 printf("Skipping: Console recording disabled\n");
250 return -EAGAIN;
251 }
252 }
Simon Glass74524712021-03-07 17:34:54 -0700253 ut_silence_console(uts);
Simon Glassd002a272021-03-07 17:34:48 -0700254
255 return 0;
256}
257
Simon Glassca44ca02021-03-07 17:35:01 -0700258/**
259 * test_post_run() - Handle cleaning up after a test
260 *
261 * @uts: Test state
262 * @test: Test to clean up after
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100263 * Return: 0 if OK, -ve on error (meaning that testing cannot likely continue)
Simon Glassca44ca02021-03-07 17:35:01 -0700264 */
265static int test_post_run(struct unit_test_state *uts, struct unit_test *test)
Simon Glassd002a272021-03-07 17:34:48 -0700266{
Simon Glass74524712021-03-07 17:34:54 -0700267 ut_unsilence_console(uts);
Simon Glasse77615d2021-03-07 17:34:59 -0700268 if (test->flags & UT_TESTF_DM)
269 ut_assertok(dm_test_post_run(uts));
Stefan Roeseaf042c22022-09-02 13:57:54 +0200270 ut_assertok(cyclic_uninit());
Simon Glass7d026452022-03-04 08:43:01 -0700271 ut_assertok(event_uninit());
Simon Glass30a0d202021-03-07 17:34:49 -0700272
Simon Glassd002a272021-03-07 17:34:48 -0700273 return 0;
274}
275
Simon Glassd2281bb2021-03-07 17:35:03 -0700276/**
277 * ut_run_test() - Run a single test
278 *
279 * This runs the test, handling any preparation and clean-up needed. It prints
280 * the name of each test before running it.
281 *
282 * @uts: Test state to update. The caller should ensure that this is zeroed for
283 * the first call to this function. On exit, @uts->fail_count is
284 * incremented by the number of failures (0, one hopes)
285 * @test_name: Test to run
286 * @name: Name of test, possibly skipping a prefix that should not be displayed
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100287 * Return: 0 if all tests passed, -EAGAIN if the test should be skipped, -1 if
Simon Glassd2281bb2021-03-07 17:35:03 -0700288 * any failed
289 */
290static int ut_run_test(struct unit_test_state *uts, struct unit_test *test,
291 const char *test_name)
Simon Glass99a88fe2021-03-07 17:35:00 -0700292{
Simon Glassca44ca02021-03-07 17:35:01 -0700293 const char *fname = strrchr(test->file, '/') + 1;
294 const char *note = "";
Simon Glass99a88fe2021-03-07 17:35:00 -0700295 int ret;
296
Simon Glassca44ca02021-03-07 17:35:01 -0700297 if ((test->flags & UT_TESTF_DM) && !uts->of_live)
298 note = " (flat tree)";
299 printf("Test: %s: %s%s\n", test_name, fname, note);
Simon Glass99a88fe2021-03-07 17:35:00 -0700300
Simon Glassfe806862021-03-07 17:35:04 -0700301 /* Allow access to test state from drivers */
302 test_set_state(uts);
303
Simon Glass99a88fe2021-03-07 17:35:00 -0700304 ret = test_pre_run(uts, test);
305 if (ret == -EAGAIN)
306 return -EAGAIN;
307 if (ret)
308 return ret;
309
310 test->func(uts);
311
312 ret = test_post_run(uts, test);
313 if (ret)
314 return ret;
315
Simon Glassfe806862021-03-07 17:35:04 -0700316 test_set_state( NULL);
317
Simon Glass99a88fe2021-03-07 17:35:00 -0700318 return 0;
319}
320
Simon Glassf97f85e2021-03-07 17:35:05 -0700321/**
322 * ut_run_test_live_flat() - Run a test with both live and flat tree
323 *
324 * This calls ut_run_test() with livetree enabled, which is the standard setup
325 * for runnig tests. Then, for driver model test, it calls it again with
326 * livetree disabled. This allows checking of flattree being used when OF_LIVE
327 * is enabled, as is the case in U-Boot proper before relocation, as well as in
328 * SPL.
329 *
330 * @uts: Test state to update. The caller should ensure that this is zeroed for
331 * the first call to this function. On exit, @uts->fail_count is
332 * incremented by the number of failures (0, one hopes)
333 * @test: Test to run
334 * @name: Name of test, possibly skipping a prefix that should not be displayed
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100335 * Return: 0 if all tests passed, -EAGAIN if the test should be skipped, -1 if
Simon Glassf97f85e2021-03-07 17:35:05 -0700336 * any failed
337 */
338static int ut_run_test_live_flat(struct unit_test_state *uts,
339 struct unit_test *test, const char *name)
Simon Glassd2281bb2021-03-07 17:35:03 -0700340{
341 int runs;
342
343 /* Run with the live tree if possible */
344 runs = 0;
345 if (CONFIG_IS_ENABLED(OF_LIVE)) {
Simon Glass7c14dc72022-09-06 20:26:59 -0600346 if (!(test->flags & UT_TESTF_FLAT_TREE)) {
Simon Glassd2281bb2021-03-07 17:35:03 -0700347 uts->of_live = true;
348 ut_assertok(ut_run_test(uts, test, test->name));
349 runs++;
350 }
351 }
352
353 /*
354 * Run with the flat tree if we couldn't run it with live tree,
355 * or it is a core test.
356 */
357 if (!(test->flags & UT_TESTF_LIVE_TREE) &&
358 (!runs || ut_test_run_on_flattree(test))) {
359 uts->of_live = false;
360 ut_assertok(ut_run_test(uts, test, test->name));
361 runs++;
362 }
363
364 return 0;
365}
366
Simon Glassf97f85e2021-03-07 17:35:05 -0700367/**
368 * ut_run_tests() - Run a set of tests
369 *
370 * This runs the tests, handling any preparation and clean-up needed. It prints
371 * the name of each test before running it.
372 *
373 * @uts: Test state to update. The caller should ensure that this is zeroed for
374 * the first call to this function. On exit, @uts->fail_count is
375 * incremented by the number of failures (0, one hopes)
376 * @prefix: String prefix for the tests. Any tests that have this prefix will be
377 * printed without the prefix, so that it is easier to see the unique part
378 * of the test name. If NULL, no prefix processing is done
379 * @tests: List of tests to run
380 * @count: Number of tests to run
381 * @select_name: Name of a single test to run (from the list provided). If NULL
382 * then all tests are run
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100383 * Return: 0 if all tests passed, -ENOENT if test @select_name was not found,
Simon Glassf97f85e2021-03-07 17:35:05 -0700384 * -EBADF if any failed
385 */
386static int ut_run_tests(struct unit_test_state *uts, const char *prefix,
387 struct unit_test *tests, int count,
388 const char *select_name)
Simon Glass1c721752021-03-07 17:34:47 -0700389{
390 struct unit_test *test;
Simon Glass1c721752021-03-07 17:34:47 -0700391 int found = 0;
392
393 for (test = tests; test < tests + count; test++) {
394 const char *test_name = test->name;
Simon Glassea94d052022-08-01 07:58:45 -0600395 int ret, i, old_fail_count;
Simon Glass1c721752021-03-07 17:34:47 -0700396
Simon Glassf97f85e2021-03-07 17:35:05 -0700397 if (!test_matches(prefix, test_name, select_name))
Simon Glass1c721752021-03-07 17:34:47 -0700398 continue;
Simon Glassea94d052022-08-01 07:58:45 -0600399 old_fail_count = uts->fail_count;
400 for (i = 0; i < uts->runs_per_test; i++)
401 ret = ut_run_test_live_flat(uts, test, select_name);
402 if (uts->fail_count != old_fail_count) {
403 printf("Test %s failed %d times\n", select_name,
404 uts->fail_count - old_fail_count);
405 }
Simon Glass1c721752021-03-07 17:34:47 -0700406 found++;
Simon Glassd002a272021-03-07 17:34:48 -0700407 if (ret == -EAGAIN)
408 continue;
409 if (ret)
410 return ret;
Simon Glass1c721752021-03-07 17:34:47 -0700411 }
412 if (select_name && !found)
413 return -ENOENT;
414
415 return uts->fail_count ? -EBADF : 0;
416}
417
418int ut_run_list(const char *category, const char *prefix,
Simon Glassea94d052022-08-01 07:58:45 -0600419 struct unit_test *tests, int count, const char *select_name,
420 int runs_per_test)
Simon Glass1c721752021-03-07 17:34:47 -0700421{
422 struct unit_test_state uts = { .fail_count = 0 };
Simon Glass664277f2021-03-07 17:35:08 -0700423 bool has_dm_tests = false;
Simon Glass1c721752021-03-07 17:34:47 -0700424 int ret;
425
Simon Glass1fc9c122021-03-07 17:35:07 -0700426 if (!CONFIG_IS_ENABLED(OF_PLATDATA) &&
427 ut_list_has_dm_tests(tests, count)) {
Simon Glass664277f2021-03-07 17:35:08 -0700428 has_dm_tests = true;
Simon Glass1fc9c122021-03-07 17:35:07 -0700429 /*
430 * If we have no device tree, or it only has a root node, then
431 * these * tests clearly aren't going to work...
432 */
433 if (!gd->fdt_blob || fdt_next_node(gd->fdt_blob, 0, NULL) < 0) {
434 puts("Please run with test device tree:\n"
435 " ./u-boot -d arch/sandbox/dts/test.dtb\n");
436 return CMD_RET_FAILURE;
437 }
438 }
439
Simon Glass1c721752021-03-07 17:34:47 -0700440 if (!select_name)
441 printf("Running %d %s tests\n", count, category);
442
Simon Glassf97f85e2021-03-07 17:35:05 -0700443 uts.of_root = gd_of_root();
Simon Glassea94d052022-08-01 07:58:45 -0600444 uts.runs_per_test = runs_per_test;
Simon Glass1c721752021-03-07 17:34:47 -0700445 ret = ut_run_tests(&uts, prefix, tests, count, select_name);
446
447 if (ret == -ENOENT)
448 printf("Test '%s' not found\n", select_name);
449 else
450 printf("Failures: %d\n", uts.fail_count);
451
Simon Glass664277f2021-03-07 17:35:08 -0700452 /* Best efforts only...ignore errors */
453 if (has_dm_tests)
454 dm_test_restore(uts.of_root);
455
Simon Glass1c721752021-03-07 17:34:47 -0700456 return ret;
457}