1 /* 2 * Copyright (C) 2023 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 #pragma once 18 19 #include <gmock/gmock.h> 20 #include <scheduler/Time.h> 21 22 #pragma clang diagnostic push 23 #pragma clang diagnostic ignored "-Wconversion" 24 #include <powermanager/PowerHalController.h> 25 #pragma clang diagnostic pop 26 27 namespace android { 28 namespace hardware { 29 namespace power { 30 class IPower; 31 } 32 } // namespace hardware 33 } // namespace android 34 35 namespace android::Hwc2::mock { 36 37 using android::power::HalResult; 38 39 class MockPowerHalController : public power::PowerHalController { 40 public: 41 MockPowerHalController(); 42 ~MockPowerHalController() override; 43 MOCK_METHOD(void, init, (), (override)); 44 MOCK_METHOD(HalResult<void>, setBoost, (aidl::android::hardware::power::Boost, int32_t), 45 (override)); 46 MOCK_METHOD(HalResult<void>, setMode, (aidl::android::hardware::power::Mode, bool), (override)); 47 MOCK_METHOD(HalResult<std::shared_ptr<android::power::PowerHintSessionWrapper>>, 48 createHintSession, (int32_t, int32_t, const std::vector<int32_t>&, int64_t), 49 (override)); 50 MOCK_METHOD(HalResult<std::shared_ptr<android::power::PowerHintSessionWrapper>>, 51 createHintSessionWithConfig, 52 (int32_t tgid, int32_t uid, const std::vector<int32_t>& threadIds, 53 int64_t durationNanos, aidl::android::hardware::power::SessionTag tag, 54 aidl::android::hardware::power::SessionConfig* config), 55 (override)); 56 MOCK_METHOD(HalResult<int64_t>, getHintSessionPreferredRate, (), (override)); 57 MOCK_METHOD(HalResult<aidl::android::hardware::power::ChannelConfig>, getSessionChannel, 58 (int tgid, int uid), (override)); 59 MOCK_METHOD(HalResult<void>, closeSessionChannel, (int tgid, int uid), (override)); 60 }; 61 62 } // namespace android::Hwc2::mock