| /* |
| * Copyright 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. |
| */ |
| |
| #undef LOG_TAG |
| #define LOG_TAG "LibSurfaceFlingerUnittests" |
| |
| #include <gmock/gmock.h> |
| #include <gtest/gtest.h> |
| #include <gui/LayerMetadata.h> |
| |
| #include "Layer.h" |
| #include "TestableSurfaceFlinger.h" |
| #include "mock/DisplayHardware/MockComposer.h" |
| |
| namespace android { |
| |
| using testing::_; |
| using testing::DoAll; |
| using testing::Mock; |
| using testing::Return; |
| using testing::SetArgPointee; |
| |
| using android::Hwc2::IComposer; |
| using android::Hwc2::IComposerClient; |
| |
| /** |
| * This class covers all the test that are related to refresh rate selection. |
| */ |
| class RefreshRateSelectionTest : public testing::Test { |
| public: |
| RefreshRateSelectionTest(); |
| ~RefreshRateSelectionTest() override; |
| |
| protected: |
| static constexpr int DEFAULT_DISPLAY_WIDTH = 1920; |
| static constexpr int DEFAULT_DISPLAY_HEIGHT = 1024; |
| static constexpr uint32_t WIDTH = 100; |
| static constexpr uint32_t HEIGHT = 100; |
| static constexpr uint32_t LAYER_FLAGS = 0; |
| static constexpr int32_t PRIORITY_UNSET = -1; |
| |
| sp<Layer> createBufferStateLayer(); |
| sp<Layer> createEffectLayer(); |
| |
| void setParent(Layer* child, Layer* parent); |
| void commitTransaction(Layer* layer); |
| |
| TestableSurfaceFlinger mFlinger; |
| |
| sp<Client> mClient; |
| sp<Layer> mParent; |
| sp<Layer> mChild; |
| sp<Layer> mGrandChild; |
| }; |
| |
| RefreshRateSelectionTest::RefreshRateSelectionTest() { |
| const ::testing::TestInfo* const test_info = |
| ::testing::UnitTest::GetInstance()->current_test_info(); |
| ALOGD("**** Setting up for %s.%s\n", test_info->test_case_name(), test_info->name()); |
| |
| mFlinger.setupMockScheduler(); |
| mFlinger.setupComposer(std::make_unique<Hwc2::mock::Composer>()); |
| } |
| |
| RefreshRateSelectionTest::~RefreshRateSelectionTest() { |
| const ::testing::TestInfo* const test_info = |
| ::testing::UnitTest::GetInstance()->current_test_info(); |
| ALOGD("**** Tearing down after %s.%s\n", test_info->test_case_name(), test_info->name()); |
| } |
| |
| sp<Layer> RefreshRateSelectionTest::createBufferStateLayer() { |
| sp<Client> client; |
| LayerCreationArgs args(mFlinger.flinger(), client, "buffer-queue-layer", LAYER_FLAGS, |
| LayerMetadata()); |
| return sp<Layer>::make(args); |
| } |
| |
| sp<Layer> RefreshRateSelectionTest::createEffectLayer() { |
| sp<Client> client; |
| LayerCreationArgs args(mFlinger.flinger(), client, "color-layer", LAYER_FLAGS, LayerMetadata()); |
| return sp<Layer>::make(args); |
| } |
| |
| void RefreshRateSelectionTest::setParent(Layer* child, Layer* parent) { |
| child->setParent(sp<Layer>::fromExisting(parent)); |
| } |
| |
| void RefreshRateSelectionTest::commitTransaction(Layer* layer) { |
| auto c = layer->getDrawingState(); |
| layer->commitTransaction(c); |
| } |
| |
| namespace { |
| |
| TEST_F(RefreshRateSelectionTest, testPriorityOnBufferStateLayers) { |
| mParent = createBufferStateLayer(); |
| mChild = createBufferStateLayer(); |
| setParent(mChild.get(), mParent.get()); |
| mGrandChild = createBufferStateLayer(); |
| setParent(mGrandChild.get(), mChild.get()); |
| |
| ASSERT_EQ(PRIORITY_UNSET, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(PRIORITY_UNSET, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(PRIORITY_UNSET, mGrandChild->getFrameRateSelectionPriority()); |
| |
| // Child has its own priority. |
| mGrandChild->setFrameRateSelectionPriority(1); |
| commitTransaction(mGrandChild.get()); |
| ASSERT_EQ(PRIORITY_UNSET, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(PRIORITY_UNSET, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mGrandChild->getFrameRateSelectionPriority()); |
| |
| // Child inherits from his parent. |
| mChild->setFrameRateSelectionPriority(1); |
| commitTransaction(mChild.get()); |
| mGrandChild->setFrameRateSelectionPriority(PRIORITY_UNSET); |
| commitTransaction(mGrandChild.get()); |
| ASSERT_EQ(PRIORITY_UNSET, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mGrandChild->getFrameRateSelectionPriority()); |
| |
| // Grandchild inherits from his grand parent. |
| mParent->setFrameRateSelectionPriority(1); |
| commitTransaction(mParent.get()); |
| mChild->setFrameRateSelectionPriority(PRIORITY_UNSET); |
| commitTransaction(mChild.get()); |
| mGrandChild->setFrameRateSelectionPriority(PRIORITY_UNSET); |
| commitTransaction(mGrandChild.get()); |
| ASSERT_EQ(1, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mGrandChild->getFrameRateSelectionPriority()); |
| } |
| |
| TEST_F(RefreshRateSelectionTest, testPriorityOnEffectLayers) { |
| mParent = createEffectLayer(); |
| mChild = createEffectLayer(); |
| setParent(mChild.get(), mParent.get()); |
| mGrandChild = createEffectLayer(); |
| setParent(mGrandChild.get(), mChild.get()); |
| |
| ASSERT_EQ(PRIORITY_UNSET, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(PRIORITY_UNSET, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(PRIORITY_UNSET, mGrandChild->getFrameRateSelectionPriority()); |
| |
| // Child has its own priority. |
| mGrandChild->setFrameRateSelectionPriority(1); |
| commitTransaction(mGrandChild.get()); |
| ASSERT_EQ(PRIORITY_UNSET, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(PRIORITY_UNSET, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mGrandChild->getFrameRateSelectionPriority()); |
| |
| // Child inherits from his parent. |
| mChild->setFrameRateSelectionPriority(1); |
| commitTransaction(mChild.get()); |
| mGrandChild->setFrameRateSelectionPriority(PRIORITY_UNSET); |
| commitTransaction(mGrandChild.get()); |
| ASSERT_EQ(PRIORITY_UNSET, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mGrandChild->getFrameRateSelectionPriority()); |
| |
| // Grandchild inherits from his grand parent. |
| mParent->setFrameRateSelectionPriority(1); |
| commitTransaction(mParent.get()); |
| mChild->setFrameRateSelectionPriority(PRIORITY_UNSET); |
| commitTransaction(mChild.get()); |
| mGrandChild->setFrameRateSelectionPriority(PRIORITY_UNSET); |
| commitTransaction(mGrandChild.get()); |
| ASSERT_EQ(1, mParent->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mChild->getFrameRateSelectionPriority()); |
| ASSERT_EQ(1, mGrandChild->getFrameRateSelectionPriority()); |
| } |
| |
| } // namespace |
| } // namespace android |