mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-22 04:55:33 -04:00
f1ce26e2e1
Signed-off-by: lu <zhaolu2@huawei.com> Change-Id: I37680c8e725453612a9a166a01ae15ba79545215
86 lines
2.1 KiB
C++
86 lines
2.1 KiB
C++
/*
|
|
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
|
* 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.
|
|
*/
|
|
|
|
// gtest
|
|
#include <gtest/gtest.h>
|
|
#include "display_test_utils.h"
|
|
using namespace testing;
|
|
using namespace testing::ext;
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
class DisplayMinimalTest : public testing::Test {
|
|
public:
|
|
static void SetUpTestCase();
|
|
static void TearDownTestCase();
|
|
virtual void SetUp() override;
|
|
virtual void TearDown() override;
|
|
};
|
|
|
|
void DisplayMinimalTest::SetUpTestCase()
|
|
{
|
|
}
|
|
|
|
void DisplayMinimalTest::TearDownTestCase()
|
|
{
|
|
}
|
|
|
|
void DisplayMinimalTest::SetUp()
|
|
{
|
|
}
|
|
|
|
void DisplayMinimalTest::TearDown()
|
|
{
|
|
}
|
|
|
|
namespace {
|
|
/**
|
|
* @tc.name: BasicDisplay
|
|
* @tc.desc: Check default display id is valid
|
|
* @tc.type: FUNC
|
|
*/
|
|
HWTEST_F(DisplayMinimalTest, BasicDisplay01, Function | MediumTest | Level1)
|
|
{
|
|
ASSERT_NE(DISPLAY_ID_INVALID, DisplayManager::GetInstance().GetDefaultDisplayId());
|
|
}
|
|
|
|
/**
|
|
* @tc.name: BasicDisplay
|
|
* @tc.desc: Check default display exists
|
|
* @tc.type: FUNC
|
|
*/
|
|
HWTEST_F(DisplayMinimalTest, BasicDisplay02, Function | MediumTest | Level1)
|
|
{
|
|
const sptr<Display>& display = DisplayManager::GetInstance().GetDefaultDisplay();
|
|
ASSERT_NE(nullptr, display);
|
|
}
|
|
|
|
/**
|
|
* @tc.name: BasicDisplay
|
|
* @tc.desc: Check all displays are valid
|
|
* @tc.type: FUNC
|
|
*/
|
|
HWTEST_F(DisplayMinimalTest, BasicDisplay03, Function | MediumTest | Level1)
|
|
{
|
|
std::vector<DisplayId> ids = DisplayManager::GetInstance().GetAllDisplayIds();
|
|
for (DisplayId id : ids) {
|
|
const sptr<Display>& display = DisplayManager::GetInstance().GetDisplayById(id);
|
|
ASSERT_NE(nullptr, display);
|
|
}
|
|
}
|
|
}
|
|
} // namespace Rosen
|
|
} // namespace OHOS
|