Files
windowmanager/dm/test/systemtest/screenshot_cmd_test.cpp
T
maojiangping 03094d9c17 Fix codex issues.
Signed-off-by: maojiangping <maojiangping@huawei.com>
Change-Id: Ie17b432e8e5fa2d91f8b8018efc3817b869ed7b2
2022-06-29 11:47:26 +08:00

170 lines
4.5 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.
*/
#include <cinttypes>
#include <cstdlib>
#include <gtest/gtest.h>
#include "display_test_utils.h"
#include "pixel_map.h"
#include "snapshot_utils.h"
#include "test_utils.h"
using namespace testing;
using namespace testing::ext;
namespace OHOS {
namespace Rosen {
namespace {
constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, HILOG_DOMAIN_DISPLAY, "ScreenshotCmdTest"};
}
using Utils = DisplayTestUtils;
class ScreenshotCmdTest : public testing::Test {
public:
static void SetUpTestCase();
static void TearDownTestCase();
virtual void SetUp() override;
virtual void TearDown() override;
static DisplayId defaultId_;
DisplayId invalidId_ = DISPLAY_ID_INVALID;
const std::string defaultCmd_ = "/system/bin/snapshot_display";
const int testTimeCount_ = 2;
};
DisplayId ScreenshotCmdTest::defaultId_ = DISPLAY_ID_INVALID;
void ScreenshotCmdTest::SetUpTestCase()
{
auto display = DisplayManager::GetInstance().GetDefaultDisplay();
if (display == nullptr) {
WLOGFE("GetDefaultDisplay: failed!\n");
return;
}
WLOGFI("GetDefaultDisplay: id %" PRIu64", w %d, h %d, fps %u\n", display->GetId(), display->GetWidth(),
display->GetHeight(), display->GetRefreshRate());
defaultId_ = display->GetId();
TestUtils::InjectTokenInfoByHapName(0, "com.ohos.systemui", 0);
}
void ScreenshotCmdTest::TearDownTestCase()
{
}
void ScreenshotCmdTest::SetUp()
{
}
void ScreenshotCmdTest::TearDown()
{
}
bool CheckFileExist(const std::string& fPath)
{
if (!fPath.empty()) {
FILE* fp = fopen(fPath.c_str(), "r");
if (fp != nullptr) {
fclose(fp);
return true;
}
}
return false;
}
namespace {
/**
* @tc.name: ScreenShotCmdValid
* @tc.desc: Call screenshot default cmd and check if it saves image in default path
* @tc.type: FUNC
*/
HWTEST_F(ScreenshotCmdTest, ScreenShotCmdValid01, Function | MediumTest | Level2)
{
std::string imgPath[testTimeCount_];
int i;
for (i = 0; i < testTimeCount_; i++) {
imgPath[i] = SnapShotUtils::GenerateFileName(i);
if (CheckFileExist(imgPath[i])) {
remove(imgPath[i].c_str());
}
}
(void)system(defaultCmd_.c_str());
for (i = 0; i < testTimeCount_; i++) {
if (CheckFileExist(imgPath[i])) { // ok
remove(imgPath[i].c_str());
ASSERT_TRUE(true);
return;
}
}
ADD_FAILURE(); // fail, can't find snapshot file
}
/**
* @tc.name: ScreenShotCmdValid
* @tc.desc: Call screenshot with default displayID and default path
* @tc.type: FUNC
*/
HWTEST_F(ScreenshotCmdTest, ScreenShotCmdValid02, Function | MediumTest | Level2)
{
std::string imgPath[testTimeCount_];
int i;
for (i = 0; i < testTimeCount_; i++) {
imgPath[i] = SnapShotUtils::GenerateFileName(i);
if (CheckFileExist(imgPath[i])) {
remove(imgPath[i].c_str());
}
}
const std::string cmd = defaultCmd_ + " -i " + std::to_string(defaultId_);
(void)system(cmd.c_str());
for (i = 0; i < testTimeCount_; i++) {
if (CheckFileExist(imgPath[i])) { // ok
remove(imgPath[i].c_str());
ASSERT_TRUE(true);
return;
}
}
ADD_FAILURE(); // fail, can't find snapshot file
}
/**
* @tc.name: ScreenShotCmdValid
* @tc.desc: Call screenshot with default displayID and custom path
* @tc.type: FUNC
*/
HWTEST_F(ScreenshotCmdTest, ScreenShotCmdValid03, Function | MediumTest | Level2)
{
const std::string imgPath = "/data/snapshot_display_test.png";
if (CheckFileExist(imgPath)) {
remove(imgPath.c_str());
}
const std::string cmd = defaultCmd_ + " -i " + std::to_string(defaultId_) + " -f " + imgPath;
(void)system(cmd.c_str());
bool isExist = CheckFileExist(imgPath);
if (isExist) {
remove(imgPath.c_str());
}
ASSERT_EQ(true, isExist);
}
} // namespace
} // namespace Rosen
} // namespace OHOS