Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 1 | /* |
| 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> |
| 19 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 20 | #include "MockHWComposer.h" |
| 21 | |
Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 22 | namespace android::compositionengine { |
| 23 | namespace { |
| 24 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 25 | using ::testing::StrictMock; |
| 26 | |
Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 27 | class CompositionEngineTest : public testing::Test { |
| 28 | public: |
| 29 | ~CompositionEngineTest() override; |
| 30 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 31 | mock::HWComposer* mHwc = new StrictMock<mock::HWComposer>(); |
| 32 | impl::CompositionEngine mEngine; |
Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | CompositionEngineTest::~CompositionEngineTest() = default; |
| 36 | |
| 37 | TEST_F(CompositionEngineTest, canInstantiateCompositionEngine) { |
| 38 | auto engine = impl::createCompositionEngine(); |
| 39 | EXPECT_TRUE(engine.get() != nullptr); |
| 40 | } |
| 41 | |
Lloyd Pique | 441d504 | 2018-10-18 16:49:51 -0700 | [diff] [blame] | 42 | TEST_F(CompositionEngineTest, canSetHWComposer) { |
| 43 | mEngine.setHwComposer(std::unique_ptr<android::HWComposer>(mHwc)); |
| 44 | |
| 45 | EXPECT_EQ(mHwc, &mEngine.getHwComposer()); |
| 46 | } |
| 47 | |
Lloyd Pique | 70d9136 | 2018-10-18 16:02:55 -0700 | [diff] [blame] | 48 | } // namespace |
| 49 | } // namespace android::compositionengine |