Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativedebughelper / tst_qdeclarativedebughelper.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 #include <qtest.h>
42
43 #include <QDeclarativeEngine>
44 #include <private/qdeclarativeengine_p.h>
45 #include <QAbstractAnimation>
46 #include <private/qabstractanimation_p.h>
47
48 // We have copied the header which is used in the qmljsdebugger (part of QtCreator)
49 // to catch BC changes. Don't update it unless you know what you are doing!
50 #include "private_headers/qdeclarativedebughelper_p.h"
51
52 class tst_qdeclarativedebughelper : public QObject {
53     Q_OBJECT
54 private slots:
55     void getScriptEngine();
56     void setAnimationSlowDownFactor();
57     void enableDebugging();
58 };
59
60 class TestAnimation : public QAbstractAnimation {
61 public:
62     int updateCalled;
63
64     TestAnimation() : updateCalled(0) {}
65
66     virtual void updateCurrentTime(int /*currentTime*/) {
67         updateCalled++;
68     }
69     virtual int duration() const {
70         return 100;
71     }
72 };
73
74 void tst_qdeclarativedebughelper::getScriptEngine()
75 {
76     QDeclarativeEngine engine;
77
78     QScriptEngine *scriptEngine = QDeclarativeDebugHelper::getScriptEngine(&engine);
79     QVERIFY(scriptEngine);
80     QCOMPARE(scriptEngine, QDeclarativeEnginePrivate::getScriptEngine(&engine));
81 }
82
83 void tst_qdeclarativedebughelper::setAnimationSlowDownFactor()
84 {
85     TestAnimation animation;
86
87     // first check whether setup works
88     QCOMPARE(animation.updateCalled, 0);
89     animation.start();
90     QTest::qWait(animation.totalDuration() + 50);
91 #ifdef Q_OS_WIN
92     if (animation.state() != QAbstractAnimation::Stopped)
93         QEXPECT_FAIL("", "On windows, consistent timing is not working properly due to bad timer resolution", Abort);
94 #endif
95     QCOMPARE(animation.state(), QAbstractAnimation::Stopped);
96     QVERIFY(animation.updateCalled > 1);
97
98     // check if we can pause all animations
99     animation.updateCalled = 0;
100     QDeclarativeDebugHelper::setAnimationSlowDownFactor(0.0);
101     animation.start();
102     QTest::qWait(animation.totalDuration() + 50);
103     QVERIFY(animation.updateCalled <= 1); // updateCurrentTime seems to be called at  least once
104
105     // now run them again
106     animation.updateCalled = 0;
107     QDeclarativeDebugHelper::setAnimationSlowDownFactor(2.0);
108     animation.start();
109     QTest::qWait(animation.totalDuration() + 50);
110     QVERIFY(animation.updateCalled > 1);
111 }
112
113 void tst_qdeclarativedebughelper::enableDebugging()
114 {
115     QTest::ignoreMessage(QtWarningMsg, "Qml debugging is enabled. Only use this in a safe environment!");
116     QDeclarativeDebugHelper::enableDebugging();
117 }
118
119 QTEST_MAIN(tst_qdeclarativedebughelper)
120
121 #include "tst_qdeclarativedebughelper.moc"
122