1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
/*
* Copyright 2012 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Florian Boucault <florian.boucault@canonical.com>
*/
#include <QtQml/QQmlEngine>
#include <QtQuick/private/qquickimagebase_p.h>
#include <QtTest/QtTest>
#include <LomiriToolkit/lomiritoolkitmodule.h>
#define protected public
#include <LomiriToolkit/private/ucqquickimageextension_p.h>
#undef protected
#include <QtCore/private/qabstractfileengine_p.h>
#include <QQuickView>
UT_USE_NAMESPACE
unsigned int numberOfTemporarySciFiles() {
QStringList nameFilters;
nameFilters << "*.sci";
return QDir::temp().entryList(nameFilters, QDir::Files).count();
}
int nFaces = 0;
class DummyFileEngineHandler : public QAbstractFileEngineHandler
{
public:
QAbstractFileEngine *create(const QString &fileName) const
{
if (fileName.endsWith("/face.png"))
nFaces++;
return nullptr;
}
};
class tst_UCQQuickImageExtension : public QObject
{
Q_OBJECT
private:
QQmlEngine *engine = Q_NULLPTR;
private Q_SLOTS:
void init()
{
engine = new QQmlEngine;
LomiriToolkitModule::initializeContextProperties(engine);
}
void cleanup()
{
delete engine;
}
void scaledBorderIdentity() {
UCQQuickImageExtension image;
QString border = "border: 13";
QString expected = "border: 13";
QString result = image.scaledBorder(border, "1");
QCOMPARE(result, expected);
}
void scaledBorderHalf() {
UCQQuickImageExtension image;
QString border = "border: 13";
QString expected = "border: 7";
QString result = image.scaledBorder(border, "0.5");
QCOMPARE(result, expected);
}
void scaledBorderDouble() {
UCQQuickImageExtension image;
QString border = "border: 13";
QString expected = "border: 26";
QString result = image.scaledBorder(border, "2");
QCOMPARE(result, expected);
}
void rewriteContainsBorderInName() {
UCQQuickImageExtension image;
QString sciFilePath = "data/borderInName.sci";
QString result;
QTextStream resultStream(&result);
image.rewriteSciFile(sciFilePath, "1", resultStream);
QString expected;
QTextStream expectedStream(&expected);
expectedStream << "source: \"image://scaling/1/data/borderInName.png\""
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
<< endl;
#else
<< Qt::endl;
#endif
expectedStream << "border.left: 9"
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
<< endl;
#else
<< Qt::endl;
#endif
expectedStream << "border.right: 2"
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
<< endl;
#else
<< Qt::endl;
#endif
expectedStream << "border.top: 9"
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
<< endl;
#else
<< Qt::endl;
#endif
expectedStream << "border.bottom: 0"
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
<< endl;
#else
<< Qt::endl;
#endif
expectedStream << "horizontalTileMode: Stretch"
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
<< endl;
#else
<< Qt::endl;
#endif
expectedStream << "verticalTileMode: Stretch"
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
<< endl;
#else
<< Qt::endl;
#endif
QCOMPARE(result, expected);
}
void cachingOfRewrittenSciFiles() {
/* This tests an internal implementation detail of UCQQuickImageExtension,
namely making sure that only one temporary rewritten .sci file is
created for each source .sci file.
*/
unsigned int initialNumberOfSciFiles = numberOfTemporarySciFiles();
{
DummyFileEngineHandler handler;
QQuickView view(QUrl::fromLocalFile("./data/single_cache_file.qml"));
// Wait until the app is idle
bool idle = false;
while (!idle) {
QEventLoop l;
idle = !l.processEvents();
}
QCOMPARE(numberOfTemporarySciFiles(), initialNumberOfSciFiles + 1);
}
/* The temporary files will be deleted when the cache is destroyed when
the application exits.
*/
QCOMPARE(numberOfTemporarySciFiles(), initialNumberOfSciFiles + 1);
}
void onlyOneStatRepeatedImage() {
DummyFileEngineHandler handler;
QQuickView view(QUrl::fromLocalFile("./data/hundred_faces.qml"));
// Wait until the app is idle
bool idle = false;
while (!idle) {
QEventLoop l;
idle = !l.processEvents();
}
// We have actually loaded the image
QVERIFY(nFaces > 0);
// The number at the moment of writing this test is 4, but we
// can't know what Qt does internally, so i'm going for a relatively safe <10
// the important part is that is not 100 times (i.e. one for every Image item)
QVERIFY(nFaces < 10);
}
};
QTEST_MAIN(tst_UCQQuickImageExtension)
#include "tst_qquick_image_extension.moc"
|