[PATCH 08/12] test: Add type-checked argument accessor functions
Simon Glass
sjg at chromium.org
Sun Apr 12 03:34:36 CEST 2026
From: Simon Glass <simon.glass at canonical.com>
Add ut_get_str(), ut_get_int(), and ut_get_bool() functions with
corresponding ut_str(), ut_int(), and ut_bool() macros for accessing
test arguments with type checking.
These functions check that the argument index is within bounds and the
type matches what was requested.
The first failure for a test is reported via ut_failf() which should
make it fairly easy to debug the test.
Signed-off-by: Simon Glass <simon.glass at canonical.com>
Signed-off-by: Simon Glass <sjg at chromium.org>
---
include/test/test.h | 2 ++
include/test/ut.h | 50 ++++++++++++++++++++++++++++++++++
test/test-main.c | 1 +
test/ut.c | 66 +++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 119 insertions(+)
diff --git a/include/test/test.h b/include/test/test.h
index bd47025ce50..f435d6f8c6a 100644
--- a/include/test/test.h
+++ b/include/test/test.h
@@ -95,6 +95,7 @@ struct ut_arg {
* @priv: Private data for tests to use as needed
* @args: Parsed argument values for current test
* @arg_count: Number of parsed arguments
+ * @arg_error: Set if ut_str/int/bool() detects a type mismatch
*/
struct unit_test_state {
struct ut_stats cur;
@@ -123,6 +124,7 @@ struct unit_test_state {
char priv[UT_PRIV_SIZE];
struct ut_arg args[UT_MAX_ARGS];
int arg_count;
+ bool arg_error;
};
/* Test flags for each test */
diff --git a/include/test/ut.h b/include/test/ut.h
index 1c4ee390fd8..6115711574c 100644
--- a/include/test/ut.h
+++ b/include/test/ut.h
@@ -692,4 +692,54 @@ int ut_run_list(struct unit_test_state *uts, const char *category,
*/
void ut_report(struct ut_stats *stats, int run_count);
+/**
+ * ut_get_str() - Get a string test argument
+ *
+ * Fails the test if the argument type is not UT_ARG_STR.
+ *
+ * @uts: Test state
+ * @n: Argument index
+ * @file: Filename of caller
+ * @line: Line number of caller
+ * @func: Function name of caller
+ * Return: String value, or NULL if type mismatch
+ */
+const char *ut_get_str(struct unit_test_state *uts, int n, const char *file,
+ int line, const char *func);
+
+/**
+ * ut_get_int() - Get an integer test argument
+ *
+ * Fails the test if the argument type is not UT_ARG_INT.
+ *
+ * @uts: Test state
+ * @n: Argument index
+ * @file: Filename of caller
+ * @line: Line number of caller
+ * @func: Function name of caller
+ * Return: Integer value, or 0 if type mismatch
+ */
+long ut_get_int(struct unit_test_state *uts, int n, const char *file,
+ int line, const char *func);
+
+/**
+ * ut_get_bool() - Get a boolean test argument
+ *
+ * Fails the test if the argument type is not UT_ARG_BOOL.
+ *
+ * @uts: Test state
+ * @n: Argument index
+ * @file: Filename of caller
+ * @line: Line number of caller
+ * @func: Function name of caller
+ * Return: Boolean value, or false if type mismatch
+ */
+bool ut_get_bool(struct unit_test_state *uts, int n, const char *file,
+ int line, const char *func);
+
+/* Helpers for accessing test arguments with type checking */
+#define ut_str(n) ut_get_str(uts, n, __FILE__, __LINE__, __func__)
+#define ut_int(n) ut_get_int(uts, n, __FILE__, __LINE__, __func__)
+#define ut_bool(n) ut_get_bool(uts, n, __FILE__, __LINE__, __func__)
+
#endif
diff --git a/test/test-main.c b/test/test-main.c
index 9d8ab794db8..9fc4bca8e20 100644
--- a/test/test-main.c
+++ b/test/test-main.c
@@ -636,6 +636,7 @@ static int ut_run_test(struct unit_test_state *uts, struct unit_test *test,
if (ret)
return ret;
+ uts->arg_error = false;
ret = test->func(uts);
if (ret == -EAGAIN)
skip_test(uts);
diff --git a/test/ut.c b/test/ut.c
index b0cc0f3e8ff..a13e4825eac 100644
--- a/test/ut.c
+++ b/test/ut.c
@@ -284,3 +284,69 @@ void ut_set_skip_delays(struct unit_test_state *uts, bool skip_delays)
state_set_skip_delays(skip_delays);
#endif
}
+
+const char *ut_get_str(struct unit_test_state *uts, int n, const char *file,
+ int line, const char *func)
+{
+ if (n < 0 || n >= uts->arg_count) {
+ if (!uts->arg_error)
+ ut_failf(uts, file, line, func, "ut_str() arg check",
+ "arg %d is invalid (arg_count=%d)", n,
+ uts->arg_count);
+ uts->arg_error = true;
+ return NULL;
+ }
+ if (uts->args[n].type != UT_ARG_STR) {
+ if (!uts->arg_error)
+ ut_failf(uts, file, line, func, "ut_str() type check",
+ "arg %d is not a string", n);
+ uts->arg_error = true;
+ return NULL;
+ }
+
+ return uts->args[n].vstr;
+}
+
+long ut_get_int(struct unit_test_state *uts, int n, const char *file,
+ int line, const char *func)
+{
+ if (n < 0 || n >= uts->arg_count) {
+ if (!uts->arg_error)
+ ut_failf(uts, file, line, func, "ut_int() arg check",
+ "arg %d is invalid (arg_count=%d)", n,
+ uts->arg_count);
+ uts->arg_error = true;
+ return 0;
+ }
+ if (uts->args[n].type != UT_ARG_INT) {
+ if (!uts->arg_error)
+ ut_failf(uts, file, line, func, "ut_int() type check",
+ "arg %d is not an int", n);
+ uts->arg_error = true;
+ return 0;
+ }
+
+ return uts->args[n].vint;
+}
+
+bool ut_get_bool(struct unit_test_state *uts, int n, const char *file,
+ int line, const char *func)
+{
+ if (n < 0 || n >= uts->arg_count) {
+ if (!uts->arg_error)
+ ut_failf(uts, file, line, func, "ut_bool() arg check",
+ "arg %d is invalid (arg_count=%d)", n,
+ uts->arg_count);
+ uts->arg_error = true;
+ return false;
+ }
+ if (uts->args[n].type != UT_ARG_BOOL) {
+ if (!uts->arg_error)
+ ut_failf(uts, file, line, func, "ut_bool() type check",
+ "arg %d is not a bool", n);
+ uts->arg_error = true;
+ return false;
+ }
+
+ return uts->args[n].vbool;
+}
--
2.43.0
More information about the U-Boot
mailing list