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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <qtest.h>
#include <QtTest/QSignalSpy>
#include <QtGui/qscreen.h>
#include <QtQml/qqmlengine.h>
#include <QtQml/qqmlcomponent.h>
#include <QtQuick/qquickview.h>
#include <private/qquickitem_p.h>
#include <private/qquickrectangle_p.h>
#include <QtQuickTestUtils/private/qmlutils_p.h>
#include <QtQuickTestUtils/private/visualtestutils_p.h>
class tst_qquickrectangle : public QQmlDataTest
{
Q_OBJECT
public:
tst_qquickrectangle();
private slots:
void color();
void gradient();
void gradient_border();
void gradient_separate();
void gradient_multiple();
void gradient_preset();
void antialiasing();
void multiRadius();
private:
QQmlEngine engine;
};
tst_qquickrectangle::tst_qquickrectangle()
: QQmlDataTest(QT_QMLTEST_DATADIR)
{
}
void tst_qquickrectangle::color()
{
#ifdef Q_OS_ANDROID
QSKIP("Test does not work on Android because of QTBUG-102345");
#endif
SKIP_IF_NO_WINDOW_GRAB;
if (QGuiApplication::primaryScreen()->depth() < 24)
QSKIP("This test does not work at display depths < 24");
QQuickView view;
view.setSource(testFileUrl("color.qml"));
view.show();
QVERIFY(QTest::qWaitForWindowExposed(&view));
QImage image = view.grabWindow();
QVERIFY(image.pixel(0,0) == QColor("#020202").rgba());
}
void tst_qquickrectangle::gradient()
{
QQmlComponent component(&engine, testFileUrl("gradient.qml"));
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(component.create());
QVERIFY(rect);
QQuickGradient *grad = qobject_cast<QQuickGradient *>(rect->gradient().toQObject());
QVERIFY(grad);
QQmlListProperty<QQuickGradientStop> stops = grad->stops();
QCOMPARE(stops.count(&stops), 2);
QCOMPARE(stops.at(&stops, 0)->position(), 0.0);
QCOMPARE(stops.at(&stops, 0)->color(), QColor("gray"));
QCOMPARE(stops.at(&stops, 1)->position(), 1.0);
QCOMPARE(stops.at(&stops, 1)->color(), QColor("white"));
QGradientStops gradientStops = grad->gradientStops();
QCOMPARE(gradientStops.size(), 2);
QCOMPARE(gradientStops.at(0).first, 0.0);
QCOMPARE(gradientStops.at(0).second, QColor("gray"));
QCOMPARE(gradientStops.at(1).first, 1.0);
QCOMPARE(gradientStops.at(1).second, QColor("white"));
QMetaObject::invokeMethod(rect, "resetGradient");
grad = qobject_cast<QQuickGradient *>(rect->gradient().toQObject());
QVERIFY(!grad);
delete rect;
}
void tst_qquickrectangle::gradient_border()
{
QQuickView view;
view.setSource(testFileUrl("gradient-border.qml"));
view.show();
QVERIFY(QTest::qWaitForWindowExposed(&view));
}
// A gradient not defined inline with the Rectangle using it should still change
// that Rectangle.
void tst_qquickrectangle::gradient_separate()
{
QQuickView view;
view.setSource(testFileUrl("gradient-separate.qml"));
view.show();
QVERIFY(QTest::qWaitForWindowExposed(&view));
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(view.rootObject());
QVERIFY(rect);
// Start off clean
QQuickItemPrivate *rectPriv = QQuickItemPrivate::get(rect);
QTRY_COMPARE(rectPriv->dirtyAttributes & QQuickItemPrivate::Content, 0u);
QMetaObject::invokeMethod(rect, "changeGradient");
// Changing the gradient should have scheduled an update of the item.
QVERIFY((rectPriv->dirtyAttributes & QQuickItemPrivate::Content) != 0);
}
// When a gradient is changed, every Rectangle connected to it must update.
void tst_qquickrectangle::gradient_multiple()
{
QQuickView view;
view.setSource(testFileUrl("gradient-multiple.qml"));
view.show();
QVERIFY(QTest::qWaitForWindowExposed(&view));
QQuickRectangle *firstRect = qobject_cast<QQuickRectangle*>(view.rootObject()->property("firstRectangle").value<QObject*>());
QQuickRectangle *secondRect = qobject_cast<QQuickRectangle*>(view.rootObject()->property("secondRectangle").value<QObject*>());
QVERIFY(firstRect);
QVERIFY(secondRect);
// Start off clean
QQuickItemPrivate *firstRectPriv = QQuickItemPrivate::get(firstRect);
QQuickItemPrivate *secondRectPriv = QQuickItemPrivate::get(secondRect);
QTRY_VERIFY(!(firstRectPriv->dirtyAttributes & QQuickItemPrivate::Content));
bool secondIsDirty = secondRectPriv->dirtyAttributes & QQuickItemPrivate::Content;
QVERIFY(!secondIsDirty);
QMetaObject::invokeMethod(view.rootObject(), "changeGradient");
// Changing the gradient should have scheduled an update of both items
QTRY_VERIFY(firstRectPriv->dirtyAttributes & QQuickItemPrivate::Content);
secondIsDirty = secondRectPriv->dirtyAttributes & QQuickItemPrivate::Content;
QVERIFY(secondIsDirty);
}
void tst_qquickrectangle::gradient_preset()
{
QQuickView view;
view.setSource(testFileUrl("gradient-preset.qml"));
view.show();
QVERIFY(QTest::qWaitForWindowExposed(&view));
QQuickRectangle *enumRect = view.rootObject()->findChild<QQuickRectangle *>("enum");
QVERIFY(enumRect);
QVERIFY(enumRect->gradient().isNumber());
QCOMPARE(enumRect->gradient().toUInt(), QGradient::NightFade);
QQuickRectangle *stringRect = view.rootObject()->findChild<QQuickRectangle *>("string");
QVERIFY(stringRect);
QVERIFY(stringRect->gradient().isString());
QCOMPARE(stringRect->gradient().toString(), QLatin1String("NightFade"));
for (int i = 1; i <= 5; ++i) {
QQuickRectangle *invalidRect = view.rootObject()->findChild<QQuickRectangle *>(qPrintable(QString("invalid%1").arg(i)));
QVERIFY(invalidRect);
QVERIFY(invalidRect->gradient().isUndefined());
}
}
void tst_qquickrectangle::antialiasing()
{
QQmlComponent component(&engine);
component.setData("import QtQuick 2.0\n Rectangle {}", QUrl());
QScopedPointer<QObject> object(component.create());
QQuickRectangle *rect = qobject_cast<QQuickRectangle *>(object.data());
QVERIFY(rect);
QSignalSpy spy(rect, SIGNAL(antialiasingChanged(bool)));
QCOMPARE(rect->antialiasing(), false);
rect->setAntialiasing(true);
QCOMPARE(rect->antialiasing(), true);
QCOMPARE(spy.size(), 1);
rect->setAntialiasing(true);
QCOMPARE(spy.size(), 1);
rect->resetAntialiasing();
QCOMPARE(rect->antialiasing(), false);
QCOMPARE(spy.size(), 2);
rect->setRadius(5);
QCOMPARE(rect->antialiasing(), true);
QCOMPARE(spy.size(), 3);
rect->resetAntialiasing();
QCOMPARE(rect->antialiasing(), true);
QCOMPARE(spy.size(), 3);
rect->setRadius(0);
QCOMPARE(rect->antialiasing(), false);
QCOMPARE(spy.size(), 4);
rect->resetAntialiasing();
QCOMPARE(rect->antialiasing(), false);
QCOMPARE(spy.size(), 4);
rect->setRadius(5);
QCOMPARE(rect->antialiasing(), true);
QCOMPARE(spy.size(), 5);
rect->resetAntialiasing();
QCOMPARE(rect->antialiasing(), true);
QCOMPARE(spy.size(), 5);
rect->setAntialiasing(false);
QCOMPARE(rect->antialiasing(), false);
QCOMPARE(spy.size(), 6);
rect->resetAntialiasing();
QCOMPARE(rect->antialiasing(), true);
QCOMPARE(spy.size(), 7);
}
void tst_qquickrectangle::multiRadius()
{
QQuickView view;
view.setSource(testFileUrl("multi-radius.qml"));
view.show();
QVERIFY(QTest::qWaitForWindowExposed(&view));
QQuickRectangle *firstRect = qobject_cast<QQuickRectangle*>(view.rootObject()->property("firstRectangle").value<QObject*>());
QQuickRectangle *secondRect = qobject_cast<QQuickRectangle*>(view.rootObject()->property("secondRectangle").value<QObject*>());
QQuickRectangle *thirdRect = qobject_cast<QQuickRectangle*>(view.rootObject()->property("thirdRectangle").value<QObject*>());
QVERIFY(firstRect);
QVERIFY(secondRect);
QVERIFY(thirdRect);
QCOMPARE(firstRect->topLeftRadius(), 10.);
QCOMPARE(firstRect->topRightRadius(), 5.);
QCOMPARE(firstRect->bottomLeftRadius(), 5.);
QCOMPARE(firstRect->bottomRightRadius(), 2.);
QSignalSpy spytl(firstRect, SIGNAL(topLeftRadiusChanged()));
QSignalSpy spytr(firstRect, SIGNAL(topRightRadiusChanged()));
QSignalSpy spybl(firstRect, SIGNAL(bottomLeftRadiusChanged()));
QSignalSpy spybr(firstRect, SIGNAL(bottomRightRadiusChanged()));
firstRect->setRadius(12);
QCOMPARE(firstRect->topLeftRadius(), 10.);
QCOMPARE(firstRect->topRightRadius(), 12.);
QCOMPARE(firstRect->bottomLeftRadius(), 12.);
QCOMPARE(firstRect->bottomRightRadius(), 2.);
QCOMPARE(spytl.size(), 0);
QCOMPARE(spytr.size(), 1);
QCOMPARE(spybl.size(), 1);
QCOMPARE(spybr.size(), 0);
firstRect->resetTopLeftRadius();
firstRect->resetBottomRightRadius();
QCOMPARE(firstRect->topRightRadius(), 12.);
QCOMPARE(firstRect->bottomLeftRadius(), 12.);
QCOMPARE(secondRect->topLeftRadius(), 5.);
QCOMPARE(secondRect->topRightRadius(), 10.);
QCOMPARE(secondRect->bottomLeftRadius(), 2.);
QCOMPARE(secondRect->bottomRightRadius(), 5.);
QSignalSpy spytl2(secondRect, SIGNAL(topLeftRadiusChanged()));
QSignalSpy spytr2(secondRect, SIGNAL(topRightRadiusChanged()));
QSignalSpy spybl2(secondRect, SIGNAL(bottomLeftRadiusChanged()));
QSignalSpy spybr2(secondRect, SIGNAL(bottomRightRadiusChanged()));
secondRect->setRadius(12);
QCOMPARE(secondRect->topLeftRadius(), 12.);
QCOMPARE(secondRect->topRightRadius(), 10.);
QCOMPARE(secondRect->bottomLeftRadius(), 2.);
QCOMPARE(secondRect->bottomRightRadius(), 12.);
QCOMPARE(spytl2.size(), 1);
QCOMPARE(spytr2.size(), 0);
QCOMPARE(spybl2.size(), 0);
QCOMPARE(spybr2.size(), 1);
secondRect->resetTopRightRadius();
secondRect->resetBottomLeftRadius();
QCOMPARE(secondRect->topRightRadius(), 12.);
QCOMPARE(secondRect->bottomLeftRadius(), 12.);
QCOMPARE(thirdRect->topLeftRadius(), 5.);
QCOMPARE(thirdRect->topRightRadius(), 5.);
QCOMPARE(thirdRect->bottomLeftRadius(), 5.);
QCOMPARE(thirdRect->bottomRightRadius(), 5.);
}
QTEST_MAIN(tst_qquickrectangle)
#include "tst_qquickrectangle.moc"
|