summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/console_cmd/hcdebug.c
blob: 71adb026905dab7c38a9efecdc68cce599607567 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
/* 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"

static void console_cmd_hcdebug_after(void *fixture)
{
	ARG_UNUSED(fixture);
	shell_execute_cmd(get_ec_shell(), "hcdebug off");
}

ZTEST_SUITE(console_cmd_hcdebug, drivers_predicate_post_main, NULL, NULL,
	    console_cmd_hcdebug_after, NULL);

ZTEST_USER(console_cmd_hcdebug, test_too_many_args)
{
	int rv = shell_execute_cmd(get_ec_shell(), "hcdebug arg1 arg2");

	zassert_not_equal(rv, EC_SUCCESS, "Expected %d, but got %d",
			  EC_ERROR_PARAM_COUNT, rv);
}

ZTEST_USER(console_cmd_hcdebug, test_no_args)
{
	zassert_ok(shell_execute_cmd(get_ec_shell(), "hcdebug"), NULL);
}

ZTEST_USER(console_cmd_hcdebug, test_invalid_arg)
{
	int rv = shell_execute_cmd(get_ec_shell(), "hcdebug bar");

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

ZTEST_USER(console_cmd_hcdebug, test_valid_args)
{
	zassert_ok(shell_execute_cmd(get_ec_shell(), "hcdebug off"), NULL);
	zassert_ok(shell_execute_cmd(get_ec_shell(), "hcdebug normal"), NULL);
	zassert_ok(shell_execute_cmd(get_ec_shell(), "hcdebug every"), NULL);
	zassert_ok(shell_execute_cmd(get_ec_shell(), "hcdebug params"), NULL);
}