summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/console_cmd/powerindebug.c
blob: 9f52a9b569568be4f708fe0419a74ed55fd40278 (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
35
36
/* 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/shell/shell.h>
#include <zephyr/ztest.h>

#include "console.h"
#include "ec_commands.h"
#include "test/drivers/test_state.h"
#include "test/drivers/utils.h"

ZTEST_USER(console_cmd_powerindebug, test_no_params)
{
	zassert_ok(shell_execute_cmd(get_ec_shell(), "powerindebug"),
		   "Failed to get debug mask");
}

ZTEST_USER(console_cmd_powerindebug, test_good_params)
{
	zassert_ok(shell_execute_cmd(get_ec_shell(), "powerindebug 0x10"),
		   "Failed to set debug mask");
	zassert_ok(shell_execute_cmd(get_ec_shell(), "powerindebug 0"),
		   "Failed to set debug mask");
}

ZTEST_USER(console_cmd_powerindebug, test_bad_params)
{
	int rv = shell_execute_cmd(get_ec_shell(), "powerindebug fish");

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

ZTEST_SUITE(console_cmd_powerindebug, NULL, NULL, NULL, NULL, NULL);