diff mbox series

[v3,4/4] test: cmd: add test for temperature command

Message ID 20220906113036.1768055-4-robert.marko@sartura.hr
State Accepted
Delegated to: Tom Rini
Headers show
Series [v3,1/4] cmd: add temperature command | expand

Commit Message

Robert Marko Sept. 6, 2022, 11:30 a.m. UTC
Add simple test for the temperature command.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 test/cmd/Makefile      |  1 +
 test/cmd/temperature.c | 39 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)
 create mode 100644 test/cmd/temperature.c

Comments

Tom Rini Oct. 11, 2022, 9:37 p.m. UTC | #1
On Tue, Sep 06, 2022 at 01:30:36PM +0200, Robert Marko wrote:

> Add simple test for the temperature command.
> 
> Signed-off-by: Robert Marko <robert.marko@sartura.hr>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/test/cmd/Makefile b/test/cmd/Makefile
index c331757425..f9493357a5 100644
--- a/test/cmd/Makefile
+++ b/test/cmd/Makefile
@@ -13,3 +13,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 0000000000..2a1ea0611d
--- /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);