blob: 27585507d8cfe78d1f6c86ddd1dd3c0d0109ebcf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Joe Hershbergere721b882015-05-20 14:27:27 -05002/*
3 * Copyright (c) 2013 Google, Inc.
Joe Hershbergere721b882015-05-20 14:27:27 -05004 */
5
6#ifndef __TEST_TEST_H
7#define __TEST_TEST_H
8
9#include <malloc.h>
Simon Glasse180c2b2020-07-28 19:41:12 -060010#include <linux/bitops.h>
Joe Hershbergere721b882015-05-20 14:27:27 -050011
12/*
13 * struct unit_test_state - Entire state of test system
14 *
15 * @fail_count: Number of tests that failed
16 * @start: Store the starting mallinfo when doing leak test
17 * @priv: A pointer to some other info some suites want to track
Simon Glass6fb2f572017-05-18 20:09:17 -060018 * @of_root: Record of the livetree root node (used for setting up tests)
Simon Glass400175b2020-01-27 08:49:56 -070019 * @expect_str: Temporary string used to hold expected string value
20 * @actual_str: Temporary string used to hold actual string value
Joe Hershbergere721b882015-05-20 14:27:27 -050021 */
22struct unit_test_state {
23 int fail_count;
24 struct mallinfo start;
25 void *priv;
Simon Glass6fb2f572017-05-18 20:09:17 -060026 struct device_node *of_root;
Simon Glass400175b2020-01-27 08:49:56 -070027 char expect_str[256];
28 char actual_str[256];
Joe Hershbergere721b882015-05-20 14:27:27 -050029};
30
Simon Glasse180c2b2020-07-28 19:41:12 -060031/* Test flags for each test */
32enum {
33 UT_TESTF_SCAN_PDATA = BIT(0), /* test needs platform data */
34 UT_TESTF_PROBE_TEST = BIT(1), /* probe test uclass */
35 UT_TESTF_SCAN_FDT = BIT(2), /* scan device tree */
36 UT_TESTF_FLAT_TREE = BIT(3), /* test needs flat DT */
37 UT_TESTF_LIVE_TREE = BIT(4), /* needs live device tree */
Simon Glass132644f2020-07-28 19:41:13 -060038 UT_TESTF_CONSOLE_REC = BIT(5), /* needs console recording */
Simon Glass4bc639e2021-03-07 17:34:45 -070039 /* do extra driver model init and uninit */
40 UT_TESTF_DM = BIT(6),
Simon Glasse180c2b2020-07-28 19:41:12 -060041};
42
Joe Hershbergere721b882015-05-20 14:27:27 -050043/**
44 * struct unit_test - Information about a unit test
45 *
46 * @name: Name of test
47 * @func: Function to call to perform test
48 * @flags: Flags indicated pre-conditions for test
49 */
50struct unit_test {
Simon Glass801587b2017-05-18 20:09:15 -060051 const char *file;
Joe Hershbergere721b882015-05-20 14:27:27 -050052 const char *name;
53 int (*func)(struct unit_test_state *state);
54 int flags;
55};
56
Heinrich Schuchardtd0ba0262020-05-06 18:26:07 +020057/**
58 * UNIT_TEST() - create linker generated list entry for unit a unit test
59 *
60 * The macro UNIT_TEST() is used to create a linker generated list entry. These
61 * list entries are enumerate tests that can be execute using the ut command.
62 * The list entries are used both by the implementation of the ut command as
63 * well as in a related Python test.
64 *
65 * For Python testing the subtests are collected in Python function
66 * generate_ut_subtest() by applying a regular expression to the lines of file
67 * u-boot.sym. The list entries have to follow strict naming conventions to be
68 * matched by the expression.
69 *
70 * Use UNIT_TEST(foo_test_bar, _flags, foo_test) for a test bar in test suite
71 * foo that can be executed via command 'ut foo bar' and is implemented in
72 * function foo_test_bar().
73 *
74 * @_name: concatenation of name of the test suite, "_test_", and the name
75 * of the test
76 * @_flags: an integer field that can be evaluated by the test suite
77 * implementation
78 * @_suite: name of the test suite concatenated with "_test"
79 */
Joe Hershbergere721b882015-05-20 14:27:27 -050080#define UNIT_TEST(_name, _flags, _suite) \
81 ll_entry_declare(struct unit_test, _name, _suite) = { \
Simon Glass801587b2017-05-18 20:09:15 -060082 .file = __FILE__, \
Joe Hershbergere721b882015-05-20 14:27:27 -050083 .name = #_name, \
84 .flags = _flags, \
85 .func = _name, \
86 }
87
Simon Glassdc12ebb2019-12-29 21:19:25 -070088/* Sizes for devres tests */
89enum {
90 TEST_DEVRES_SIZE = 100,
91 TEST_DEVRES_COUNT = 10,
92 TEST_DEVRES_TOTAL = TEST_DEVRES_SIZE * TEST_DEVRES_COUNT,
93
Simon Glass42a0ce52019-12-29 21:19:28 -070094 /* A few different sizes */
Simon Glassdc12ebb2019-12-29 21:19:25 -070095 TEST_DEVRES_SIZE2 = 15,
Simon Glass42a0ce52019-12-29 21:19:28 -070096 TEST_DEVRES_SIZE3 = 37,
Simon Glassdc12ebb2019-12-29 21:19:25 -070097};
Joe Hershbergere721b882015-05-20 14:27:27 -050098
Simon Glassb25ff5c2020-10-25 20:38:28 -060099/**
Simon Glass079ac592020-12-23 08:11:18 -0700100 * testbus_get_clear_removed() - Test function to obtain removed device
101 *
102 * This is used in testbus to find out which device was removed. Calling this
103 * function returns a pointer to the device and then clears it back to NULL, so
104 * that a future test can check it.
105 */
106struct udevice *testbus_get_clear_removed(void);
107
108/**
Simon Glassb25ff5c2020-10-25 20:38:28 -0600109 * dm_test_main() - Run driver model tests
110 *
111 * Run all the available driver model tests, or a selection
112 *
113 * @test_name: Name of single test to run (e.g. "dm_test_fdt_pre_reloc" or just
114 * "fdt_pre_reloc"), or NULL to run all
115 * @return 0 if all tests passed, 1 if not
116 */
117int dm_test_main(const char *test_name);
118
Joe Hershbergere721b882015-05-20 14:27:27 -0500119#endif /* __TEST_TEST_H */