mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 03:12:56 +00:00
229 lines
7.1 KiB
C++
229 lines
7.1 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.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3.0 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include <qtest.h>
|
|
#include <QBuffer>
|
|
#include <QDebug>
|
|
#include <QFile>
|
|
#include <QImage>
|
|
#include <QImageReader>
|
|
#include <QImageWriter>
|
|
#include <QLabel>
|
|
#include <QPixmap>
|
|
#include <QSet>
|
|
#include <QTimer>
|
|
|
|
typedef QMap<QString, QString> QStringMap;
|
|
typedef QList<int> QIntList;
|
|
Q_DECLARE_METATYPE(QImage)
|
|
Q_DECLARE_METATYPE(QRect)
|
|
Q_DECLARE_METATYPE(QSize)
|
|
Q_DECLARE_METATYPE(QColor)
|
|
Q_DECLARE_METATYPE(QStringMap)
|
|
Q_DECLARE_METATYPE(QIntList)
|
|
Q_DECLARE_METATYPE(QIODevice *)
|
|
|
|
//TESTED_FILES=
|
|
|
|
class tst_QImageReader : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
tst_QImageReader();
|
|
virtual ~tst_QImageReader();
|
|
|
|
public slots:
|
|
void init();
|
|
void cleanup();
|
|
|
|
private slots:
|
|
void readImage_data();
|
|
void readImage();
|
|
|
|
void setScaledSize_data();
|
|
void setScaledSize();
|
|
|
|
void setClipRect_data();
|
|
void setClipRect();
|
|
|
|
void setScaledClipRect_data();
|
|
void setScaledClipRect();
|
|
|
|
private:
|
|
QList< QPair<QString, QByteArray> > images; // filename, format
|
|
};
|
|
|
|
tst_QImageReader::tst_QImageReader()
|
|
{
|
|
images << QPair<QString, QByteArray>(QLatin1String("colorful.bmp"), QByteArray("bmp"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("font.bmp"), QByteArray("bmp"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("crash-signed-char.bmp"), QByteArray("bmp"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("4bpp-rle.bmp"), QByteArray("bmp"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("tst7.bmp"), QByteArray("bmp"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("16bpp.bmp"), QByteArray("bmp"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("negativeheight.bmp"), QByteArray("bmp"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("marble.xpm"), QByteArray("xpm"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("kollada.png"), QByteArray("png"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("teapot.ppm"), QByteArray("ppm"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("runners.ppm"), QByteArray("ppm"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("test.ppm"), QByteArray("ppm"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("gnus.xbm"), QByteArray("xbm"));
|
|
#if defined QTEST_HAVE_JPEG
|
|
images << QPair<QString, QByteArray>(QLatin1String("beavis.jpg"), QByteArray("jpeg"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("YCbCr_cmyk.jpg"), QByteArray("jpeg"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("YCbCr_rgb.jpg"), QByteArray("jpeg"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("task210380.jpg"), QByteArray("jpeg"));
|
|
#endif
|
|
images << QPair<QString, QByteArray>(QLatin1String("earth.gif"), QByteArray("gif"));
|
|
images << QPair<QString, QByteArray>(QLatin1String("trolltech.gif"), QByteArray("gif"));
|
|
}
|
|
|
|
tst_QImageReader::~tst_QImageReader()
|
|
{
|
|
}
|
|
|
|
void tst_QImageReader::init()
|
|
{
|
|
}
|
|
|
|
void tst_QImageReader::cleanup()
|
|
{
|
|
}
|
|
|
|
void tst_QImageReader::readImage_data()
|
|
{
|
|
QTest::addColumn<QString>("fileName");
|
|
QTest::addColumn<QByteArray>("format");
|
|
|
|
for (int i = 0; i < images.size(); ++i) {
|
|
const QString file = images[i].first;
|
|
const QByteArray format = images[i].second;
|
|
QTest::newRow(qPrintable(file)) << file << format;
|
|
}
|
|
}
|
|
|
|
void tst_QImageReader::readImage()
|
|
{
|
|
QFETCH(QString, fileName);
|
|
QFETCH(QByteArray, format);
|
|
|
|
QBENCHMARK {
|
|
QImageReader io(QLatin1String(SRCDIR "/images/") + fileName, format);
|
|
QImage image = io.read();
|
|
QVERIFY(!image.isNull());
|
|
}
|
|
}
|
|
|
|
void tst_QImageReader::setScaledSize_data()
|
|
{
|
|
QTest::addColumn<QString>("fileName");
|
|
QTest::addColumn<QByteArray>("format");
|
|
QTest::addColumn<QSize>("newSize");
|
|
|
|
for (int i = 0; i < images.size(); ++i) {
|
|
const QString file = images[i].first;
|
|
const QByteArray format = images[i].second;
|
|
QSize size(200, 200);
|
|
if (file == QLatin1String("teapot"))
|
|
size = QSize(400, 400);
|
|
else if (file == QLatin1String("test.ppm"))
|
|
size = QSize(10, 10);
|
|
QTest::newRow(qPrintable(file)) << file << format << size;
|
|
}
|
|
}
|
|
|
|
void tst_QImageReader::setScaledSize()
|
|
{
|
|
QFETCH(QString, fileName);
|
|
QFETCH(QSize, newSize);
|
|
QFETCH(QByteArray, format);
|
|
|
|
QBENCHMARK {
|
|
QImageReader reader(QLatin1String(SRCDIR "/images/") + fileName, format);
|
|
reader.setScaledSize(newSize);
|
|
QImage image = reader.read();
|
|
QCOMPARE(image.size(), newSize);
|
|
}
|
|
}
|
|
|
|
void tst_QImageReader::setClipRect_data()
|
|
{
|
|
QTest::addColumn<QString>("fileName");
|
|
QTest::addColumn<QByteArray>("format");
|
|
QTest::addColumn<QRect>("newRect");
|
|
|
|
for (int i = 0; i < images.size(); ++i) {
|
|
const QString file = images[i].first;
|
|
const QByteArray format = images[i].second;
|
|
QTest::newRow(qPrintable(file)) << file << format << QRect(0, 0, 50, 50);
|
|
}
|
|
}
|
|
|
|
void tst_QImageReader::setClipRect()
|
|
{
|
|
QFETCH(QString, fileName);
|
|
QFETCH(QRect, newRect);
|
|
QFETCH(QByteArray, format);
|
|
|
|
QBENCHMARK {
|
|
QImageReader reader(QLatin1String(SRCDIR "/images/") + fileName, format);
|
|
reader.setClipRect(newRect);
|
|
QImage image = reader.read();
|
|
QCOMPARE(image.rect(), newRect);
|
|
}
|
|
}
|
|
|
|
void tst_QImageReader::setScaledClipRect_data()
|
|
{
|
|
setClipRect_data();
|
|
}
|
|
|
|
void tst_QImageReader::setScaledClipRect()
|
|
{
|
|
QFETCH(QString, fileName);
|
|
QFETCH(QRect, newRect);
|
|
QFETCH(QByteArray, format);
|
|
|
|
QBENCHMARK {
|
|
QImageReader reader(QLatin1String(SRCDIR "/images/") + fileName, format);
|
|
reader.setScaledSize(QSize(300, 300));
|
|
reader.setScaledClipRect(newRect);
|
|
QImage image = reader.read();
|
|
QCOMPARE(image.rect(), newRect);
|
|
}
|
|
}
|
|
|
|
QTEST_MAIN(tst_QImageReader)
|
|
|
|
#include "moc_tst_qimagereader.cpp"
|