• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include <display_manager_lite.h>
30 
31 #include "power_mgr_client.h"
32 #include "power_mgr_service.h"
33 #include "power_state_callback_stub.h"
34 
35 namespace OHOS {
36 namespace PowerMgr {
37 constexpr uint32_t THREE = 3;
38 constexpr int64_t TIME = -3;
39 constexpr int64_t CALLTIMEMS = 1;
40 constexpr pid_t PID = 1;
41 constexpr uint32_t MAXTYPE = 77;
42 constexpr int64_t TIMEOUT = 7;
43 #ifdef HAS_SENSORS_SENSOR_PART
44 constexpr int64_t SUSCALLTIMEMS = 3;
45 constexpr int SLEEP_WAIT_TIME_S = 6;
46 constexpr int SLEEP_WAIT_TIME_MS = 500;
47 #endif
48 
49 class NativePowerStateMachineTest : public testing::Test {
50 public:
51     static void SetUpTestCase();
TearDownTestCase()52     static void TearDownTestCase() {}
SetUp()53     void SetUp() {}
TearDown()54     void TearDown() {}
55 };
56 
57 class PowerStateTest1Callback : public PowerStateCallbackStub {
58 public:
PowerStateTest1Callback()59     PowerStateTest1Callback() {};
~PowerStateTest1Callback()60     virtual ~PowerStateTest1Callback() {};
61     virtual void OnPowerStateChanged(PowerState state) override;
62     virtual void OnAsyncPowerStateChanged(PowerState state) override;
63 };
64 
65 class PowerStateTest2Callback : public PowerStateCallbackStub {
66 public:
PowerStateTest2Callback()67     PowerStateTest2Callback() {};
~PowerStateTest2Callback()68     virtual ~PowerStateTest2Callback() {};
69     virtual void OnPowerStateChanged(PowerState state) override;
70     virtual void OnAsyncPowerStateChanged(PowerState state) override;
71 };
72 } // namespace PowerMgr
73 } // namespace OHOS
74 #endif // NATIVE_POWERMGR_STATE_MACHINE_TEST_H
75