/* * 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 "PowerHalWrapperAidlTest" #include #include #include #include #include #include #include #include #include #include using aidl::android::hardware::power::Boost; using aidl::android::hardware::power::ChannelConfig; using aidl::android::hardware::power::IPower; using aidl::android::hardware::power::IPowerHintSession; using aidl::android::hardware::power::Mode; using aidl::android::hardware::power::SessionConfig; using aidl::android::hardware::power::SessionTag; using android::binder::Status; using namespace android; using namespace android::power; using namespace std::chrono_literals; using namespace testing; // ------------------------------------------------------------------------------------------------- class MockIPower : public IPower { public: MockIPower() = default; MOCK_METHOD(ndk::ScopedAStatus, isBoostSupported, (Boost boost, bool* ret), (override)); MOCK_METHOD(ndk::ScopedAStatus, setBoost, (Boost boost, int32_t durationMs), (override)); MOCK_METHOD(ndk::ScopedAStatus, isModeSupported, (Mode mode, bool* ret), (override)); MOCK_METHOD(ndk::ScopedAStatus, setMode, (Mode mode, bool enabled), (override)); MOCK_METHOD(ndk::ScopedAStatus, createHintSession, (int32_t tgid, int32_t uid, const std::vector& threadIds, int64_t durationNanos, std::shared_ptr* session), (override)); MOCK_METHOD(ndk::ScopedAStatus, createHintSessionWithConfig, (int32_t tgid, int32_t uid, const std::vector& threadIds, int64_t durationNanos, SessionTag tag, SessionConfig* config, std::shared_ptr* _aidl_return), (override)); MOCK_METHOD(ndk::ScopedAStatus, getSessionChannel, (int32_t tgid, int32_t uid, ChannelConfig* _aidl_return), (override)); MOCK_METHOD(ndk::ScopedAStatus, closeSessionChannel, (int32_t tgid, int32_t uid), (override)); MOCK_METHOD(ndk::ScopedAStatus, getHintSessionPreferredRate, (int64_t * rate), (override)); MOCK_METHOD(ndk::ScopedAStatus, getInterfaceVersion, (int32_t * version), (override)); MOCK_METHOD(ndk::ScopedAStatus, getInterfaceHash, (std::string * hash), (override)); MOCK_METHOD(ndk::SpAIBinder, asBinder, (), (override)); MOCK_METHOD(bool, isRemote, (), (override)); }; // ------------------------------------------------------------------------------------------------- class PowerHalWrapperAidlTest : public Test { public: void SetUp() override; protected: std::unique_ptr mWrapper = nullptr; std::shared_ptr> mMockHal = nullptr; }; // ------------------------------------------------------------------------------------------------- void PowerHalWrapperAidlTest::SetUp() { mMockHal = ndk::SharedRefBase::make>(); EXPECT_CALL(*mMockHal, getInterfaceVersion(_)).WillRepeatedly(([](int32_t* ret) { *ret = 5; return ndk::ScopedAStatus::ok(); })); mWrapper = std::make_unique(mMockHal); ASSERT_NE(nullptr, mWrapper); } // ------------------------------------------------------------------------------------------------- TEST_F(PowerHalWrapperAidlTest, TestSetBoostSuccessful) { { InSequence seq; EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::DISPLAY_UPDATE_IMMINENT), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(true), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); EXPECT_CALL(*mMockHal.get(), setBoost(Eq(Boost::DISPLAY_UPDATE_IMMINENT), Eq(100))) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); } auto result = mWrapper->setBoost(Boost::DISPLAY_UPDATE_IMMINENT, 100); ASSERT_TRUE(result.isOk()); } TEST_F(PowerHalWrapperAidlTest, TestSetBoostFailed) { { InSequence seq; EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::INTERACTION), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(true), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); EXPECT_CALL(*mMockHal.get(), setBoost(Eq(Boost::INTERACTION), Eq(100))) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::fromExceptionCode(-1)))); EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::DISPLAY_UPDATE_IMMINENT), _)) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::fromExceptionCode(-1)))); } auto result = mWrapper->setBoost(Boost::INTERACTION, 100); ASSERT_TRUE(result.isFailed()); result = mWrapper->setBoost(Boost::DISPLAY_UPDATE_IMMINENT, 1000); ASSERT_TRUE(result.isFailed()); } TEST_F(PowerHalWrapperAidlTest, TestSetBoostUnsupported) { EXPECT_CALL(*mMockHal.get(), isBoostSupported(_, _)) .Times(Exactly(2)) .WillRepeatedly([](Boost, bool* ret) { *ret = false; return ndk::ScopedAStatus::ok(); }); auto result = mWrapper->setBoost(Boost::INTERACTION, 1000); ASSERT_TRUE(result.isUnsupported()); result = mWrapper->setBoost(Boost::CAMERA_SHOT, 10); ASSERT_TRUE(result.isUnsupported()); } TEST_F(PowerHalWrapperAidlTest, TestSetBoostMultiThreadCheckSupportedOnlyOnce) { { InSequence seq; EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::INTERACTION), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(true), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); auto& exp = EXPECT_CALL(*mMockHal.get(), setBoost(Eq(Boost::INTERACTION), Eq(100))) .Times(Exactly(10)); for (int i = 0; i < 10; i++) { exp.WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); } } std::vector threads; for (int i = 0; i < 10; i++) { threads.push_back(std::thread([&]() { auto result = mWrapper->setBoost(Boost::INTERACTION, 100); ASSERT_TRUE(result.isOk()); })); } std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); }); } TEST_F(PowerHalWrapperAidlTest, TestSetModeSuccessful) { { InSequence seq; EXPECT_CALL(*mMockHal.get(), isModeSupported(Eq(Mode::DISPLAY_INACTIVE), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(true), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); EXPECT_CALL(*mMockHal.get(), setMode(Eq(Mode::DISPLAY_INACTIVE), Eq(false))) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); } auto result = mWrapper->setMode(Mode::DISPLAY_INACTIVE, false); ASSERT_TRUE(result.isOk()); } TEST_F(PowerHalWrapperAidlTest, TestSetModeFailed) { { InSequence seq; EXPECT_CALL(*mMockHal.get(), isModeSupported(Eq(Mode::LAUNCH), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(true), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); EXPECT_CALL(*mMockHal.get(), setMode(Eq(Mode::LAUNCH), Eq(true))) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::fromExceptionCode(-1)))); EXPECT_CALL(*mMockHal.get(), isModeSupported(Eq(Mode::DISPLAY_INACTIVE), _)) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::fromExceptionCode(-1)))); } auto result = mWrapper->setMode(Mode::LAUNCH, true); ASSERT_TRUE(result.isFailed()); result = mWrapper->setMode(Mode::DISPLAY_INACTIVE, false); ASSERT_TRUE(result.isFailed()); } TEST_F(PowerHalWrapperAidlTest, TestSetModeUnsupported) { EXPECT_CALL(*mMockHal.get(), isModeSupported(Eq(Mode::LAUNCH), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(false), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); auto result = mWrapper->setMode(Mode::LAUNCH, true); ASSERT_TRUE(result.isUnsupported()); EXPECT_CALL(*mMockHal.get(), isModeSupported(Eq(Mode::CAMERA_STREAMING_HIGH), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(false), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); result = mWrapper->setMode(Mode::CAMERA_STREAMING_HIGH, true); ASSERT_TRUE(result.isUnsupported()); } TEST_F(PowerHalWrapperAidlTest, TestSetModeMultiThreadCheckSupportedOnlyOnce) { { InSequence seq; EXPECT_CALL(*mMockHal.get(), isModeSupported(Eq(Mode::LAUNCH), _)) .Times(Exactly(1)) .WillOnce(DoAll(SetArgPointee<1>(true), Return(testing::ByMove(ndk::ScopedAStatus::ok())))); auto& exp = EXPECT_CALL(*mMockHal.get(), setMode(Eq(Mode::LAUNCH), Eq(false))) .Times(Exactly(10)); for (int i = 0; i < 10; i++) { exp.WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); } } std::vector threads; for (int i = 0; i < 10; i++) { threads.push_back(std::thread([&]() { auto result = mWrapper->setMode(Mode::LAUNCH, false); ASSERT_TRUE(result.isOk()); })); } std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); }); } TEST_F(PowerHalWrapperAidlTest, TestCreateHintSessionSuccessful) { std::vector threadIds{gettid()}; int32_t tgid = 999; int32_t uid = 1001; int64_t durationNanos = 16666666L; EXPECT_CALL(*mMockHal.get(), createHintSession(Eq(tgid), Eq(uid), Eq(threadIds), Eq(durationNanos), _)) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); auto result = mWrapper->createHintSession(tgid, uid, threadIds, durationNanos); ASSERT_TRUE(result.isOk()); } TEST_F(PowerHalWrapperAidlTest, TestCreateHintSessionWithConfigSuccessful) { std::vector threadIds{gettid()}; int32_t tgid = 999; int32_t uid = 1001; int64_t durationNanos = 16666666L; SessionTag tag = SessionTag::OTHER; SessionConfig out; EXPECT_CALL(*mMockHal.get(), createHintSessionWithConfig(Eq(tgid), Eq(uid), Eq(threadIds), Eq(durationNanos), Eq(tag), _, _)) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); auto result = mWrapper->createHintSessionWithConfig(tgid, uid, threadIds, durationNanos, tag, &out); ASSERT_TRUE(result.isOk()); } TEST_F(PowerHalWrapperAidlTest, TestCreateHintSessionFailed) { int32_t tgid = 999; int32_t uid = 1001; std::vector threadIds{}; int64_t durationNanos = 16666666L; EXPECT_CALL(*mMockHal.get(), createHintSession(Eq(tgid), Eq(uid), Eq(threadIds), Eq(durationNanos), _)) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove( ndk::ScopedAStatus::fromExceptionCode(Status::EX_ILLEGAL_ARGUMENT)))); auto result = mWrapper->createHintSession(tgid, uid, threadIds, durationNanos); ASSERT_TRUE(result.isFailed()); } TEST_F(PowerHalWrapperAidlTest, TestGetHintSessionPreferredRate) { EXPECT_CALL(*mMockHal.get(), getHintSessionPreferredRate(_)) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); auto result = mWrapper->getHintSessionPreferredRate(); ASSERT_TRUE(result.isOk()); int64_t rate = result.value(); ASSERT_GE(0, rate); } TEST_F(PowerHalWrapperAidlTest, TestSessionChannel) { int32_t tgid = 999; int32_t uid = 1001; EXPECT_CALL(*mMockHal.get(), getSessionChannel(Eq(tgid), Eq(uid), _)) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); EXPECT_CALL(*mMockHal.get(), closeSessionChannel(Eq(tgid), Eq(uid))) .Times(Exactly(1)) .WillOnce(Return(testing::ByMove(ndk::ScopedAStatus::ok()))); auto createResult = mWrapper->getSessionChannel(tgid, uid); ASSERT_TRUE(createResult.isOk()); auto closeResult = mWrapper->closeSessionChannel(tgid, uid); ASSERT_TRUE(closeResult.isOk()); } TEST_F(PowerHalWrapperAidlTest, TestCreateHintSessionWithConfigUnsupported) { std::vector threadIds{gettid()}; int32_t tgid = 999; int32_t uid = 1001; int64_t durationNanos = 16666666L; SessionTag tag = SessionTag::OTHER; SessionConfig out; EXPECT_CALL(*mMockHal.get(), createHintSessionWithConfig(Eq(tgid), Eq(uid), Eq(threadIds), Eq(durationNanos), Eq(tag), _, _)) .Times(1) .WillOnce(Return(testing::ByMove( ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION)))); auto result = mWrapper->createHintSessionWithConfig(tgid, uid, threadIds, durationNanos, tag, &out); ASSERT_TRUE(result.isUnsupported()); Mock::VerifyAndClearExpectations(mMockHal.get()); EXPECT_CALL(*mMockHal.get(), createHintSessionWithConfig(Eq(tgid), Eq(uid), Eq(threadIds), Eq(durationNanos), Eq(tag), _, _)) .WillOnce(Return( testing::ByMove(ndk::ScopedAStatus::fromStatus(STATUS_UNKNOWN_TRANSACTION)))); result = mWrapper->createHintSessionWithConfig(tgid, uid, threadIds, durationNanos, tag, &out); ASSERT_TRUE(result.isUnsupported()); }