1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef NATIVE_POWERMGR_STATE_MACHINE_TEST_H 17 #define NATIVE_POWERMGR_STATE_MACHINE_TEST_H 18 19 #ifdef POWER_GTEST 20 #define private public 21 #define protected public 22 #endif 23 24 #include <map> 25 #include <memory> 26 #include <stdlib.h> 27 28 #include <gtest/gtest.h> 29 30 #include "power_mgr_client.h" 31 #include "power_mgr_service.h" 32 #include "power_state_callback_stub.h" 33 34 namespace OHOS { 35 namespace PowerMgr { 36 constexpr uint32_t THREE = 3; 37 constexpr int64_t TIME = -3; 38 constexpr int64_t CALLTIMEMS = 1; 39 constexpr pid_t PID = 1; 40 constexpr uint32_t MAXTYPE = 77; 41 constexpr int64_t TIMEOUT = 7; 42 #ifdef HAS_SENSORS_SENSOR_PART 43 constexpr int64_t SUSCALLTIMEMS = 3; 44 constexpr int SLEEP_WAIT_TIME_S = 6; 45 constexpr int SLEEP_WAIT_TIME_MS = 500; 46 #endif 47 48 class NativePowerStateMachineTest : public testing::Test { 49 public: 50 static void SetUpTestCase(); TearDownTestCase()51 static void TearDownTestCase() {} SetUp()52 void SetUp() {} TearDown()53 void TearDown() {} 54 }; 55 56 class PowerStateTest1Callback : public PowerStateCallbackStub { 57 public: PowerStateTest1Callback()58 PowerStateTest1Callback() {}; ~PowerStateTest1Callback()59 virtual ~PowerStateTest1Callback() {}; 60 virtual void OnPowerStateChanged(PowerState state) override; 61 virtual void OnAsyncPowerStateChanged(PowerState state) override; 62 }; 63 64 class PowerStateTest2Callback : public PowerStateCallbackStub { 65 public: PowerStateTest2Callback()66 PowerStateTest2Callback() {}; ~PowerStateTest2Callback()67 virtual ~PowerStateTest2Callback() {}; 68 virtual void OnPowerStateChanged(PowerState state) override; 69 virtual void OnAsyncPowerStateChanged(PowerState state) override; 70 }; 71 } // namespace PowerMgr 72 } // namespace OHOS 73 #endif // NATIVE_POWERMGR_STATE_MACHINE_TEST_H 74