summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/console_cmd/port80.c
blob: 1d7eb2ad0362b9dcb919172fdbdcb2f8142de81b (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
/* 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.
 */

/**
 * @file
 * @brief Unit Tests for ESPI port 80 console command
 */

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

#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
#include <zephyr/shell/shell.h>
#include <zephyr/ztest.h>

/**
 * @brief TestPurpose: Verify port 80 console commands
 *
 * @details
 * Validate that the port 80 console commands work.
 *
 * Expected Results
 *  - The port 80 console commands return the appropriate result
 */
ZTEST(port80, test_port80_console)
{
	zassert_ok(shell_execute_cmd(get_ec_shell(), "port80"), NULL);
	zassert_ok(shell_execute_cmd(get_ec_shell(), "port80 flush"), NULL);
	zassert_ok(shell_execute_cmd(get_ec_shell(), "port80 scroll"), NULL);
	zassert_ok(shell_execute_cmd(get_ec_shell(), "port80 intprint"), NULL);
	zassert_ok(!shell_execute_cmd(get_ec_shell(), "port80 unknown_param"),
		   NULL);
}

/**
 * @brief Test Suite: Verifies port 80 console commands.
 */
ZTEST_SUITE(console_cmd_port80, drivers_predicate_post_main, NULL, NULL, NULL,
	    NULL);