blob: 3766f27ce6d0093282003d1d66d87112ad31533e [file] [log] [blame]
Lloyd Pique70d91362018-10-18 16:02:55 -07001/*
2 * Copyright 2018 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#include <compositionengine/impl/CompositionEngine.h>
18#include <gtest/gtest.h>
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070019#include <renderengine/mock/RenderEngine.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070020
Lloyd Pique441d5042018-10-18 16:49:51 -070021#include "MockHWComposer.h"
22
Lloyd Pique70d91362018-10-18 16:02:55 -070023namespace android::compositionengine {
24namespace {
25
Lloyd Pique441d5042018-10-18 16:49:51 -070026using ::testing::StrictMock;
27
Lloyd Pique70d91362018-10-18 16:02:55 -070028class CompositionEngineTest : public testing::Test {
29public:
30 ~CompositionEngineTest() override;
Lloyd Pique441d5042018-10-18 16:49:51 -070031 mock::HWComposer* mHwc = new StrictMock<mock::HWComposer>();
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070032 renderengine::mock::RenderEngine* mRenderEngine =
33 new StrictMock<renderengine::mock::RenderEngine>();
Lloyd Pique441d5042018-10-18 16:49:51 -070034 impl::CompositionEngine mEngine;
Lloyd Pique70d91362018-10-18 16:02:55 -070035};
36
37CompositionEngineTest::~CompositionEngineTest() = default;
38
39TEST_F(CompositionEngineTest, canInstantiateCompositionEngine) {
40 auto engine = impl::createCompositionEngine();
41 EXPECT_TRUE(engine.get() != nullptr);
42}
43
Lloyd Pique441d5042018-10-18 16:49:51 -070044TEST_F(CompositionEngineTest, canSetHWComposer) {
45 mEngine.setHwComposer(std::unique_ptr<android::HWComposer>(mHwc));
46
47 EXPECT_EQ(mHwc, &mEngine.getHwComposer());
48}
49
Lloyd Piqueb97e04f2018-10-18 17:07:05 -070050TEST_F(CompositionEngineTest, canSetRenderEngine) {
51 mEngine.setRenderEngine(std::unique_ptr<renderengine::RenderEngine>(mRenderEngine));
52
53 EXPECT_EQ(mRenderEngine, &mEngine.getRenderEngine());
54}
55
Lloyd Pique70d91362018-10-18 16:02:55 -070056} // namespace
57} // namespace android::compositionengine