Basic QQuickSpriteImage autotest

At least verifies the property covenant and instantiation success.

Change-Id: I9d5170c3fd3ae59919684d377151804b71f9081f
Reviewed-by: Martin Jones <martin.jones@nokia.com>
This commit is contained in:
Alan Alpert 2011-10-26 13:23:36 +10:00 committed by Qt by Nokia
parent 6e6cc55e66
commit 658d7d3a29
5 changed files with 154 additions and 1 deletions

View File

@ -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)

View File

@ -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
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 496 B

View File

@ -0,0 +1,12 @@
CONFIG += testcase
TARGET = tst_qquickspriteimage
SOURCES += tst_qquickspriteimage.cpp
macx:CONFIG -= app_bundle
testDataFiles.files = data
testDataFiles.path = .
DEPLOYMENT += testDataFiles
CONFIG += parallel_test
QT += core-private gui-private declarative-private network testlib

View File

@ -0,0 +1,81 @@
/****************************************************************************
**
** 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$
**
****************************************************************************/
#include <QtTest/QtTest>
#include "../shared/util.h"
#include <qquickview.h>
#include <private/qquickspriteimage_p.h>
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<QQuickSpriteImage*>("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"