Files
windowmanager/wm/test/systemtest/window_multi_ability_test.cpp
T
chenqinxin 0da4dcf983 修复告警
Signed-off-by: chenqinxin <chenqinxin1@huawei.com>
Change-Id: I0f18d5d83e5dfbc2eba258daf41496b6263c357f
2022-02-16 19:04:59 +08:00

154 lines
4.6 KiB
C++

/*
* Copyright (c) 2021 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 <thread>
#include "window_test_utils.h"
using namespace testing;
using namespace testing::ext;
namespace OHOS {
namespace Rosen {
using utils = WindowTestUtils;
class WindowMultiAbilityTest : public testing::Test {
public:
static void SetUpTestCase();
static void TearDownTestCase();
virtual void SetUp() override;
virtual void TearDown() override;
};
void WindowMultiAbilityTest::SetUpTestCase()
{
}
void WindowMultiAbilityTest::TearDownTestCase()
{
}
void WindowMultiAbilityTest::SetUp()
{
}
void WindowMultiAbilityTest::TearDown()
{
}
const int SLEEP_MS = 20;
static void ShowHideWindowSceneCallable(int i)
{
unsigned int sleepTimeMs = i * SLEEP_MS;
usleep(sleepTimeMs);
sptr<WindowScene> scene = utils::CreateWindowScene();
const int loop = 10;
int j = 0;
for (; j < loop; j++) {
usleep(sleepTimeMs);
ASSERT_EQ(WMError::WM_OK, scene->GoForeground());
usleep(sleepTimeMs);
ASSERT_EQ(WMError::WM_OK, scene->GoBackground());
usleep(sleepTimeMs);
}
}
static void CreateDestroyWindowSceneCallable(int i)
{
unsigned int sleepTimeMs = i * SLEEP_MS;
const int loop = 10;
int j = 0;
for (; j < loop; j++) {
usleep(sleepTimeMs);
sptr<WindowScene> scene = utils::CreateWindowScene();
usleep(sleepTimeMs);
ASSERT_EQ(WMError::WM_OK, scene->GoForeground());
usleep(sleepTimeMs);
ASSERT_EQ(WMError::WM_OK, scene->GoBackground());
usleep(sleepTimeMs);
scene.clear();
usleep(sleepTimeMs);
}
}
/**
* @tc.name: MultiAbilityWindow01
* @tc.desc: Five scene process in one thread
* @tc.type: FUNC
* @tc.require: AR000GGTVJ
*/
HWTEST_F(WindowMultiAbilityTest, MultiAbilityWindow01, Function | MediumTest | Level2)
{
sptr<WindowScene> scene1 = utils::CreateWindowScene();
sptr<WindowScene> scene2 = utils::CreateWindowScene();
sptr<WindowScene> scene3 = utils::CreateWindowScene();
sptr<WindowScene> scene4 = utils::CreateWindowScene();
sptr<WindowScene> scene5 = utils::CreateWindowScene();
ASSERT_EQ(WMError::WM_OK, scene1->GoForeground());
ASSERT_EQ(WMError::WM_OK, scene2->GoForeground());
ASSERT_EQ(WMError::WM_OK, scene3->GoForeground());
ASSERT_EQ(WMError::WM_OK, scene4->GoForeground());
ASSERT_EQ(WMError::WM_OK, scene5->GoForeground());
ASSERT_EQ(WMError::WM_OK, scene5->GoBackground());
ASSERT_EQ(WMError::WM_OK, scene4->GoBackground());
ASSERT_EQ(WMError::WM_OK, scene3->GoBackground());
ASSERT_EQ(WMError::WM_OK, scene2->GoBackground());
ASSERT_EQ(WMError::WM_OK, scene1->GoBackground());
}
/**
* @tc.name: MultiAbilityWindow02
* @tc.desc: Five scene process show/hide in five threads
* @tc.type: FUNC
* @tc.require: AR000GGTVJ
*/
HWTEST_F(WindowMultiAbilityTest, MultiAbilityWindow02, Function | MediumTest | Level2)
{
std::thread th1(ShowHideWindowSceneCallable, 1);
std::thread th2(ShowHideWindowSceneCallable, 2);
std::thread th3(ShowHideWindowSceneCallable, 3);
std::thread th4(ShowHideWindowSceneCallable, 4);
std::thread th5(ShowHideWindowSceneCallable, 5);
th1.join();
th2.join();
th3.join();
th4.join();
th5.join();
}
/**
* @tc.name: MultiAbilityWindow03
* @tc.desc: Five scene process create/destroy in five threads
* @tc.type: FUNC
* @tc.require: AR000GGTVJ
*/
HWTEST_F(WindowMultiAbilityTest, MultiAbilityWindow03, Function | MediumTest | Level2)
{
std::thread th1(CreateDestroyWindowSceneCallable, 1);
std::thread th2(CreateDestroyWindowSceneCallable, 2);
std::thread th3(CreateDestroyWindowSceneCallable, 3);
std::thread th4(CreateDestroyWindowSceneCallable, 4);
std::thread th5(CreateDestroyWindowSceneCallable, 5);
th1.join();
th2.join();
th3.join();
th4.join();
th5.join();
}
} // namespace Rosen
} // namespace OHOS