From 658d7d3a29396e0efb9783d013fac7dde4a8be25 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 26 Oct 2011 13:23:36 +1000 Subject: [PATCH] Basic QQuickSpriteImage autotest At least verifies the property covenant and instantiation success. Change-Id: I9d5170c3fd3ae59919684d377151804b71f9081f Reviewed-by: Martin Jones --- src/declarative/items/qquickspriteimage_p.h | 2 +- .../declarative/qquickspriteimage/data/basic.qml | 60 +++++++++++++++ .../qquickspriteimage/data/squarefacesprite.png | Bin 0 -> 496 bytes .../qquickspriteimage/qquickspriteimage.pro | 12 +++ .../qquickspriteimage/tst_qquickspriteimage.cpp | 81 +++++++++++++++++++++ 5 files changed, 154 insertions(+), 1 deletion(-) create mode 100644 tests/auto/declarative/qquickspriteimage/data/basic.qml create mode 100644 tests/auto/declarative/qquickspriteimage/data/squarefacesprite.png create mode 100644 tests/auto/declarative/qquickspriteimage/qquickspriteimage.pro create mode 100644 tests/auto/declarative/qquickspriteimage/tst_qquickspriteimage.cpp diff --git a/src/declarative/items/qquickspriteimage_p.h b/src/declarative/items/qquickspriteimage_p.h index 969ff10..39384ce 100644 --- a/src/declarative/items/qquickspriteimage_p.h +++ b/src/declarative/items/qquickspriteimage_p.h @@ -56,7 +56,7 @@ class QQuickSprite; class QQuickSpriteEngine; class QSGGeometryNode; class QQuickSpriteMaterial; -class QQuickSpriteImage : public QQuickItem +class Q_AUTOTEST_EXPORT QQuickSpriteImage : public QQuickItem { Q_OBJECT Q_PROPERTY(bool running READ running WRITE setRunning NOTIFY runningChanged) diff --git a/tests/auto/declarative/qquickspriteimage/data/basic.qml b/tests/auto/declarative/qquickspriteimage/data/basic.qml new file mode 100644 index 0000000..1fcdfd9 --- /dev/null +++ b/tests/auto/declarative/qquickspriteimage/data/basic.qml @@ -0,0 +1,60 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt 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. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt 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. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.0 + +Rectangle { + color: "black" + width: 320 + height: 320 + + SpriteImage { + objectName: "sprite" + sprites: Sprite { + name: "happy" + source: "squarefacesprite.png" + frames: 6 + duration: 120 + } + width: 160 + height: 160 + } +} diff --git a/tests/auto/declarative/qquickspriteimage/data/squarefacesprite.png b/tests/auto/declarative/qquickspriteimage/data/squarefacesprite.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a5d5fccebbabbf83c5a36b67752bd1234846d3 GIT binary patch literal 496 zcmVj-Ki4wqJn88@zlQhjD`j9Tl zM{JUFvcxAf%CWJ->|-NVz%>^eJKWwIuo6Bs02_OSosMu`(1g?&$gr^^?Vos#ko!YN zC$9({oxCEyno8w7t2V#V)UgB`+rz$mqSqD^WtpaqCD_9ZRsWXKfav>1?*6u#hdn3bsOjE}aY-~^aa_UmM zKv|}#V+l64m#vz*Xf71>?gBQphppO2ADxO>&cVixwAK6Q+6Gw8!N!iZ)w?bu4TuOf z_DsyXE}BHG!m+VO&%b=4=WM&XyjJ0*y;bU!Ws&yQ`5a|$#qUm@h97!-**z>e?~{_&*2(> z1Lw`!pUU}K|H<}DPP;NfM}Lfc*G+b}Z4DhA`*k+2>5^Au@AC`pFKq1l?Bl?)vH|6Q mhK(I+-_d~9Zag-2nEeG?V91at6Cb$%0000 +#include "../shared/util.h" +#include +#include + +class tst_qquickspriteimage : public QObject +{ + Q_OBJECT +public: + tst_qquickspriteimage(){} + +private slots: + void test_properties(); +}; + +void tst_qquickspriteimage::test_properties() +{ + QQuickView *canvas = new QQuickView(0); + + canvas->setSource(QUrl::fromLocalFile(TESTDATA("basic.qml"))); + canvas->show(); + QTest::qWaitForWindowShown(canvas); + + QVERIFY(canvas->rootObject()); + QQuickSpriteImage* sprite = canvas->rootObject()->findChild("sprite"); + QVERIFY(sprite); + + QVERIFY(sprite->running()); + QVERIFY(sprite->interpolate()); + + sprite->setRunning(false); + QVERIFY(!sprite->running()); + sprite->setInterpolate(false); + QVERIFY(!sprite->interpolate()); + + delete canvas; +} + +QTEST_MAIN(tst_qquickspriteimage) + +#include "tst_qquickspriteimage.moc" -- 2.7.4