blob: 5f5ce56c6f42750c91f670a4bf502678cf8a927e [file] [log] [blame]
Wei Wang61c2a332020-01-08 16:51:47 -08001/*
2 * Copyright (C) 2020 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#include <aidl/Gtest.h>
17#include <aidl/Vintf.h>
18
Wei Wang05003412021-04-01 10:44:29 -070019#include <aidl/android/hardware/power/BnPower.h>
20#include <aidl/android/hardware/power/BnPowerHintSession.h>
Dan Stozacca80272020-01-13 13:06:13 -080021#include <android-base/properties.h>
Wei Wang05003412021-04-01 10:44:29 -070022#include <android/binder_ibinder.h>
23#include <android/binder_manager.h>
24#include <android/binder_process.h>
Wei Wang9df909d2021-06-12 18:26:38 -070025#include <android/binder_status.h>
Wei Wang61c2a332020-01-08 16:51:47 -080026
Wei Wang05003412021-04-01 10:44:29 -070027#include <unistd.h>
Wei Wang61c2a332020-01-08 16:51:47 -080028
Wei Wang05003412021-04-01 10:44:29 -070029namespace aidl::android::hardware::power {
30namespace {
31
32using ::android::base::GetUintProperty;
Wei Wang61c2a332020-01-08 16:51:47 -080033using android::hardware::power::Boost;
34using android::hardware::power::IPower;
Wei Wang05003412021-04-01 10:44:29 -070035using android::hardware::power::IPowerHintSession;
Wei Wang61c2a332020-01-08 16:51:47 -080036using android::hardware::power::Mode;
Matt Buckley13843882022-09-15 22:32:56 +000037using android::hardware::power::SessionHint;
Wei Wang05003412021-04-01 10:44:29 -070038using android::hardware::power::WorkDuration;
Wei Wang61c2a332020-01-08 16:51:47 -080039
Wei Wang05003412021-04-01 10:44:29 -070040const std::vector<Boost> kBoosts{ndk::enum_range<Boost>().begin(), ndk::enum_range<Boost>().end()};
Wei Wang61c2a332020-01-08 16:51:47 -080041
Wei Wang05003412021-04-01 10:44:29 -070042const std::vector<Mode> kModes{ndk::enum_range<Mode>().begin(), ndk::enum_range<Mode>().end()};
Wei Wang61c2a332020-01-08 16:51:47 -080043
Matt Buckley13843882022-09-15 22:32:56 +000044const std::vector<SessionHint> kSessionHints{ndk::enum_range<SessionHint>().begin(),
45 ndk::enum_range<SessionHint>().end()};
46
Wei Wang61c2a332020-01-08 16:51:47 -080047const std::vector<Boost> kInvalidBoosts = {
48 static_cast<Boost>(static_cast<int32_t>(kBoosts.front()) - 1),
49 static_cast<Boost>(static_cast<int32_t>(kBoosts.back()) + 1),
50};
51
52const std::vector<Mode> kInvalidModes = {
53 static_cast<Mode>(static_cast<int32_t>(kModes.front()) - 1),
54 static_cast<Mode>(static_cast<int32_t>(kModes.back()) + 1),
55};
56
Matt Buckley13843882022-09-15 22:32:56 +000057const std::vector<SessionHint> kInvalidSessionHints = {
58 static_cast<SessionHint>(static_cast<int32_t>(kSessionHints.front()) - 1),
59 static_cast<SessionHint>(static_cast<int32_t>(kSessionHints.back()) + 1),
60};
61
Wei Wang05003412021-04-01 10:44:29 -070062class DurationWrapper : public WorkDuration {
63 public:
64 DurationWrapper(int64_t dur, int64_t time) {
65 durationNanos = dur;
66 timeStampNanos = time;
67 }
68};
69
70const std::vector<int32_t> kSelfTids = {
71 gettid(),
72};
73
74const std::vector<int32_t> kEmptyTids = {};
75
76const std::vector<WorkDuration> kNoDurations = {};
77
78const std::vector<WorkDuration> kDurationsWithZero = {
79 DurationWrapper(1000L, 1L),
80 DurationWrapper(0L, 2L),
81};
82
83const std::vector<WorkDuration> kDurationsWithNegative = {
84 DurationWrapper(1000L, 1L),
85 DurationWrapper(-1000L, 2L),
86};
87
88const std::vector<WorkDuration> kDurations = {
89 DurationWrapper(1L, 1L),
90 DurationWrapper(1000L, 2L),
91 DurationWrapper(1000000L, 3L),
92 DurationWrapper(1000000000L, 4L),
93};
94
Peiyong Lin3e0eb722022-10-17 19:55:20 +000095// DEVICEs launching with Android 11 MUST meet the requirements for the
96// target-level=5 compatibility_matrix file.
97const uint64_t kCompatibilityMatrix5ApiLevel = 30;
98
99// DEVICEs launching with Android 13 MUST meet the requirements for the
100// target-level=7 compatibility_matrix file.
101const uint64_t kCompatibilityMatrix7ApiLevel = 33;
102
Peiyong Linc7854592022-10-13 00:10:31 +0000103// DEVICEs launching with Android 14 MUST meet the requirements for the
104// target-level=8 compatibility_matrix file.
105const uint64_t kCompatibilityMatrix8ApiLevel = 34;
106
Wei Wang9df909d2021-06-12 18:26:38 -0700107inline bool isUnknownOrUnsupported(const ndk::ScopedAStatus& status) {
108 return status.getStatus() == STATUS_UNKNOWN_TRANSACTION ||
109 status.getExceptionCode() == EX_UNSUPPORTED_OPERATION;
110}
111
Wei Wang61c2a332020-01-08 16:51:47 -0800112class PowerAidl : public testing::TestWithParam<std::string> {
113 public:
114 virtual void SetUp() override {
Wei Wang05003412021-04-01 10:44:29 -0700115 AIBinder* binder = AServiceManager_waitForService(GetParam().c_str());
116 ASSERT_NE(binder, nullptr);
117 power = IPower::fromBinder(ndk::SpAIBinder(binder));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000118
119 mApiLevel = GetUintProperty<uint64_t>("ro.vendor.api_level", 0);
120 ASSERT_NE(mApiLevel, 0);
Wei Wang61c2a332020-01-08 16:51:47 -0800121 }
122
Wei Wang05003412021-04-01 10:44:29 -0700123 std::shared_ptr<IPower> power;
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000124 uint64_t mApiLevel;
Wei Wang61c2a332020-01-08 16:51:47 -0800125};
126
127TEST_P(PowerAidl, setMode) {
128 for (const auto& mode : kModes) {
129 ASSERT_TRUE(power->setMode(mode, true).isOk());
130 ASSERT_TRUE(power->setMode(mode, false).isOk());
131 }
132 for (const auto& mode : kInvalidModes) {
133 ASSERT_TRUE(power->setMode(mode, true).isOk());
134 ASSERT_TRUE(power->setMode(mode, false).isOk());
135 }
136}
137
138TEST_P(PowerAidl, isModeSupported) {
139 for (const auto& mode : kModes) {
140 bool supported;
141 ASSERT_TRUE(power->isModeSupported(mode, &supported).isOk());
142 }
143 for (const auto& mode : kInvalidModes) {
144 bool supported;
145 ASSERT_TRUE(power->isModeSupported(mode, &supported).isOk());
Dan Stozacca80272020-01-13 13:06:13 -0800146 // Should return false for values outside enum
Wei Wang61c2a332020-01-08 16:51:47 -0800147 ASSERT_FALSE(supported);
148 }
149}
150
151TEST_P(PowerAidl, setBoost) {
152 for (const auto& boost : kBoosts) {
153 ASSERT_TRUE(power->setBoost(boost, 0).isOk());
154 ASSERT_TRUE(power->setBoost(boost, 1000).isOk());
155 ASSERT_TRUE(power->setBoost(boost, -1).isOk());
156 }
157 for (const auto& boost : kInvalidBoosts) {
158 ASSERT_TRUE(power->setBoost(boost, 0).isOk());
159 ASSERT_TRUE(power->setBoost(boost, 1000).isOk());
160 ASSERT_TRUE(power->setBoost(boost, -1).isOk());
161 }
162}
163
164TEST_P(PowerAidl, isBoostSupported) {
165 for (const auto& boost : kBoosts) {
166 bool supported;
167 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk());
168 }
169 for (const auto& boost : kInvalidBoosts) {
170 bool supported;
171 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk());
Dan Stozacca80272020-01-13 13:06:13 -0800172 // Should return false for values outside enum
Wei Wang61c2a332020-01-08 16:51:47 -0800173 ASSERT_FALSE(supported);
174 }
175}
176
Wei Wang05003412021-04-01 10:44:29 -0700177TEST_P(PowerAidl, getHintSessionPreferredRate) {
178 int64_t rate = -1;
179 auto status = power->getHintSessionPreferredRate(&rate);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000180 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
Wei Wang9df909d2021-06-12 18:26:38 -0700181 EXPECT_TRUE(isUnknownOrUnsupported(status));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000182 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700183 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000184 ASSERT_TRUE(status.isOk());
Wei Wang05003412021-04-01 10:44:29 -0700185 // At least 1ms rate limit from HAL
186 ASSERT_GE(rate, 1000000);
187}
188
189TEST_P(PowerAidl, createAndCloseHintSession) {
190 std::shared_ptr<IPowerHintSession> session;
191 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000192 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
Wei Wang9df909d2021-06-12 18:26:38 -0700193 EXPECT_TRUE(isUnknownOrUnsupported(status));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000194 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700195 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000196 ASSERT_TRUE(status.isOk());
Wei Wang05003412021-04-01 10:44:29 -0700197 ASSERT_NE(nullptr, session);
198 ASSERT_TRUE(session->pause().isOk());
199 ASSERT_TRUE(session->resume().isOk());
200 // Test normal destroy operation
201 ASSERT_TRUE(session->close().isOk());
202 session.reset();
203}
Matt Buckley13843882022-09-15 22:32:56 +0000204
Wei Wang05003412021-04-01 10:44:29 -0700205TEST_P(PowerAidl, createHintSessionFailed) {
206 std::shared_ptr<IPowerHintSession> session;
207 auto status = power->createHintSession(getpid(), getuid(), kEmptyTids, 16666666L, &session);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000208
209 // Regardless of whether V2 and beyond is supported, the status is always not STATUS_OK.
Wei Wang05003412021-04-01 10:44:29 -0700210 ASSERT_FALSE(status.isOk());
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000211
212 // If device not launching with Android 13 and beyond, check whether it's supported,
213 // if not, skip the test.
214 if (mApiLevel < kCompatibilityMatrix7ApiLevel && isUnknownOrUnsupported(status)) {
215 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700216 }
Wei Wang05003412021-04-01 10:44:29 -0700217 ASSERT_EQ(EX_ILLEGAL_ARGUMENT, status.getExceptionCode());
218}
219
220TEST_P(PowerAidl, updateAndReportDurations) {
221 std::shared_ptr<IPowerHintSession> session;
222 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000223 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
Wei Wang9df909d2021-06-12 18:26:38 -0700224 EXPECT_TRUE(isUnknownOrUnsupported(status));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000225 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700226 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000227 ASSERT_TRUE(status.isOk());
Wei Wang05003412021-04-01 10:44:29 -0700228 ASSERT_NE(nullptr, session);
229
230 ASSERT_TRUE(session->updateTargetWorkDuration(16666667LL).isOk());
231 ASSERT_TRUE(session->reportActualWorkDuration(kDurations).isOk());
232}
233
Matt Buckley13843882022-09-15 22:32:56 +0000234TEST_P(PowerAidl, sendSessionHint) {
235 std::shared_ptr<IPowerHintSession> session;
236 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
237 if (!status.isOk()) {
238 EXPECT_TRUE(isUnknownOrUnsupported(status));
239 return;
240 }
241 for (const auto& sessionHint : kSessionHints) {
242 ASSERT_TRUE(session->sendHint(sessionHint).isOk());
243 }
244 for (const auto& sessionHint : kInvalidSessionHints) {
245 ASSERT_TRUE(session->sendHint(sessionHint).isOk());
246 }
247}
248
Peiyong Linc7854592022-10-13 00:10:31 +0000249TEST_P(PowerAidl, setThreads) {
250 std::shared_ptr<IPowerHintSession> session;
251 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
252 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
253 EXPECT_TRUE(isUnknownOrUnsupported(status));
254 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
255 }
256 ASSERT_TRUE(status.isOk());
257
258 if (mApiLevel < kCompatibilityMatrix8ApiLevel) {
259 GTEST_SKIP() << "DEVICE not launching with Android 14 and beyond.";
260 }
261
262 status = session->setThreads(kEmptyTids);
263 ASSERT_FALSE(status.isOk());
264 ASSERT_EQ(EX_ILLEGAL_ARGUMENT, status.getExceptionCode());
265
266 status = session->setThreads(kSelfTids);
267 ASSERT_TRUE(status.isOk());
268}
269
Dan Stozacca80272020-01-13 13:06:13 -0800270// FIXED_PERFORMANCE mode is required for all devices which ship on Android 11
271// or later
272TEST_P(PowerAidl, hasFixedPerformance) {
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000273 if (mApiLevel < kCompatibilityMatrix5ApiLevel) {
274 GTEST_SKIP() << "FIXED_PERFORMANCE mode is only required for all devices launching Android "
275 "11 or later.";
Dan Stozacca80272020-01-13 13:06:13 -0800276 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000277 bool supported;
278 ASSERT_TRUE(power->isModeSupported(Mode::FIXED_PERFORMANCE, &supported).isOk());
279 ASSERT_TRUE(supported);
Dan Stozacca80272020-01-13 13:06:13 -0800280}
281
Dan Shiba4d5322020-07-28 13:09:30 -0700282GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(PowerAidl);
Wei Wang61c2a332020-01-08 16:51:47 -0800283INSTANTIATE_TEST_SUITE_P(Power, PowerAidl,
Wei Wang05003412021-04-01 10:44:29 -0700284 testing::ValuesIn(::android::getAidlHalInstanceNames(IPower::descriptor)),
285 ::android::PrintInstanceNameToString);
286
287} // namespace
Wei Wang61c2a332020-01-08 16:51:47 -0800288
289int main(int argc, char** argv) {
290 ::testing::InitGoogleTest(&argc, argv);
Wei Wang05003412021-04-01 10:44:29 -0700291 ABinderProcess_setThreadPoolMaxThreadCount(1);
292 ABinderProcess_startThreadPool();
Wei Wang61c2a332020-01-08 16:51:47 -0800293 return RUN_ALL_TESTS();
294}
Wei Wang05003412021-04-01 10:44:29 -0700295
296} // namespace aidl::android::hardware::power