aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Marko <robimarko@gmail.com>2022-09-06 13:30:36 +0200
committerTom Rini <trini@konsulko.com>2022-10-11 13:49:02 -0400
commit46a63e460c792687e1f2754d2dd7e702cf47cc9d (patch)
tree60b2c9e9900e06e5da9be3e71d7990099a970c36
parentdd60dcda6d101efe9a3a1acc34ecdeaf71c83f1f (diff)
downloadu-boot-WIP/2022-10-11-assorted-fixes-and-updates.zip
u-boot-WIP/2022-10-11-assorted-fixes-and-updates.tar.gz
u-boot-WIP/2022-10-11-assorted-fixes-and-updates.tar.bz2
test: cmd: add test for temperature commandWIP/2022-10-11-assorted-fixes-and-updates
Add simple test for the temperature command. Signed-off-by: Robert Marko <robert.marko@sartura.hr> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--test/cmd/Makefile1
-rw-r--r--test/cmd/temperature.c39
2 files changed, 40 insertions, 0 deletions
diff --git a/test/cmd/Makefile b/test/cmd/Makefile
index 1bb02d9..b7b9bd4 100644
--- a/test/cmd/Makefile
+++ b/test/cmd/Makefile
@@ -16,3 +16,4 @@ obj-$(CONFIG_CMD_MEM_SEARCH) += mem_search.o
obj-$(CONFIG_CMD_PINMUX) += pinmux.o
obj-$(CONFIG_CMD_PWM) += pwm.o
obj-$(CONFIG_CMD_SETEXPR) += setexpr.o
+obj-$(CONFIG_CMD_TEMPERATURE) += temperature.o
diff --git a/test/cmd/temperature.c b/test/cmd/temperature.c
new file mode 100644
index 0000000..2a1ea06
--- /dev/null
+++ b/test/cmd/temperature.c
@@ -0,0 +1,39 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Executes tests for temperature command
+ *
+ * Copyright (C) 2022 Sartura Ltd.
+ */
+
+#include <common.h>
+#include <command.h>
+#include <dm.h>
+#include <dm/test.h>
+#include <test/test.h>
+#include <test/ut.h>
+
+static int dm_test_cmd_temperature(struct unit_test_state *uts)
+{
+ struct udevice *dev;
+
+ ut_assertok(uclass_get_device(UCLASS_THERMAL, 0, &dev));
+ ut_assertnonnull(dev);
+
+ ut_assertok(console_record_reset_enable());
+
+ /* Test that "temperature list" shows the sandbox device */
+ ut_assertok(run_command("temperature list", 0));
+ ut_assert_nextline("| Device | Driver | Parent");
+ ut_assert_nextline("| thermal | thermal-sandbox | root_driver");
+ ut_assert_console_end();
+
+ /* Test that "temperature get thermal" returns expected value */
+ console_record_reset();
+ ut_assertok(run_command("temperature get thermal", 0));
+ ut_assert_nextline("thermal: 100 C");
+ ut_assert_console_end();
+
+ return 0;
+}
+
+DM_TEST(dm_test_cmd_temperature, UT_TESTF_SCAN_FDT | UT_TESTF_CONSOLE_REC);