summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/console_cmd/power_button.c
blob: 92d0aeaf781ed930de5d6e3d2351ac20f8b739b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Copyright 2022 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <zephyr/ztest.h>
#include <console.h>

ZTEST_SUITE(console_cmd_power_button, NULL, NULL, NULL, NULL, NULL);

ZTEST_USER(console_cmd_power_button, test_return_ok)
{
	zassert_ok(shell_execute_cmd(get_ec_shell(), "powerbtn"), NULL);
}

ZTEST_USER(console_cmd_power_button, test_negative_delay)
{
	int rv;

	rv = shell_execute_cmd(get_ec_shell(), "powerbtn -1");

	zassert_not_equal(rv, EC_SUCCESS,
			  "Command should error on negative delay");
}

ZTEST_USER(console_cmd_power_button, test_invalid_arg)
{
	int rv;

	rv = shell_execute_cmd(get_ec_shell(), "powerbtn foo");

	zassert_equal(rv, EC_ERROR_PARAM1, "Expected %d, but got %d",
		      EC_ERROR_PARAM1, rv);
}