mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 19:02:59 +00:00
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Copyright (C) 2016 Ivailo Monev
|
|
**
|
|
** This file is part of the test suite of the Katie Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** This file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include <qtest.h>
|
|
#include <QDeclarativeEngine>
|
|
#include <QDeclarativeComponent>
|
|
#include <qdeclarativeimage_p.h>
|
|
|
|
class tst_qmlgraphicsimage : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
tst_qmlgraphicsimage() {}
|
|
|
|
private slots:
|
|
void qmlgraphicsimage();
|
|
void qmlgraphicsimage_file();
|
|
void qmlgraphicsimage_url();
|
|
|
|
private:
|
|
QDeclarativeEngine engine;
|
|
};
|
|
|
|
void tst_qmlgraphicsimage::qmlgraphicsimage()
|
|
{
|
|
int x = 0;
|
|
QUrl url(QLatin1String(SRCDIR "/image.png"));
|
|
QBENCHMARK {
|
|
QUrl url2(QLatin1String("http://localhost/image") + QString::number(x++) + QLatin1String(".png"));
|
|
QDeclarativeImage *image = new QDeclarativeImage;
|
|
QDeclarativeEngine::setContextForObject(image, engine.rootContext());
|
|
delete image;
|
|
}
|
|
}
|
|
|
|
void tst_qmlgraphicsimage::qmlgraphicsimage_file()
|
|
{
|
|
int x = 0;
|
|
QUrl url(QLatin1String(SRCDIR "/image.png"));
|
|
//get rid of initialization effects
|
|
{
|
|
QDeclarativeImage *image = new QDeclarativeImage;
|
|
QDeclarativeEngine::setContextForObject(image, engine.rootContext());
|
|
image->setSource(url);
|
|
}
|
|
QBENCHMARK {
|
|
QUrl url2(QLatin1String("http://localhost/image") + QString::number(x++) + QLatin1String(".png"));
|
|
QDeclarativeImage *image = new QDeclarativeImage;
|
|
QDeclarativeEngine::setContextForObject(image, engine.rootContext());
|
|
image->setSource(url);
|
|
delete image;
|
|
}
|
|
}
|
|
|
|
void tst_qmlgraphicsimage::qmlgraphicsimage_url()
|
|
{
|
|
int x = 0;
|
|
QUrl url(QLatin1String(SRCDIR "/image.png"));
|
|
QBENCHMARK {
|
|
QUrl url2(QLatin1String("http://localhost/image") + QString::number(x++) + QLatin1String(".png"));
|
|
QDeclarativeImage *image = new QDeclarativeImage;
|
|
QDeclarativeEngine::setContextForObject(image, engine.rootContext());
|
|
image->setSource(url2);
|
|
delete image;
|
|
}
|
|
}
|
|
|
|
QTEST_MAIN(tst_qmlgraphicsimage)
|
|
|
|
#include "moc_tst_qdeclarativeimage.cpp"
|