• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2019 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 
17 #pragma once
18 
19 #include <compositionengine/LayerFE.h>
20 #include <compositionengine/LayerFECompositionState.h>
21 #include <gmock/gmock.h>
22 #include <ui/Fence.h>
23 
24 namespace android::compositionengine::mock {
25 
26 // Defines the interface used by the CompositionEngine to make requests
27 // of the front-end layer.
28 class LayerFE : public compositionengine::LayerFE {
29 private:
30     // Making the constructor private as this class implements RefBase,
31     // and constructing it with a different way than sp<LayerFE>::make() causes
32     // a memory leak of the shared state.
33     LayerFE();
34 
35     // friends class to allow instantiation via sp<LayerFE>::make() and
36     // sp<StrictMock<LayerFE>>::make()
37     friend class sp<LayerFE>;
38     friend class testing::StrictMock<LayerFE>;
39     friend class testing::NiceMock<LayerFE>;
40 
41 public:
42     virtual ~LayerFE();
43 
44     MOCK_CONST_METHOD0(getCompositionState, const LayerFECompositionState*());
45 
46     MOCK_METHOD2(onPreComposition, bool(nsecs_t, bool));
47 
48     MOCK_CONST_METHOD1(prepareClientComposition,
49                        std::optional<compositionengine::LayerFE::LayerSettings>(
50                                compositionengine::LayerFE::ClientCompositionTargetSettings&));
51 
52     MOCK_METHOD(void, onLayerDisplayed, (ftl::SharedFuture<FenceResult>, ui::LayerStack),
53                 (override));
54 
55     MOCK_CONST_METHOD0(getDebugName, const char*());
56     MOCK_CONST_METHOD0(getSequence, int32_t());
57     MOCK_CONST_METHOD0(hasRoundedCorners, bool());
58     MOCK_CONST_METHOD0(getMetadata, gui::LayerMetadata*());
59     MOCK_CONST_METHOD0(getRelativeMetadata, gui::LayerMetadata*());
60 };
61 
62 } // namespace android::compositionengine::mock
63