plasma-framework/autotests/framesvgtest.cpp
David Rosca 974a2b5071 FrameSvg: Fix dangling pointers in sharedFrames when theme changes
Store theme pointer in FrameData and set it when adding to sharedFrames.

REVIEW: 127344
2016-03-12 13:02:34 +01:00

79 lines
3.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 "framesvgtest.h"
#include <QStandardPaths>
void FrameSvgTest::initTestCase()
{
QStandardPaths::enableTestMode(true);
m_cacheDir = QDir(QStandardPaths::writableLocation(QStandardPaths::CacheLocation));
m_cacheDir.removeRecursively();
m_frameSvg = new Plasma::FrameSvg;
m_frameSvg->setImagePath(QFINDTESTDATA("data/background.svgz"));
QVERIFY(m_frameSvg->isValid());
}
void FrameSvgTest::cleanupTestCase()
{
delete m_frameSvg;
m_cacheDir.removeRecursively();
}
void FrameSvgTest::margins()
{
QCOMPARE(m_frameSvg->marginSize(Plasma::Types::LeftMargin), (qreal)26);
QCOMPARE(m_frameSvg->marginSize(Plasma::Types::TopMargin), (qreal)26);
QCOMPARE(m_frameSvg->marginSize(Plasma::Types::RightMargin), (qreal)26);
QCOMPARE(m_frameSvg->marginSize(Plasma::Types::BottomMargin), (qreal)26);
}
void FrameSvgTest::contentsRect()
{
m_frameSvg->resizeFrame(QSize(100,100));
QCOMPARE(m_frameSvg->contentsRect(), QRectF(26, 26, 48, 48));
}
void FrameSvgTest::setTheme()
{
// Should not crash
Plasma::FrameSvg *frameSvg = new Plasma::FrameSvg;
frameSvg->setImagePath("widgets/background");
frameSvg->setTheme(new Plasma::Theme("breeze-light", this));
frameSvg->framePixmap();
frameSvg->setTheme(new Plasma::Theme("breeze-dark", this));
frameSvg->framePixmap();
delete frameSvg;
frameSvg = new Plasma::FrameSvg;
frameSvg->setImagePath("widgets/background");
frameSvg->setTheme(new Plasma::Theme("breeze-light", this));
frameSvg->framePixmap();
frameSvg->setTheme(new Plasma::Theme("breeze-dark", this));
frameSvg->framePixmap();
delete frameSvg;
}
QTEST_MAIN(FrameSvgTest)