mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00
89 lines
2.0 KiB
C++
89 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2018 ~ 2028 Uniontech Technology Co., Ltd.
|
|
*
|
|
* Author: chenjun <chenjun@uniontech.com>
|
|
*
|
|
* Maintainer: chenjun <chenjun@uniontech.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <QObject>
|
|
#include <QSignalSpy>
|
|
#include <QTest>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#define private public
|
|
#include "appsnapshot.h"
|
|
#include "floatingpreview.h"
|
|
#undef private
|
|
|
|
class Test_FloatingPreview : public ::testing::Test
|
|
{
|
|
public:
|
|
virtual void SetUp() override;
|
|
virtual void TearDown() override;
|
|
|
|
public:
|
|
FloatingPreview *view = nullptr;
|
|
};
|
|
|
|
void Test_FloatingPreview::SetUp()
|
|
{
|
|
view = new FloatingPreview(new QWidget);
|
|
}
|
|
|
|
void Test_FloatingPreview::TearDown()
|
|
{
|
|
delete view;
|
|
view = nullptr;
|
|
}
|
|
|
|
TEST_F(Test_FloatingPreview, view_test)
|
|
{
|
|
AppSnapshot *shot = new AppSnapshot(1000);
|
|
view->trackWindow(shot);
|
|
|
|
ASSERT_TRUE(view->m_titleBtn->text() == shot->title());
|
|
|
|
ASSERT_EQ(view->trackedWindow(), shot);
|
|
|
|
ASSERT_EQ(view->trackedWid(), shot->wid());
|
|
|
|
QSignalSpy spy(shot, &AppSnapshot::clicked);
|
|
|
|
QTest::mouseClick(view, Qt::LeftButton, Qt::NoModifier);
|
|
|
|
ASSERT_EQ(spy.count(), 1);
|
|
|
|
// view->m_closeBtn3D->click();
|
|
|
|
view->hide();
|
|
ASSERT_TRUE(shot->contentsMargins() == QMargins(0, 0, 0, 0));
|
|
}
|
|
|
|
TEST_F(Test_FloatingPreview, empty_test)
|
|
{
|
|
view->trackWindow(nullptr);
|
|
|
|
ASSERT_TRUE(view->m_titleBtn->text().isEmpty());
|
|
|
|
ASSERT_EQ(view->trackedWindow(), nullptr);
|
|
|
|
// ASSERT_EQ(view->trackedWid(), 0);
|
|
}
|
|
|
|
|