blob: 3cf2adca6fbff8602c6b3d97c342d117b956d8dd [file] [log] [blame]
Michael Wright795990c2018-06-21 02:42:31 +01001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "power_hidl_hal_test"
18#include <android-base/logging.h>
19#include <android/hardware/power/1.3/IPower.h>
Dan Shi6ac30ad2019-10-17 16:25:51 -070020#include <gtest/gtest.h>
21#include <hidl/GtestPrinter.h>
22#include <hidl/ServiceManagement.h>
Michael Wright795990c2018-06-21 02:42:31 +010023
24using ::android::sp;
25using ::android::hardware::hidl_vec;
26using ::android::hardware::Return;
27using ::android::hardware::power::V1_3::IPower;
28using ::android::hardware::power::V1_3::PowerHint;
29
Dan Shi6ac30ad2019-10-17 16:25:51 -070030class PowerHidlTest : public testing::TestWithParam<std::string> {
Michael Wright795990c2018-06-21 02:42:31 +010031 public:
32 virtual void SetUp() override {
Dan Shi6ac30ad2019-10-17 16:25:51 -070033 power = IPower::getService(GetParam());
Michael Wright795990c2018-06-21 02:42:31 +010034 ASSERT_NE(power, nullptr);
35 }
36
37 sp<IPower> power;
38};
39
Dan Shi6ac30ad2019-10-17 16:25:51 -070040TEST_P(PowerHidlTest, PowerHintAsync_1_3) {
Michael Wright795990c2018-06-21 02:42:31 +010041 ASSERT_TRUE(power->powerHintAsync_1_3(PowerHint::EXPENSIVE_RENDERING, 0).isOk());
42}
43
Dan Shi6ac30ad2019-10-17 16:25:51 -070044INSTANTIATE_TEST_SUITE_P(
45 PerInstance, PowerHidlTest,
46 testing::ValuesIn(android::hardware::getAllHalInstanceNames(IPower::descriptor)),
47 android::hardware::PrintInstanceNameToString);