| /* |
| * Copyright 2018 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. |
| */ |
| |
| #include <compositionengine/CompositionRefreshArgs.h> |
| #include <compositionengine/impl/CompositionEngine.h> |
| #include <compositionengine/mock/Layer.h> |
| #include <compositionengine/mock/LayerFE.h> |
| #include <compositionengine/mock/Output.h> |
| #include <gtest/gtest.h> |
| #include <renderengine/mock/RenderEngine.h> |
| |
| #include "MockHWComposer.h" |
| |
| namespace android::compositionengine { |
| namespace { |
| |
| using ::testing::_; |
| using ::testing::Return; |
| using ::testing::SaveArg; |
| using ::testing::StrictMock; |
| |
| class CompositionEngineTest : public testing::Test { |
| public: |
| android::mock::HWComposer* mHwc = new StrictMock<android::mock::HWComposer>(); |
| renderengine::mock::RenderEngine* mRenderEngine = |
| new StrictMock<renderengine::mock::RenderEngine>(); |
| impl::CompositionEngine mEngine; |
| }; |
| |
| TEST_F(CompositionEngineTest, canInstantiateCompositionEngine) { |
| auto engine = impl::createCompositionEngine(); |
| EXPECT_TRUE(engine.get() != nullptr); |
| } |
| |
| TEST_F(CompositionEngineTest, canSetHWComposer) { |
| mEngine.setHwComposer(std::unique_ptr<android::HWComposer>(mHwc)); |
| |
| EXPECT_EQ(mHwc, &mEngine.getHwComposer()); |
| } |
| |
| TEST_F(CompositionEngineTest, canSetRenderEngine) { |
| mEngine.setRenderEngine(std::unique_ptr<renderengine::RenderEngine>(mRenderEngine)); |
| |
| EXPECT_EQ(mRenderEngine, &mEngine.getRenderEngine()); |
| } |
| |
| /* |
| * CompositionEngine::preComposition |
| */ |
| |
| class PreCompositionTest : public CompositionEngineTest { |
| public: |
| PreCompositionTest() { |
| EXPECT_CALL(*mLayer1, getLayerFE()).WillRepeatedly(Return(mLayer1FE)); |
| EXPECT_CALL(*mLayer2, getLayerFE()).WillRepeatedly(Return(mLayer2FE)); |
| EXPECT_CALL(*mLayer3, getLayerFE()).WillRepeatedly(Return(mLayer3FE)); |
| // getLayerFE() can return nullptr. Ensure that this is handled. |
| EXPECT_CALL(*mLayer4, getLayerFE()).WillRepeatedly(Return(nullptr)); |
| |
| mRefreshArgs.outputs = {mOutput}; |
| mRefreshArgs.layers = {mLayer1, mLayer2, mLayer3, mLayer4}; |
| } |
| |
| std::shared_ptr<mock::Output> mOutput{std::make_shared<StrictMock<mock::Output>>()}; |
| std::shared_ptr<mock::Layer> mLayer1{std::make_shared<StrictMock<mock::Layer>>()}; |
| std::shared_ptr<mock::Layer> mLayer2{std::make_shared<StrictMock<mock::Layer>>()}; |
| std::shared_ptr<mock::Layer> mLayer3{std::make_shared<StrictMock<mock::Layer>>()}; |
| std::shared_ptr<mock::Layer> mLayer4{std::make_shared<StrictMock<mock::Layer>>()}; |
| sp<StrictMock<mock::LayerFE>> mLayer1FE{new StrictMock<mock::LayerFE>()}; |
| sp<StrictMock<mock::LayerFE>> mLayer2FE{new StrictMock<mock::LayerFE>()}; |
| sp<StrictMock<mock::LayerFE>> mLayer3FE{new StrictMock<mock::LayerFE>()}; |
| |
| CompositionRefreshArgs mRefreshArgs; |
| }; |
| |
| TEST_F(PreCompositionTest, preCompositionSetsFrameTimestamp) { |
| const nsecs_t before = systemTime(SYSTEM_TIME_MONOTONIC); |
| CompositionRefreshArgs emptyArgs; |
| mEngine.preComposition(emptyArgs); |
| const nsecs_t after = systemTime(SYSTEM_TIME_MONOTONIC); |
| |
| // The frame timestamp should be between the before and after timestamps |
| EXPECT_GE(mEngine.getLastFrameRefreshTimestamp(), before); |
| EXPECT_LE(mEngine.getLastFrameRefreshTimestamp(), after); |
| } |
| |
| TEST_F(PreCompositionTest, preCompositionInvokesLayerPreCompositionWithFrameTimestamp) { |
| nsecs_t ts1 = 0; |
| nsecs_t ts2 = 0; |
| nsecs_t ts3 = 0; |
| EXPECT_CALL(*mLayer1FE, onPreComposition(_)).WillOnce(DoAll(SaveArg<0>(&ts1), Return(false))); |
| EXPECT_CALL(*mLayer2FE, onPreComposition(_)).WillOnce(DoAll(SaveArg<0>(&ts2), Return(false))); |
| EXPECT_CALL(*mLayer3FE, onPreComposition(_)).WillOnce(DoAll(SaveArg<0>(&ts3), Return(false))); |
| |
| mEngine.preComposition(mRefreshArgs); |
| |
| // Each of the onPreComposition calls should used the same refresh timestamp |
| EXPECT_EQ(ts1, mEngine.getLastFrameRefreshTimestamp()); |
| EXPECT_EQ(ts2, mEngine.getLastFrameRefreshTimestamp()); |
| EXPECT_EQ(ts3, mEngine.getLastFrameRefreshTimestamp()); |
| } |
| |
| TEST_F(PreCompositionTest, preCompositionDefaultsToNoUpdateNeeded) { |
| EXPECT_CALL(*mLayer1FE, onPreComposition(_)).WillOnce(Return(false)); |
| EXPECT_CALL(*mLayer2FE, onPreComposition(_)).WillOnce(Return(false)); |
| EXPECT_CALL(*mLayer3FE, onPreComposition(_)).WillOnce(Return(false)); |
| |
| mEngine.setNeedsAnotherUpdateForTest(true); |
| |
| mEngine.preComposition(mRefreshArgs); |
| |
| // The call should have cleared the needsAnotherUpdate flag |
| EXPECT_FALSE(mEngine.needsAnotherUpdate()); |
| } |
| |
| TEST_F(PreCompositionTest, preCompositionSetsNeedsAnotherUpdateIfAtLeastOneLayerRequestsIt) { |
| EXPECT_CALL(*mLayer1FE, onPreComposition(_)).WillOnce(Return(true)); |
| EXPECT_CALL(*mLayer2FE, onPreComposition(_)).WillOnce(Return(false)); |
| EXPECT_CALL(*mLayer3FE, onPreComposition(_)).WillOnce(Return(false)); |
| |
| mEngine.preComposition(mRefreshArgs); |
| |
| EXPECT_TRUE(mEngine.needsAnotherUpdate()); |
| } |
| |
| } // namespace |
| } // namespace android::compositionengine |