plasma-framework/autotests/dialognativetest.cpp
David Edmundson 08a6a4a7cd Install plasma theme into local XDG_DATA_DIR for icon test
Summary: Relevant code is moved from dialognativetest into a header for sharing

Test Plan: Unit test

Reviewers: #plasma

Subscribers: kde-frameworks-devel

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D22732
2019-07-24 23:53:39 +01:00

113 lines
4.1 KiB
C++

/********************************************************************************
* Copyright 2014 Marco Martin <mart@kde.org> *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library 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 *
* Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public License *
* along with this library; see the file COPYING.LIB. If not, write to *
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301, USA. *
*********************************************************************************/
#include "dialognativetest.h"
#include "utils.h"
#include <KWindowSystem>
void DialogNativeTest::initTestCase()
{
QStandardPaths::setTestModeEnabled(true);
Plasma::TestUtils::installPlasmaTheme();
m_cacheDir = QDir(QStandardPaths::writableLocation(QStandardPaths::CacheLocation));
m_cacheDir.removeRecursively();
m_dialog = new PlasmaQuick::Dialog;
m_dialog->setLocation(Plasma::Types::TopEdge);
m_panel = new QQuickView;
m_panel->setGeometry(0, 0, 50, 50);
m_panel->setFlags(Qt::FramelessWindowHint|Qt::WindowDoesNotAcceptFocus);
m_panel2 = new QQuickView;
m_panel2->setGeometry(100, 0, 50, 50);
m_panel2->setFlags(Qt::FramelessWindowHint|Qt::WindowDoesNotAcceptFocus);
m_panel3 = new QQuickView;
m_panel3->setGeometry(200, 0, 50, 50);
m_panel3->setFlags(Qt::FramelessWindowHint|Qt::WindowDoesNotAcceptFocus);
m_content = new QQuickItem;
m_content->setWidth(100);
m_content->setHeight(100);
m_dialog->setMainItem(m_content);
m_content2 = new QQuickItem(m_panel3->contentItem());
m_content2->setWidth(50);
m_content2->setHeight(25);
m_panel->show();
m_panel2->show();
m_panel3->show();
KWindowSystem::setType(m_panel->winId(), NET::Dock);
KWindowSystem::setType(m_panel3->winId(), NET::Dock);
m_dialog->setVisualParent(m_panel->contentItem());
m_dialog->show();
}
void DialogNativeTest::cleanupTestCase()
{
delete m_dialog;
delete m_panel;
delete m_panel2;
delete m_panel3;
m_cacheDir.removeRecursively();
}
void DialogNativeTest::size()
{
QVERIFY(QTest::qWaitForWindowExposed(m_dialog));
QCOMPARE(m_content->width(), (qreal)100);
QCOMPARE(m_content->height(), (qreal)100);
QCOMPARE(m_dialog->width(), 112);
QCOMPARE(m_dialog->height(), 112);
QCOMPARE(m_content2->width(), (qreal)50);
QCOMPARE(m_content2->height(), (qreal)25);
QCOMPARE(m_dialog->margins()->property("left").value<qreal>(), (qreal)6.0);
QCOMPARE(m_dialog->margins()->property("top").value<qreal>(), (qreal)6.0);
QCOMPARE(m_dialog->margins()->property("right").value<qreal>(), (qreal)6.0);
QCOMPARE(m_dialog->margins()->property("bottom").value<qreal>(), (qreal)6.0);
}
void DialogNativeTest::position()
{
QVERIFY(QTest::qWaitForWindowExposed(m_dialog));
QCOMPARE(m_dialog->x(), 0);
QCOMPARE(m_dialog->y(), 49);
m_dialog->setVisualParent(m_panel2->contentItem());
QCOMPARE(m_dialog->x(), 69);
QCOMPARE(m_dialog->y(), 49);
m_panel3->setMask(QRect(0, 0, 50, 25));
m_dialog->setVisualParent(m_content2);
QCOMPARE(m_dialog->x(), 169);
QCOMPARE(m_dialog->y(), 24);
}
QTEST_MAIN(DialogNativeTest)