blob: 907cf00e960c0d954807ca4689ebe1f465e92040 [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
Wei Wang05003412021-04-01 10:44:29 -070076const std::vector<WorkDuration> kDurationsWithZero = {
77 DurationWrapper(1000L, 1L),
78 DurationWrapper(0L, 2L),
79};
80
81const std::vector<WorkDuration> kDurationsWithNegative = {
82 DurationWrapper(1000L, 1L),
83 DurationWrapper(-1000L, 2L),
84};
85
86const std::vector<WorkDuration> kDurations = {
87 DurationWrapper(1L, 1L),
88 DurationWrapper(1000L, 2L),
89 DurationWrapper(1000000L, 3L),
90 DurationWrapper(1000000000L, 4L),
91};
92
Peiyong Lin3e0eb722022-10-17 19:55:20 +000093// DEVICEs launching with Android 11 MUST meet the requirements for the
94// target-level=5 compatibility_matrix file.
95const uint64_t kCompatibilityMatrix5ApiLevel = 30;
96
97// DEVICEs launching with Android 13 MUST meet the requirements for the
98// target-level=7 compatibility_matrix file.
99const uint64_t kCompatibilityMatrix7ApiLevel = 33;
100
Peiyong Linc7854592022-10-13 00:10:31 +0000101// DEVICEs launching with Android 14 MUST meet the requirements for the
102// target-level=8 compatibility_matrix file.
103const uint64_t kCompatibilityMatrix8ApiLevel = 34;
104
Wei Wang9df909d2021-06-12 18:26:38 -0700105inline bool isUnknownOrUnsupported(const ndk::ScopedAStatus& status) {
106 return status.getStatus() == STATUS_UNKNOWN_TRANSACTION ||
107 status.getExceptionCode() == EX_UNSUPPORTED_OPERATION;
108}
109
Wei Wang61c2a332020-01-08 16:51:47 -0800110class PowerAidl : public testing::TestWithParam<std::string> {
111 public:
112 virtual void SetUp() override {
Wei Wang05003412021-04-01 10:44:29 -0700113 AIBinder* binder = AServiceManager_waitForService(GetParam().c_str());
114 ASSERT_NE(binder, nullptr);
115 power = IPower::fromBinder(ndk::SpAIBinder(binder));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000116
117 mApiLevel = GetUintProperty<uint64_t>("ro.vendor.api_level", 0);
118 ASSERT_NE(mApiLevel, 0);
Wei Wang61c2a332020-01-08 16:51:47 -0800119 }
120
Wei Wang05003412021-04-01 10:44:29 -0700121 std::shared_ptr<IPower> power;
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000122 uint64_t mApiLevel;
Wei Wang61c2a332020-01-08 16:51:47 -0800123};
124
125TEST_P(PowerAidl, setMode) {
126 for (const auto& mode : kModes) {
127 ASSERT_TRUE(power->setMode(mode, true).isOk());
128 ASSERT_TRUE(power->setMode(mode, false).isOk());
129 }
130 for (const auto& mode : kInvalidModes) {
131 ASSERT_TRUE(power->setMode(mode, true).isOk());
132 ASSERT_TRUE(power->setMode(mode, false).isOk());
133 }
134}
135
136TEST_P(PowerAidl, isModeSupported) {
137 for (const auto& mode : kModes) {
138 bool supported;
139 ASSERT_TRUE(power->isModeSupported(mode, &supported).isOk());
140 }
141 for (const auto& mode : kInvalidModes) {
142 bool supported;
143 ASSERT_TRUE(power->isModeSupported(mode, &supported).isOk());
Dan Stozacca80272020-01-13 13:06:13 -0800144 // Should return false for values outside enum
Wei Wang61c2a332020-01-08 16:51:47 -0800145 ASSERT_FALSE(supported);
146 }
147}
148
149TEST_P(PowerAidl, setBoost) {
150 for (const auto& boost : kBoosts) {
151 ASSERT_TRUE(power->setBoost(boost, 0).isOk());
152 ASSERT_TRUE(power->setBoost(boost, 1000).isOk());
153 ASSERT_TRUE(power->setBoost(boost, -1).isOk());
154 }
155 for (const auto& boost : kInvalidBoosts) {
156 ASSERT_TRUE(power->setBoost(boost, 0).isOk());
157 ASSERT_TRUE(power->setBoost(boost, 1000).isOk());
158 ASSERT_TRUE(power->setBoost(boost, -1).isOk());
159 }
160}
161
162TEST_P(PowerAidl, isBoostSupported) {
163 for (const auto& boost : kBoosts) {
164 bool supported;
165 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk());
166 }
167 for (const auto& boost : kInvalidBoosts) {
168 bool supported;
169 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk());
Dan Stozacca80272020-01-13 13:06:13 -0800170 // Should return false for values outside enum
Wei Wang61c2a332020-01-08 16:51:47 -0800171 ASSERT_FALSE(supported);
172 }
173}
174
Wei Wang05003412021-04-01 10:44:29 -0700175TEST_P(PowerAidl, getHintSessionPreferredRate) {
176 int64_t rate = -1;
177 auto status = power->getHintSessionPreferredRate(&rate);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000178 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
Wei Wang9df909d2021-06-12 18:26:38 -0700179 EXPECT_TRUE(isUnknownOrUnsupported(status));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000180 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700181 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000182 ASSERT_TRUE(status.isOk());
Wei Wang05003412021-04-01 10:44:29 -0700183 // At least 1ms rate limit from HAL
184 ASSERT_GE(rate, 1000000);
185}
186
187TEST_P(PowerAidl, createAndCloseHintSession) {
188 std::shared_ptr<IPowerHintSession> session;
189 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000190 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
Wei Wang9df909d2021-06-12 18:26:38 -0700191 EXPECT_TRUE(isUnknownOrUnsupported(status));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000192 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700193 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000194 ASSERT_TRUE(status.isOk());
Wei Wang05003412021-04-01 10:44:29 -0700195 ASSERT_NE(nullptr, session);
196 ASSERT_TRUE(session->pause().isOk());
197 ASSERT_TRUE(session->resume().isOk());
198 // Test normal destroy operation
199 ASSERT_TRUE(session->close().isOk());
200 session.reset();
201}
Matt Buckley13843882022-09-15 22:32:56 +0000202
Wei Wang05003412021-04-01 10:44:29 -0700203TEST_P(PowerAidl, createHintSessionFailed) {
204 std::shared_ptr<IPowerHintSession> session;
205 auto status = power->createHintSession(getpid(), getuid(), kEmptyTids, 16666666L, &session);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000206
207 // Regardless of whether V2 and beyond is supported, the status is always not STATUS_OK.
Wei Wang05003412021-04-01 10:44:29 -0700208 ASSERT_FALSE(status.isOk());
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000209
210 // If device not launching with Android 13 and beyond, check whether it's supported,
211 // if not, skip the test.
212 if (mApiLevel < kCompatibilityMatrix7ApiLevel && isUnknownOrUnsupported(status)) {
213 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700214 }
Wei Wang05003412021-04-01 10:44:29 -0700215 ASSERT_EQ(EX_ILLEGAL_ARGUMENT, status.getExceptionCode());
216}
217
218TEST_P(PowerAidl, updateAndReportDurations) {
219 std::shared_ptr<IPowerHintSession> session;
220 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000221 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
Wei Wang9df909d2021-06-12 18:26:38 -0700222 EXPECT_TRUE(isUnknownOrUnsupported(status));
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000223 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
Wei Wang05003412021-04-01 10:44:29 -0700224 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000225 ASSERT_TRUE(status.isOk());
Wei Wang05003412021-04-01 10:44:29 -0700226 ASSERT_NE(nullptr, session);
227
228 ASSERT_TRUE(session->updateTargetWorkDuration(16666667LL).isOk());
229 ASSERT_TRUE(session->reportActualWorkDuration(kDurations).isOk());
230}
231
Matt Buckley13843882022-09-15 22:32:56 +0000232TEST_P(PowerAidl, sendSessionHint) {
233 std::shared_ptr<IPowerHintSession> session;
234 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
235 if (!status.isOk()) {
236 EXPECT_TRUE(isUnknownOrUnsupported(status));
237 return;
238 }
239 for (const auto& sessionHint : kSessionHints) {
240 ASSERT_TRUE(session->sendHint(sessionHint).isOk());
241 }
242 for (const auto& sessionHint : kInvalidSessionHints) {
243 ASSERT_TRUE(session->sendHint(sessionHint).isOk());
244 }
245}
246
Peiyong Linc7854592022-10-13 00:10:31 +0000247TEST_P(PowerAidl, setThreads) {
248 std::shared_ptr<IPowerHintSession> session;
249 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session);
250 if (mApiLevel < kCompatibilityMatrix7ApiLevel && !status.isOk()) {
251 EXPECT_TRUE(isUnknownOrUnsupported(status));
252 GTEST_SKIP() << "DEVICE not launching with Android 13 and beyond.";
253 }
254 ASSERT_TRUE(status.isOk());
255
Peiyong Lin9fb75532023-06-14 18:12:39 +0000256 status = session->setThreads(kEmptyTids);
257 if (mApiLevel < kCompatibilityMatrix8ApiLevel && isUnknownOrUnsupported(status)) {
Peiyong Linc7854592022-10-13 00:10:31 +0000258 GTEST_SKIP() << "DEVICE not launching with Android 14 and beyond.";
259 }
Peiyong Linc7854592022-10-13 00:10:31 +0000260 ASSERT_FALSE(status.isOk());
261 ASSERT_EQ(EX_ILLEGAL_ARGUMENT, status.getExceptionCode());
262
263 status = session->setThreads(kSelfTids);
264 ASSERT_TRUE(status.isOk());
265}
266
Dan Stozacca80272020-01-13 13:06:13 -0800267// FIXED_PERFORMANCE mode is required for all devices which ship on Android 11
268// or later
269TEST_P(PowerAidl, hasFixedPerformance) {
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000270 if (mApiLevel < kCompatibilityMatrix5ApiLevel) {
271 GTEST_SKIP() << "FIXED_PERFORMANCE mode is only required for all devices launching Android "
272 "11 or later.";
Dan Stozacca80272020-01-13 13:06:13 -0800273 }
Peiyong Lin3e0eb722022-10-17 19:55:20 +0000274 bool supported;
275 ASSERT_TRUE(power->isModeSupported(Mode::FIXED_PERFORMANCE, &supported).isOk());
276 ASSERT_TRUE(supported);
Dan Stozacca80272020-01-13 13:06:13 -0800277}
278
Dan Shiba4d5322020-07-28 13:09:30 -0700279GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(PowerAidl);
Wei Wang61c2a332020-01-08 16:51:47 -0800280INSTANTIATE_TEST_SUITE_P(Power, PowerAidl,
Wei Wang05003412021-04-01 10:44:29 -0700281 testing::ValuesIn(::android::getAidlHalInstanceNames(IPower::descriptor)),
282 ::android::PrintInstanceNameToString);
283
284} // namespace
Xiang Wangdd0edc62023-02-08 16:47:06 -0800285} // namespace aidl::android::hardware::power
Wei Wang61c2a332020-01-08 16:51:47 -0800286
287int main(int argc, char** argv) {
288 ::testing::InitGoogleTest(&argc, argv);
Wei Wang05003412021-04-01 10:44:29 -0700289 ABinderProcess_setThreadPoolMaxThreadCount(1);
290 ABinderProcess_startThreadPool();
Wei Wang61c2a332020-01-08 16:51:47 -0800291 return RUN_ALL_TESTS();
292}