summaryrefslogtreecommitdiff
path: root/zephyr/test/ap_power/src/host_command.c
blob: f0b3b0d732ecdae69ab195886ba4ad055b18fab2 (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
/* 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 "ec_commands.h"
#include "host_command.h"
#include "test_state.h"

#include <zephyr/ztest.h>

ZTEST(host_cmd, test_hibernate_get)
{
	struct ec_response_hibernation_delay response;
	struct ec_params_hibernation_delay params = {
		.seconds = 0,
	};

	struct host_cmd_handler_args args = BUILD_HOST_COMMAND(
		EC_CMD_HIBERNATION_DELAY, 0, response, params);

	zassert_ok(host_command_process(&args));
	params.seconds = 123;
	zassert_ok(host_command_process(&args));
	zassert_equal(123, response.hibernate_delay, NULL);
}

ZTEST_SUITE(host_cmd, ap_power_predicate_post_main, NULL, NULL, NULL, NULL);