Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick1 / qdeclarativespringanimation / tst_qdeclarativespringanimation.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 <qtest.h>
42 #include <QtDeclarative/qdeclarativeengine.h>
43 #include <QtDeclarative/qdeclarativecomponent.h>
44 #include <QtQuick1/private/qdeclarativespringanimation_p.h>
45 #include <private/qdeclarativevaluetype_p.h>
46
47 class tst_qdeclarativespringanimation : public QObject
48 {
49     Q_OBJECT
50 public:
51     tst_qdeclarativespringanimation();
52
53 private slots:
54     void defaultValues();
55     void values();
56     void disabled();
57
58 private:
59     QDeclarativeEngine engine;
60 };
61
62 tst_qdeclarativespringanimation::tst_qdeclarativespringanimation()
63 {
64 }
65
66 void tst_qdeclarativespringanimation::defaultValues()
67 {
68     QDeclarativeEngine engine;
69     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/springanimation1.qml"));
70     QDeclarative1SpringAnimation *obj = qobject_cast<QDeclarative1SpringAnimation*>(c.create());
71
72     QVERIFY(obj != 0);
73
74     QCOMPARE(obj->to(), 0.);
75     QCOMPARE(obj->velocity(), 0.);
76     QCOMPARE(obj->spring(), 0.);
77     QCOMPARE(obj->damping(), 0.);
78     QCOMPARE(obj->epsilon(), 0.01);
79     QCOMPARE(obj->modulus(), 0.);
80     QCOMPARE(obj->mass(), 1.);
81     QCOMPARE(obj->isRunning(), false);
82
83     delete obj;
84 }
85
86 void tst_qdeclarativespringanimation::values()
87 {
88     QDeclarativeEngine engine;
89     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/springanimation2.qml"));
90     QDeclarative1SpringAnimation *obj = qobject_cast<QDeclarative1SpringAnimation*>(c.create());
91
92     QVERIFY(obj != 0);
93
94     QCOMPARE(obj->to(), 1.44);
95     QCOMPARE(obj->velocity(), 0.9);
96     QCOMPARE(obj->spring(), 1.0);
97     QCOMPARE(obj->damping(), 0.5);
98     QCOMPARE(obj->epsilon(), 0.25);
99     QCOMPARE(obj->modulus(), 360.0);
100     QCOMPARE(obj->mass(), 2.0);
101     QCOMPARE(obj->isRunning(), true);
102
103     QTRY_COMPARE(obj->isRunning(), false);
104
105     delete obj;
106 }
107
108 void tst_qdeclarativespringanimation::disabled()
109 {
110     QDeclarativeEngine engine;
111     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/springanimation3.qml"));
112     QDeclarative1SpringAnimation *obj = qobject_cast<QDeclarative1SpringAnimation*>(c.create());
113
114     QVERIFY(obj != 0);
115
116     QCOMPARE(obj->to(), 1.44);
117     QCOMPARE(obj->velocity(), 0.9);
118     QCOMPARE(obj->spring(), 1.0);
119     QCOMPARE(obj->damping(), 0.5);
120     QCOMPARE(obj->epsilon(), 0.25);
121     QCOMPARE(obj->modulus(), 360.0);
122     QCOMPARE(obj->mass(), 2.0);
123     QCOMPARE(obj->isRunning(), false);
124
125     delete obj;
126 }
127
128 QTEST_MAIN(tst_qdeclarativespringanimation)
129
130 #include "tst_qdeclarativespringanimation.moc"