summaryrefslogtreecommitdiff
path: root/services/powermanager/tests/IThermalManagerTest.cpp
blob: b62be5f5d4015ccb62542816f328070d3295d40a (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
 * Copyright (C) 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#define LOG_TAG "ThermalManagerTest"
//#define LOG_NDEBUG 0

#include <thread>

#include <android/os/BnThermalStatusListener.h>
#include <android/os/IThermalService.h>
#include <binder/IPCThreadState.h>
#include <binder/IServiceManager.h>
#include <binder/Parcel.h>
#include <condition_variable>
#include <gtest/gtest.h>
#include <powermanager/PowerManager.h>
#include <utils/Log.h>

using namespace android;
using namespace android::os;
using namespace std::chrono_literals;

class IThermalServiceTest : public testing::Test,
                            public BnThermalStatusListener{
    public:
        IThermalServiceTest();
        void setThermalOverride(int level);
        virtual binder::Status onStatusChange(int status) override;
        int getStatusFromService();
        void SetUp() override;
        void TearDown() override;
    protected:
        sp<IThermalService> mThermalSvc;
        std::condition_variable mCondition;
        int mListenerStatus;
        int mServiceStatus;
        std::mutex mMutex;
};

IThermalServiceTest::IThermalServiceTest()
 : mListenerStatus(0),
   mServiceStatus(0) {
}

void IThermalServiceTest::setThermalOverride(int level) {
    std::string cmdStr = "cmd thermalservice override-status " + std::to_string(level);
    system(cmdStr.c_str());
}

binder::Status IThermalServiceTest::onStatusChange(int status) {
    std::unique_lock<std::mutex> lock(mMutex);
    mListenerStatus = status;
    ALOGI("IThermalServiceTest::notifyListener %d", mListenerStatus);
    mCondition.notify_all();
    return binder::Status::ok();
}

int IThermalServiceTest::getStatusFromService() {
    int status;
    binder::Status ret = mThermalSvc->getCurrentThermalStatus(&status);
    if (ret.isOk()) {
        return status;
    } else {
        return BAD_VALUE;
    }
}

void IThermalServiceTest::SetUp() {
    setThermalOverride(0);
    // use checkService() to avoid blocking if thermal service is not up yet
    sp<IBinder> binder =
        defaultServiceManager()->checkService(String16("thermalservice"));
    EXPECT_NE(binder, nullptr);
    mThermalSvc = interface_cast<IThermalService>(binder);
    EXPECT_NE(mThermalSvc, nullptr);
    // Lock mutex for operation, so listener will only be processed after wait_for is called
    std::unique_lock<std::mutex> lock(mMutex);
    bool success = false;
    binder::Status ret = mThermalSvc->registerThermalStatusListener(this, &success);
    // Check the result
    ASSERT_TRUE(success);
    ASSERT_TRUE(ret.isOk());
    // Wait for listener called after registration, shouldn't timeout
    EXPECT_NE(mCondition.wait_for(lock, 1s), std::cv_status::timeout);
}

void IThermalServiceTest::TearDown() {
    bool success = false;
    binder::Status ret = mThermalSvc->unregisterThermalStatusListener(this, &success);
    ASSERT_TRUE(success);
    ASSERT_TRUE(ret.isOk());
}

class IThermalListenerTest : public IThermalServiceTest, public testing::WithParamInterface<int32_t> {
  public:
    static auto PrintParam(const testing::TestParamInfo<ParamType> &info) {
        return std::to_string(info.param);
    }
};

TEST_P(IThermalListenerTest, TestListener) {
    int level = GetParam();
    // Lock mutex for operation, so listener will only be processed after wait_for is called
    std::unique_lock<std::mutex> lock(mMutex);
    // Set the override thermal status
    setThermalOverride(level);
    // Wait for listener called, shouldn't timeout
    EXPECT_NE(mCondition.wait_for(lock, 1s), std::cv_status::timeout);
    // Check the result
    EXPECT_EQ(level, mListenerStatus);
    ALOGI("Thermal listener status %d, expecting %d", mListenerStatus, level);
}

INSTANTIATE_TEST_SUITE_P(TestListenerLevels, IThermalListenerTest, testing::Range(
        static_cast<int>(ThermalStatus::THERMAL_STATUS_LIGHT),
        static_cast<int>(ThermalStatus::THERMAL_STATUS_SHUTDOWN)),
        IThermalListenerTest::PrintParam);

class IThermalLevelTest : public IThermalServiceTest, public testing::WithParamInterface<int32_t> {
  public:
    static auto PrintParam(const testing::TestParamInfo<ParamType> &info) {
        return std::to_string(info.param);
    }
};

TEST_P(IThermalLevelTest, TestGetStatusLevel) {
    int level = GetParam();
    setThermalOverride(level);
    mServiceStatus = getStatusFromService();
    EXPECT_EQ(level, mServiceStatus);
}

INSTANTIATE_TEST_SUITE_P(TestStatusLevels, IThermalLevelTest, testing::Range(
        static_cast<int>(ThermalStatus::THERMAL_STATUS_NONE),
        static_cast<int>(ThermalStatus::THERMAL_STATUS_SHUTDOWN)),
        IThermalLevelTest::PrintParam);

int main(int argc, char **argv) {
    std::unique_ptr<std::thread> binderLoop;
    binderLoop = std::make_unique<std::thread>(
            [&] { IPCThreadState::self()->joinThreadPool(true); });

    ::testing::InitGoogleTest(&argc, argv);
    int status = RUN_ALL_TESTS();
    ALOGV("Test result = %d\n", status);

    return status;
}