QQuickCanvas renames
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickanimatedsprite / tst_qquickanimatedsprite.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 #include <QtTest/QtTest>
42 #include "../../shared/util.h"
43 #include <QtQuick/qquickview.h>
44 #include <private/qabstractanimation_p.h>
45 #include <private/qquickanimatedsprite_p.h>
46
47 class tst_qquickanimatedsprite : public QQmlDataTest
48 {
49     Q_OBJECT
50 public:
51     tst_qquickanimatedsprite(){}
52
53 private slots:
54     void initTestCase();
55     void test_properties();
56     void test_frameChangedSignal();
57 };
58
59 void tst_qquickanimatedsprite::initTestCase()
60 {
61     QQmlDataTest::initTestCase();
62     QUnifiedTimer::instance()->setConsistentTiming(true);
63 }
64
65 void tst_qquickanimatedsprite::test_properties()
66 {
67     QQuickView *window = new QQuickView(0);
68
69     window->setSource(testFileUrl("basic.qml"));
70     window->show();
71     QTest::qWaitForWindowShown(window);
72
73     QVERIFY(window->rootObject());
74     QQuickAnimatedSprite* sprite = window->rootObject()->findChild<QQuickAnimatedSprite*>("sprite");
75     QVERIFY(sprite);
76
77     QVERIFY(sprite->running());
78     QVERIFY(!sprite->paused());
79     QVERIFY(sprite->interpolate());
80     QCOMPARE(sprite->loops(), 3);
81
82     sprite->setRunning(false);
83     QVERIFY(!sprite->running());
84     sprite->setInterpolate(false);
85     QVERIFY(!sprite->interpolate());
86
87     delete window;
88 }
89
90 void tst_qquickanimatedsprite::test_frameChangedSignal()
91 {
92     QQuickView *window = new QQuickView(0);
93
94     window->setSource(testFileUrl("frameChange.qml"));
95     window->show();
96     QTest::qWaitForWindowShown(window);
97
98     QVERIFY(window->rootObject());
99     QQuickAnimatedSprite* sprite = window->rootObject()->findChild<QQuickAnimatedSprite*>("sprite");
100     QVERIFY(sprite);
101
102     QVERIFY(!sprite->running());
103     QVERIFY(!sprite->paused());
104     QCOMPARE(sprite->loops(), 3);
105     QCOMPARE(sprite->frameCount(), 6);
106
107     QSignalSpy frameChangedSpy(sprite, SIGNAL(currentFrameChanged(int)));
108     sprite->setRunning(true);
109     QTRY_COMPARE(frameChangedSpy.count(), 3*6);
110     QTRY_VERIFY(!sprite->running());
111
112     delete window;
113 }
114
115 QTEST_MAIN(tst_qquickanimatedsprite)
116
117 #include "tst_qquickanimatedsprite.moc"