summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/default/src/tablet_mode.c
blob: d600d260721e1ba47067ec4746fed73b69e0abaa (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* 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/fff.h>
#include <zephyr/shell/shell.h>
#include <zephyr/kernel.h>
#include <zephyr/ztest.h>

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

static void tabletmode_before(void *state)
{
	ARG_UNUSED(state);
	tablet_reset();
}

static void tabletmode_after(void *state)
{
	ARG_UNUSED(state);
	tablet_reset();
}

/**
 * @brief TestPurpose: various tablet_set_mode operations, make sure lid and
 * base works independently.
 */
ZTEST_USER(tabletmode, test_tablet_set_mode)
{
	int ret;

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet initial mode: %d", ret);

	tablet_set_mode(1, TABLET_TRIGGER_LID);

	ret = tablet_get_mode();
	zassert_equal(ret, 1, "unexepcted tablet mode: %d", ret);

	tablet_set_mode(1, TABLET_TRIGGER_BASE);

	ret = tablet_get_mode();
	zassert_equal(ret, 1, "unexepcted tablet mode: %d", ret);

	tablet_set_mode(0, TABLET_TRIGGER_LID);

	ret = tablet_get_mode();
	zassert_equal(ret, 1, "unexepcted tablet mode: %d", ret);

	tablet_set_mode(0, TABLET_TRIGGER_BASE);

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet mode: %d", ret);
}

/**
 * @brief TestPurpose: test the tablet_disable functionality.
 */
ZTEST_USER(tabletmode, test_tablet_disable)
{
	int ret;

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet initial mode: %d", ret);

	tablet_disable();
	tablet_set_mode(1, TABLET_TRIGGER_LID);

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet mode: %d", ret);
}

/**
 * @brief TestPurpose: check that tabletmode on and off changes the mode.
 */
ZTEST_USER(tabletmode, test_settabletmode_on_off)
{
	int ret;

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet initial mode: %d", ret);

	ret = shell_execute_cmd(get_ec_shell(), "tabletmode");
	zassert_equal(ret, EC_SUCCESS, "unexepcted command return status: %d",
		      ret);

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet mode: %d", ret);

	ret = shell_execute_cmd(get_ec_shell(), "tabletmode on");
	zassert_equal(ret, EC_SUCCESS, "unexepcted command return status: %d",
		      ret);

	ret = tablet_get_mode();
	zassert_equal(ret, 1, "unexepcted tablet mode: %d", ret);

	ret = shell_execute_cmd(get_ec_shell(), "tabletmode off");
	zassert_equal(ret, EC_SUCCESS, "unexepcted command return status: %d",
		      ret);

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet mode: %d", ret);
}

/**
 * @brief TestPurpose: ensure that console tabletmode forces the status,
 * inhibiting tablet_set_mode, and then unforce it with reset.
 */
ZTEST_USER(tabletmode, test_settabletmode_forced)
{
	int ret;

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet initial mode: %d", ret);

	ret = shell_execute_cmd(get_ec_shell(), "tabletmode on");
	zassert_equal(ret, EC_SUCCESS, "unexepcted command return status: %d",
		      ret);

	ret = tablet_get_mode();
	zassert_equal(ret, 1, "unexepcted tablet mode: %d", ret);

	tablet_set_mode(0, TABLET_TRIGGER_LID);

	ret = tablet_get_mode();
	zassert_equal(ret, 1, "unexepcted tablet mode: %d", ret);

	ret = shell_execute_cmd(get_ec_shell(), "tabletmode reset");
	zassert_equal(ret, EC_SUCCESS, "unexepcted command return status: %d",
		      ret);

	tablet_set_mode(0, TABLET_TRIGGER_LID);

	ret = tablet_get_mode();
	zassert_equal(ret, 0, "unexepcted tablet mode: %d", ret);
}

/**
 * @brief TestPurpose: check the "too many arguments" case.
 */
ZTEST_USER(tabletmode, test_settabletmode_too_many_args)
{
	int ret;

	ret = shell_execute_cmd(get_ec_shell(),
				"tabletmode too many arguments");
	zassert_equal(ret, EC_ERROR_PARAM_COUNT,
		      "unexepcted command return status: %d", ret);
}

/**
 * @brief TestPurpose: check the "unknown argument" case.
 */
ZTEST_USER(tabletmode, test_settabletmode_unknown_arg)
{
	int ret;

	ret = shell_execute_cmd(get_ec_shell(), "tabletmode X");
	zassert_equal(ret, EC_ERROR_PARAM1,
		      "unexepcted command return status: %d", ret);
}

ZTEST_SUITE(tabletmode, drivers_predicate_post_main, NULL, tabletmode_before,
	    tabletmode_after, NULL);