mirror of
https://gitee.com/openharmony/window_window_manager
synced 2025-05-13 14:46:40 +00:00

Signed-off-by: 张凯 <zhangkai324@huawei.com> Change-Id: I9e0965ee34ac53f10d8b6948e995f72886b4c583
102 lines
2.9 KiB
C++
102 lines
2.9 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 "window_test_utils.h"
|
|
#include "wm_common.h"
|
|
using namespace testing;
|
|
using namespace testing::ext;
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
using Utils = WindowTestUtils;
|
|
class WindowInputMethodTest : public testing::Test {
|
|
public:
|
|
static void SetUpTestCase();
|
|
static void TearDownTestCase();
|
|
void SetUp() override;
|
|
void TearDown() override;
|
|
|
|
private:
|
|
static constexpr uint32_t TEST_SLEEP_SECOND = 1;
|
|
static constexpr uint32_t WAIT_SYNC_IN_NS = 200000;
|
|
};
|
|
|
|
void WindowInputMethodTest::SetUpTestCase()
|
|
{
|
|
auto display = DisplayManager::GetInstance().GetDisplayById(0);
|
|
ASSERT_TRUE((display != nullptr));
|
|
Rect displayRect = {0, 0, display->GetWidth(), display->GetHeight()};
|
|
Utils::InitByDisplayRect(displayRect);
|
|
}
|
|
|
|
void WindowInputMethodTest::TearDownTestCase()
|
|
{
|
|
}
|
|
|
|
void WindowInputMethodTest::SetUp()
|
|
{
|
|
}
|
|
|
|
void WindowInputMethodTest::TearDown()
|
|
{
|
|
usleep(WAIT_SYNC_IN_NS);
|
|
}
|
|
|
|
namespace {
|
|
/**
|
|
* @tc.name: ShowKeyboard1
|
|
* @tc.desc: create window and show keyboard.
|
|
* @tc.type: FUNC
|
|
*/
|
|
HWTEST_F(WindowInputMethodTest, ShowKeyboard01, Function | MediumTest | Level3)
|
|
{
|
|
WindowTestUtils::TestWindowInfo windowInfo = {
|
|
.name = "ShowKeyboard",
|
|
.rect = Utils::customAppRect_,
|
|
.type = WindowType::WINDOW_TYPE_INPUT_METHOD_FLOAT,
|
|
.mode = WindowMode::WINDOW_MODE_FLOATING,
|
|
.needAvoid = true,
|
|
.parentLimit = false,
|
|
.showWhenLocked = true,
|
|
.parentId = INVALID_WINDOW_ID,
|
|
};
|
|
const sptr<Window>& fullWindow = Utils::CreateTestWindow(windowInfo);
|
|
if (fullWindow == nullptr) {
|
|
return;
|
|
}
|
|
ASSERT_EQ(WMError::WM_OK, fullWindow->ShowKeyboard(KeyboardViewMode::DARK_IMMERSIVE_MODE));
|
|
sleep(TEST_SLEEP_SECOND);
|
|
|
|
ASSERT_EQ(WMError::WM_OK, fullWindow->ChangeKeyboardViewMode(KeyboardViewMode::LIGHT_IMMERSIVE_MODE));
|
|
sleep(TEST_SLEEP_SECOND);
|
|
|
|
ASSERT_EQ(WMError::WM_ERROR_INVALID_PARAM,
|
|
fullWindow->ChangeKeyboardViewMode(static_cast<KeyboardViewMode>(-1)));
|
|
sleep(TEST_SLEEP_SECOND);
|
|
|
|
ASSERT_EQ(WMError::WM_OK, fullWindow->Hide());
|
|
sleep(TEST_SLEEP_SECOND);
|
|
|
|
ASSERT_EQ(WMError::WM_ERROR_INVALID_WINDOW,
|
|
fullWindow->ChangeKeyboardViewMode(KeyboardViewMode::DARK_IMMERSIVE_MODE));
|
|
sleep(TEST_SLEEP_SECOND);
|
|
fullWindow->Destroy();
|
|
}
|
|
} // namespace
|
|
} // namespace Rosen
|
|
} // namespace OHOS
|