2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2015-01-28 11:55:39 +00:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
** Contact: http://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2014-08-22 06:13:59 +00:00
|
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
2012-09-20 05:21:40 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 11:55:39 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
2012-09-20 05:21:40 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-20 05:21:40 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-08-22 06:13:59 +00:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-09-20 05:21:40 +00:00
|
|
|
**
|
2015-01-28 11:55:39 +00:00
|
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
2011-10-17 09:05:25 +00:00
|
|
|
#include <QtTest/QtTest>
|
2012-02-16 04:43:03 +00:00
|
|
|
#include <QtQml/qqmlengine.h>
|
|
|
|
#include <QtQml/qqmlcomponent.h>
|
Say hello to QtQuick module
This change moves the QtQuick 2 types and C++ API (including
SceneGraph) to a new module (AKA library), QtQuick.
99% of this change is moving files from src/declarative to
src/quick, and from tests/auto/declarative to
tests/auto/qtquick2.
The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to
a plugin, src/imports/qtquick2, just like it's done for QtQuick 1.
All tools, examples, and tests that use QtQuick C++ API have gotten
"QT += quick" or "QT += quick-private" added to their .pro file.
A few additional internal QtDeclarative classes had to be exported
(via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the
QtQuick 2 implementation.
The old header locations (e.g. QtDeclarative/qquickitem.h) will
still be supported for some time, but will produce compile-time
warnings. (To avoid the QtQuick implementation using the
compatibility headers (since QtDeclarative's includepath comes
first), a few include statements were modified, e.g. from
"#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".)
There's a change in qtbase that automatically adds QtQuick to the
module list if QtDeclarative is used. Together with the compatibility
headers, this should help reduce the migration pain for existing
projects.
In theory, simply getting an existing QtDeclarative-based project
to compile and link shouldn't require any changes for now -- but
porting to the new scheme is of course recommended, and will
eventually become mandatory.
Task-number: QTBUG-22889
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7
Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
2011-11-23 14:14:07 +00:00
|
|
|
#include <QtQuick/qquickview.h>
|
2012-02-16 04:43:03 +00:00
|
|
|
#include <QtQml/private/qanimationgroupjob_p.h>
|
Say hello to QtQuick module
This change moves the QtQuick 2 types and C++ API (including
SceneGraph) to a new module (AKA library), QtQuick.
99% of this change is moving files from src/declarative to
src/quick, and from tests/auto/declarative to
tests/auto/qtquick2.
The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to
a plugin, src/imports/qtquick2, just like it's done for QtQuick 1.
All tools, examples, and tests that use QtQuick C++ API have gotten
"QT += quick" or "QT += quick-private" added to their .pro file.
A few additional internal QtDeclarative classes had to be exported
(via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the
QtQuick 2 implementation.
The old header locations (e.g. QtDeclarative/qquickitem.h) will
still be supported for some time, but will produce compile-time
warnings. (To avoid the QtQuick implementation using the
compatibility headers (since QtDeclarative's includepath comes
first), a few include statements were modified, e.g. from
"#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".)
There's a change in qtbase that automatically adds QtQuick to the
module list if QtDeclarative is used. Together with the compatibility
headers, this should help reduce the migration pain for existing
projects.
In theory, simply getting an existing QtDeclarative-based project
to compile and link shouldn't require any changes for now -- but
porting to the new scheme is of course recommended, and will
eventually become mandatory.
Task-number: QTBUG-22889
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7
Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
2011-11-23 14:14:07 +00:00
|
|
|
#include <QtQuick/private/qquickrectangle_p.h>
|
2012-02-16 04:43:03 +00:00
|
|
|
#include <QtQuick/private/qquickitemanimation_p.h>
|
2012-03-05 01:39:24 +00:00
|
|
|
#include <QtQuick/private/qquickitemanimation_p_p.h>
|
|
|
|
#include <QtQuick/private/qquicktransition_p.h>
|
Say hello to QtQuick module
This change moves the QtQuick 2 types and C++ API (including
SceneGraph) to a new module (AKA library), QtQuick.
99% of this change is moving files from src/declarative to
src/quick, and from tests/auto/declarative to
tests/auto/qtquick2.
The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to
a plugin, src/imports/qtquick2, just like it's done for QtQuick 1.
All tools, examples, and tests that use QtQuick C++ API have gotten
"QT += quick" or "QT += quick-private" added to their .pro file.
A few additional internal QtDeclarative classes had to be exported
(via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the
QtQuick 2 implementation.
The old header locations (e.g. QtDeclarative/qquickitem.h) will
still be supported for some time, but will produce compile-time
warnings. (To avoid the QtQuick implementation using the
compatibility headers (since QtDeclarative's includepath comes
first), a few include statements were modified, e.g. from
"#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".)
There's a change in qtbase that automatically adds QtQuick to the
module list if QtDeclarative is used. Together with the compatibility
headers, this should help reduce the migration pain for existing
projects.
In theory, simply getting an existing QtDeclarative-based project
to compile and link shouldn't require any changes for now -- but
porting to the new scheme is of course recommended, and will
eventually become mandatory.
Task-number: QTBUG-22889
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7
Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
2011-11-23 14:14:07 +00:00
|
|
|
#include <QtQuick/private/qquickanimation_p.h>
|
2012-02-16 04:43:03 +00:00
|
|
|
#include <QtQuick/private/qquickpathinterpolator_p.h>
|
Say hello to QtQuick module
This change moves the QtQuick 2 types and C++ API (including
SceneGraph) to a new module (AKA library), QtQuick.
99% of this change is moving files from src/declarative to
src/quick, and from tests/auto/declarative to
tests/auto/qtquick2.
The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to
a plugin, src/imports/qtquick2, just like it's done for QtQuick 1.
All tools, examples, and tests that use QtQuick C++ API have gotten
"QT += quick" or "QT += quick-private" added to their .pro file.
A few additional internal QtDeclarative classes had to be exported
(via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the
QtQuick 2 implementation.
The old header locations (e.g. QtDeclarative/qquickitem.h) will
still be supported for some time, but will produce compile-time
warnings. (To avoid the QtQuick implementation using the
compatibility headers (since QtDeclarative's includepath comes
first), a few include statements were modified, e.g. from
"#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".)
There's a change in qtbase that automatically adds QtQuick to the
module list if QtDeclarative is used. Together with the compatibility
headers, this should help reduce the migration pain for existing
projects.
In theory, simply getting an existing QtDeclarative-based project
to compile and link shouldn't require any changes for now -- but
porting to the new scheme is of course recommended, and will
eventually become mandatory.
Task-number: QTBUG-22889
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7
Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
2011-11-23 14:14:07 +00:00
|
|
|
#include <QtQuick/private/qquickitem_p.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <QEasingCurve>
|
|
|
|
|
2011-09-07 02:39:58 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
Say hello to QtQuick module
This change moves the QtQuick 2 types and C++ API (including
SceneGraph) to a new module (AKA library), QtQuick.
99% of this change is moving files from src/declarative to
src/quick, and from tests/auto/declarative to
tests/auto/qtquick2.
The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to
a plugin, src/imports/qtquick2, just like it's done for QtQuick 1.
All tools, examples, and tests that use QtQuick C++ API have gotten
"QT += quick" or "QT += quick-private" added to their .pro file.
A few additional internal QtDeclarative classes had to be exported
(via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the
QtQuick 2 implementation.
The old header locations (e.g. QtDeclarative/qquickitem.h) will
still be supported for some time, but will produce compile-time
warnings. (To avoid the QtQuick implementation using the
compatibility headers (since QtDeclarative's includepath comes
first), a few include statements were modified, e.g. from
"#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".)
There's a change in qtbase that automatically adds QtQuick to the
module list if QtDeclarative is used. Together with the compatibility
headers, this should help reduce the migration pain for existing
projects.
In theory, simply getting an existing QtDeclarative-based project
to compile and link shouldn't require any changes for now -- but
porting to the new scheme is of course recommended, and will
eventually become mandatory.
Task-number: QTBUG-22889
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7
Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
2011-11-23 14:14:07 +00:00
|
|
|
#include "../../shared/util.h"
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
class tst_qquickanimations : public QQmlDataTest
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2012-02-16 04:43:03 +00:00
|
|
|
tst_qquickanimations() {}
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
private slots:
|
2011-12-21 08:06:26 +00:00
|
|
|
void initTestCase()
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine; // ensure types are registered
|
|
|
|
QQmlDataTest::initTestCase();
|
2011-12-21 08:06:26 +00:00
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
void simpleProperty();
|
|
|
|
void simpleNumber();
|
|
|
|
void simpleColor();
|
|
|
|
void simpleRotation();
|
2011-08-31 22:47:56 +00:00
|
|
|
void simplePath();
|
2012-01-25 00:32:43 +00:00
|
|
|
void simpleAnchor();
|
|
|
|
void reparent();
|
2011-08-31 22:47:56 +00:00
|
|
|
void pathInterpolator();
|
2011-09-29 23:04:11 +00:00
|
|
|
void pathInterpolatorBackwardJump();
|
2011-09-07 02:39:58 +00:00
|
|
|
void pathWithNoStart();
|
2011-04-27 10:05:43 +00:00
|
|
|
void alwaysRunToEnd();
|
|
|
|
void complete();
|
|
|
|
void resume();
|
|
|
|
void dotProperty();
|
|
|
|
void badTypes();
|
|
|
|
void badProperties();
|
|
|
|
void mixedTypes();
|
|
|
|
void properties();
|
|
|
|
void propertiesTransition();
|
2011-08-31 22:47:56 +00:00
|
|
|
void pathTransition();
|
2011-08-04 00:30:46 +00:00
|
|
|
void disabledTransition();
|
2011-04-27 10:05:43 +00:00
|
|
|
void invalidDuration();
|
|
|
|
void attached();
|
|
|
|
void propertyValueSourceDefaultStart();
|
|
|
|
void dontStart();
|
|
|
|
void easingProperties();
|
|
|
|
void rotation();
|
2012-07-06 01:43:41 +00:00
|
|
|
void startStopSignals();
|
2011-04-27 10:05:43 +00:00
|
|
|
void runningTrueBug();
|
|
|
|
void nonTransitionBug();
|
|
|
|
void registrationBug();
|
|
|
|
void doubleRegistrationBug();
|
|
|
|
void alwaysRunToEndRestartBug();
|
2011-07-25 06:43:55 +00:00
|
|
|
void transitionAssignmentBug();
|
2011-07-29 03:10:25 +00:00
|
|
|
void pauseBindingBug();
|
2011-08-01 00:43:54 +00:00
|
|
|
void pauseBug();
|
2012-01-25 00:32:43 +00:00
|
|
|
void loopingBug();
|
2012-02-27 23:48:27 +00:00
|
|
|
void anchorBug();
|
2012-03-22 04:07:28 +00:00
|
|
|
void pathAnimationInOutBackBug();
|
2012-05-09 01:50:01 +00:00
|
|
|
void scriptActionBug();
|
2013-11-14 16:53:58 +00:00
|
|
|
void groupAnimationNullChildBug();
|
2014-03-12 15:44:28 +00:00
|
|
|
void scriptActionCrash();
|
2015-12-07 08:04:00 +00:00
|
|
|
void animatorInvalidTargetCrash();
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define QTIMED_COMPARE(lhs, rhs) do { \
|
|
|
|
for (int ii = 0; ii < 5; ++ii) { \
|
|
|
|
if (lhs == rhs) \
|
|
|
|
break; \
|
|
|
|
QTest::qWait(50); \
|
|
|
|
} \
|
|
|
|
QCOMPARE(lhs, rhs); \
|
|
|
|
} while (false)
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::simpleProperty()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-07-11 03:47:51 +00:00
|
|
|
animation.setProperty("x");
|
|
|
|
animation.setTo(200);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.target(), &rect);
|
|
|
|
QCOMPARE(animation.property(), QLatin1String("x"));
|
|
|
|
QCOMPARE(animation.to().toReal(), 200.0);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QTest::qWait(animation.duration());
|
2011-07-11 03:47:51 +00:00
|
|
|
QTIMED_COMPARE(rect.x(), 200.0);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-10-22 14:59:25 +00:00
|
|
|
rect.setPosition(QPointF(0,0));
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
|
|
|
QVERIFY(animation.isRunning());
|
2012-02-03 02:26:37 +00:00
|
|
|
animation.pause();
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(animation.isPaused());
|
|
|
|
animation.setCurrentTime(125);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.currentTime(), 125);
|
2011-07-11 03:47:51 +00:00
|
|
|
QCOMPARE(rect.x(),100.0);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::simpleNumber()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickNumberAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("x");
|
|
|
|
animation.setTo(200);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.target(), &rect);
|
|
|
|
QCOMPARE(animation.property(), QLatin1String("x"));
|
|
|
|
QCOMPARE(animation.to(), qreal(200));
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QTest::qWait(animation.duration());
|
|
|
|
QTIMED_COMPARE(rect.x(), qreal(200));
|
|
|
|
|
|
|
|
rect.setX(0);
|
|
|
|
animation.start();
|
|
|
|
animation.pause();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QVERIFY(animation.isPaused());
|
|
|
|
animation.setCurrentTime(125);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.currentTime(), 125);
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(rect.x(), qreal(100));
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::simpleColor()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickColorAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("color");
|
|
|
|
animation.setTo(QColor("red"));
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.target(), &rect);
|
|
|
|
QCOMPARE(animation.property(), QLatin1String("color"));
|
|
|
|
QCOMPARE(animation.to(), QColor("red"));
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QTest::qWait(animation.duration());
|
|
|
|
QTIMED_COMPARE(rect.color(), QColor("red"));
|
|
|
|
|
|
|
|
rect.setColor(QColor("blue"));
|
|
|
|
animation.start();
|
|
|
|
animation.pause();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QVERIFY(animation.isPaused());
|
|
|
|
animation.setCurrentTime(125);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.currentTime(), 125);
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(rect.color(), QColor::fromRgbF(0.498039, 0, 0.498039, 1));
|
|
|
|
|
|
|
|
rect.setColor(QColor("green"));
|
|
|
|
animation.setFrom(QColor("blue"));
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.from(), QColor("blue"));
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.restart();
|
|
|
|
QCOMPARE(rect.color(), QColor("blue"));
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
animation.setCurrentTime(125);
|
|
|
|
QCOMPARE(rect.color(), QColor::fromRgbF(0.498039, 0, 0.498039, 1));
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::simpleRotation()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickRotationAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("rotation");
|
|
|
|
animation.setTo(270);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.target(), &rect);
|
|
|
|
QCOMPARE(animation.property(), QLatin1String("rotation"));
|
|
|
|
QCOMPARE(animation.to(), qreal(270));
|
|
|
|
QCOMPARE(animation.direction(), QQuickRotationAnimation::Numerical);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QTest::qWait(animation.duration());
|
|
|
|
QTIMED_COMPARE(rect.rotation(), qreal(270));
|
|
|
|
|
|
|
|
rect.setRotation(0);
|
|
|
|
animation.start();
|
|
|
|
animation.pause();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QVERIFY(animation.isPaused());
|
|
|
|
animation.setCurrentTime(125);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.currentTime(), 125);
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(rect.rotation(), qreal(135));
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::simplePath()
|
2011-08-31 22:47:56 +00:00
|
|
|
{
|
2011-09-07 02:39:58 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathAnimation.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(rect);
|
2011-08-31 22:47:56 +00:00
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *redRect = rect->findChild<QQuickRectangle*>();
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(redRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickPathAnimation *pathAnim = rect->findChild<QQuickPathAnimation*>();
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(pathAnim);
|
2011-08-31 22:47:56 +00:00
|
|
|
|
2012-01-25 00:32:43 +00:00
|
|
|
QCOMPARE(pathAnim->duration(), 100);
|
|
|
|
QCOMPARE(pathAnim->target(), redRect);
|
|
|
|
|
2011-09-07 02:39:58 +00:00
|
|
|
pathAnim->start();
|
|
|
|
pathAnim->pause();
|
2011-08-31 22:47:56 +00:00
|
|
|
|
2011-09-07 02:39:58 +00:00
|
|
|
pathAnim->setCurrentTime(30);
|
|
|
|
QCOMPARE(redRect->x(), qreal(167));
|
|
|
|
QCOMPARE(redRect->y(), qreal(104));
|
2011-08-31 22:47:56 +00:00
|
|
|
|
2011-09-07 02:39:58 +00:00
|
|
|
pathAnim->setCurrentTime(100);
|
|
|
|
QCOMPARE(redRect->x(), qreal(300));
|
|
|
|
QCOMPARE(redRect->y(), qreal(300));
|
2011-08-31 22:47:56 +00:00
|
|
|
|
2011-09-07 02:39:58 +00:00
|
|
|
//verify animation runs to end
|
|
|
|
pathAnim->start();
|
|
|
|
QCOMPARE(redRect->x(), qreal(50));
|
|
|
|
QCOMPARE(redRect->y(), qreal(50));
|
|
|
|
QTRY_COMPARE(redRect->x(), qreal(300));
|
|
|
|
QCOMPARE(redRect->y(), qreal(300));
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
pathAnim->setOrientation(QQuickPathAnimation::RightFirst);
|
|
|
|
QCOMPARE(pathAnim->orientation(), QQuickPathAnimation::RightFirst);
|
2011-09-07 02:39:58 +00:00
|
|
|
pathAnim->start();
|
|
|
|
QTRY_VERIFY(redRect->rotation() != 0);
|
|
|
|
pathAnim->stop();
|
2012-01-25 00:32:43 +00:00
|
|
|
|
|
|
|
delete rect;
|
2011-09-07 02:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathAnimation2.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *redRect = rect->findChild<QQuickRectangle*>();
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(redRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickPathAnimation *pathAnim = rect->findChild<QQuickPathAnimation*>();
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(pathAnim);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QCOMPARE(pathAnim->orientation(), QQuickPathAnimation::RightFirst);
|
2012-01-25 00:32:43 +00:00
|
|
|
QCOMPARE(pathAnim->endRotation(), qreal(0));
|
|
|
|
QCOMPARE(pathAnim->orientationEntryDuration(), 10);
|
|
|
|
QCOMPARE(pathAnim->orientationExitDuration(), 10);
|
2011-09-07 02:39:58 +00:00
|
|
|
|
|
|
|
pathAnim->start();
|
|
|
|
pathAnim->pause();
|
|
|
|
QCOMPARE(redRect->x(), qreal(50));
|
|
|
|
QCOMPARE(redRect->y(), qreal(50));
|
|
|
|
QCOMPARE(redRect->rotation(), qreal(-360));
|
|
|
|
|
|
|
|
pathAnim->setCurrentTime(50);
|
|
|
|
QCOMPARE(redRect->x(), qreal(175));
|
|
|
|
QCOMPARE(redRect->y(), qreal(175));
|
|
|
|
QCOMPARE(redRect->rotation(), qreal(-315));
|
|
|
|
|
|
|
|
pathAnim->setCurrentTime(100);
|
|
|
|
QCOMPARE(redRect->x(), qreal(300));
|
|
|
|
QCOMPARE(redRect->y(), qreal(300));
|
|
|
|
QCOMPARE(redRect->rotation(), qreal(0));
|
2012-01-25 00:32:43 +00:00
|
|
|
|
|
|
|
delete rect;
|
2011-09-07 02:39:58 +00:00
|
|
|
}
|
2011-08-31 22:47:56 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::simpleAnchor()
|
2012-01-25 00:32:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("reanchor.qml"));
|
2012-01-25 00:32:43 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
|
|
|
QVERIFY(rect);
|
|
|
|
|
|
|
|
QQuickRectangle *greenRect = rect->findChild<QQuickRectangle*>();
|
|
|
|
QVERIFY(greenRect);
|
|
|
|
|
|
|
|
QCOMPARE(rect->state(), QLatin1String("reanchored"));
|
|
|
|
QCOMPARE(greenRect->x(), qreal(10));
|
|
|
|
QCOMPARE(greenRect->y(), qreal(0));
|
|
|
|
QCOMPARE(greenRect->width(), qreal(190));
|
|
|
|
QCOMPARE(greenRect->height(), qreal(150));
|
|
|
|
|
|
|
|
rect->setState("");
|
|
|
|
|
|
|
|
//verify animation in progress
|
|
|
|
QTRY_VERIFY(greenRect->x() < 10 && greenRect->x() > 0);
|
|
|
|
QVERIFY(greenRect->y() > 0 && greenRect->y() < 10);
|
|
|
|
QVERIFY(greenRect->width() < 190 && greenRect->width() > 150);
|
|
|
|
QVERIFY(greenRect->height() > 150 && greenRect->height() < 190);
|
|
|
|
|
|
|
|
//verify end state ("")
|
|
|
|
QTRY_COMPARE(greenRect->x(), qreal(0));
|
|
|
|
QCOMPARE(greenRect->y(), qreal(10));
|
|
|
|
QCOMPARE(greenRect->width(), qreal(150));
|
|
|
|
QCOMPARE(greenRect->height(), qreal(190));
|
|
|
|
|
|
|
|
rect->setState("reanchored2");
|
|
|
|
|
|
|
|
//verify animation in progress
|
|
|
|
QTRY_VERIFY(greenRect->y() > 10 && greenRect->y() < 50);
|
|
|
|
QVERIFY(greenRect->height() > 125 && greenRect->height() < 190);
|
|
|
|
//NOTE: setting left/right anchors to undefined removes the anchors, but does not resize.
|
|
|
|
QCOMPARE(greenRect->x(), qreal(0));
|
|
|
|
QCOMPARE(greenRect->width(), qreal(150));
|
|
|
|
|
|
|
|
//verify end state ("reanchored2")
|
|
|
|
QTRY_COMPARE(greenRect->y(), qreal(50));
|
|
|
|
QCOMPARE(greenRect->height(), qreal(125));
|
|
|
|
QCOMPARE(greenRect->x(), qreal(0));
|
|
|
|
QCOMPARE(greenRect->width(), qreal(150));
|
|
|
|
|
|
|
|
rect->setState("reanchored");
|
|
|
|
|
|
|
|
//verify animation in progress
|
|
|
|
QTRY_VERIFY(greenRect->x() < 10 && greenRect->x() > 0);
|
|
|
|
QVERIFY(greenRect->y() > 0 && greenRect->y() < 50);
|
|
|
|
QVERIFY(greenRect->width() < 190 && greenRect->width() > 150);
|
|
|
|
QVERIFY(greenRect->height() > 125 && greenRect->height() < 150);
|
|
|
|
|
|
|
|
//verify end state ("reanchored")
|
|
|
|
QTRY_COMPARE(greenRect->x(), qreal(10));
|
|
|
|
QCOMPARE(greenRect->y(), qreal(0));
|
|
|
|
QCOMPARE(greenRect->width(), qreal(190));
|
|
|
|
QCOMPARE(greenRect->height(), qreal(150));
|
|
|
|
|
|
|
|
rect->setState("reanchored2");
|
|
|
|
|
|
|
|
//verify animation in progress
|
|
|
|
QTRY_VERIFY(greenRect->x() < 10 && greenRect->x() > 0);
|
|
|
|
QVERIFY(greenRect->y() > 0 && greenRect->y() < 50);
|
|
|
|
QVERIFY(greenRect->width() < 190 && greenRect->width() > 150);
|
|
|
|
QVERIFY(greenRect->height() > 125 && greenRect->height() < 150);
|
|
|
|
|
|
|
|
//verify end state ("reanchored2")
|
|
|
|
QTRY_COMPARE(greenRect->x(), qreal(0));
|
|
|
|
QCOMPARE(greenRect->y(), qreal(50));
|
|
|
|
QCOMPARE(greenRect->width(), qreal(150));
|
|
|
|
QCOMPARE(greenRect->height(), qreal(125));
|
|
|
|
|
|
|
|
delete rect;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::reparent()
|
2012-01-25 00:32:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("reparent.qml"));
|
2012-01-25 00:32:43 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
|
|
|
QVERIFY(rect);
|
|
|
|
|
|
|
|
QQuickRectangle *target = rect->findChild<QQuickRectangle*>("target");
|
|
|
|
QVERIFY(target);
|
|
|
|
|
|
|
|
QCOMPARE(target->parentItem(), rect);
|
|
|
|
QCOMPARE(target->x(), qreal(0));
|
|
|
|
QCOMPARE(target->y(), qreal(0));
|
|
|
|
QCOMPARE(target->width(), qreal(50));
|
|
|
|
QCOMPARE(target->height(), qreal(50));
|
|
|
|
QCOMPARE(target->rotation(), qreal(0));
|
|
|
|
QCOMPARE(target->scale(), qreal(1));
|
|
|
|
|
|
|
|
rect->setState("state1");
|
|
|
|
|
|
|
|
QQuickRectangle *viaParent = rect->findChild<QQuickRectangle*>("viaParent");
|
|
|
|
QVERIFY(viaParent);
|
|
|
|
|
|
|
|
QQuickRectangle *newParent = rect->findChild<QQuickRectangle*>("newParent");
|
|
|
|
QVERIFY(newParent);
|
|
|
|
|
|
|
|
QTest::qWait(100);
|
|
|
|
|
|
|
|
//animation in progress
|
|
|
|
QTRY_COMPARE(target->parentItem(), viaParent);
|
|
|
|
QVERIFY(target->x() > -100 && target->x() < 50);
|
|
|
|
QVERIFY(target->y() > -100 && target->y() < 50);
|
|
|
|
QVERIFY(target->width() > 50 && target->width() < 100);
|
|
|
|
QCOMPARE(target->height(), qreal(50));
|
|
|
|
QCOMPARE(target->rotation(), qreal(-45));
|
|
|
|
QCOMPARE(target->scale(), qreal(.5));
|
|
|
|
|
|
|
|
//end state
|
|
|
|
QTRY_COMPARE(target->parentItem(), newParent);
|
|
|
|
QCOMPARE(target->x(), qreal(50));
|
|
|
|
QCOMPARE(target->y(), qreal(50));
|
|
|
|
QCOMPARE(target->width(), qreal(100));
|
|
|
|
QCOMPARE(target->height(), qreal(50));
|
|
|
|
QCOMPARE(target->rotation(), qreal(0));
|
|
|
|
QCOMPARE(target->scale(), qreal(1));
|
|
|
|
|
|
|
|
delete rect;
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::pathInterpolator()
|
2011-08-31 22:47:56 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathInterpolator.qml"));
|
|
|
|
QQuickPathInterpolator *interpolator = qobject_cast<QQuickPathInterpolator*>(c.create());
|
2011-08-31 22:47:56 +00:00
|
|
|
QVERIFY(interpolator);
|
|
|
|
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(0));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(50));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(50));
|
|
|
|
QCOMPARE(interpolator->angle(), qreal(0));
|
|
|
|
|
|
|
|
interpolator->setProgress(.5);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(.5));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(175));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(175));
|
2012-01-19 00:09:40 +00:00
|
|
|
QCOMPARE(interpolator->angle(), qreal(90));
|
2011-08-31 22:47:56 +00:00
|
|
|
|
|
|
|
interpolator->setProgress(1);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(1));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(300));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(300));
|
|
|
|
QCOMPARE(interpolator->angle(), qreal(0));
|
2012-03-22 04:07:28 +00:00
|
|
|
|
|
|
|
//for path interpulator the progress value must be [0,1] range.
|
|
|
|
interpolator->setProgress(1.1);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(1));
|
|
|
|
|
|
|
|
interpolator->setProgress(-0.000123);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(0));
|
2011-08-31 22:47:56 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::pathInterpolatorBackwardJump()
|
2011-09-29 23:04:11 +00:00
|
|
|
{
|
2014-01-21 08:15:49 +00:00
|
|
|
#ifdef Q_CC_MINGW
|
|
|
|
QSKIP("QTBUG-36290 - MinGW Animation tests are flaky.");
|
|
|
|
#endif
|
2012-01-04 01:08:24 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathInterpolatorBack.qml"));
|
|
|
|
QQuickPathInterpolator *interpolator = qobject_cast<QQuickPathInterpolator*>(c.create());
|
2012-01-04 01:08:24 +00:00
|
|
|
QVERIFY(interpolator);
|
|
|
|
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(0));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(50));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(50));
|
2012-01-19 00:09:40 +00:00
|
|
|
QCOMPARE(interpolator->angle(), qreal(90));
|
2012-01-04 01:08:24 +00:00
|
|
|
|
|
|
|
interpolator->setProgress(.5);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(.5));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(100));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(75));
|
2012-01-19 00:09:40 +00:00
|
|
|
QCOMPARE(interpolator->angle(), qreal(270));
|
2012-01-04 01:08:24 +00:00
|
|
|
|
|
|
|
interpolator->setProgress(1);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(1));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(200));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(50));
|
|
|
|
QCOMPARE(interpolator->angle(), qreal(0));
|
|
|
|
|
|
|
|
//make sure we don't get caught in infinite loop here
|
|
|
|
interpolator->setProgress(0);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(0));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(50));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(50));
|
2012-01-19 00:09:40 +00:00
|
|
|
QCOMPARE(interpolator->angle(), qreal(90));
|
2012-01-04 01:08:24 +00:00
|
|
|
}
|
2011-09-29 23:04:11 +00:00
|
|
|
|
2012-01-04 01:08:24 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathInterpolatorBack2.qml"));
|
|
|
|
QQuickPathInterpolator *interpolator = qobject_cast<QQuickPathInterpolator*>(c.create());
|
2012-01-04 01:08:24 +00:00
|
|
|
QVERIFY(interpolator);
|
|
|
|
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(0));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(200));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(280));
|
|
|
|
QCOMPARE(interpolator->angle(), qreal(180));
|
|
|
|
|
|
|
|
interpolator->setProgress(1);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(1));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(0));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(80));
|
|
|
|
QCOMPARE(interpolator->angle(), qreal(180));
|
|
|
|
|
|
|
|
//make sure we don't get caught in infinite loop here
|
|
|
|
interpolator->setProgress(0);
|
|
|
|
QCOMPARE(interpolator->progress(), qreal(0));
|
|
|
|
QCOMPARE(interpolator->x(), qreal(200));
|
|
|
|
QCOMPARE(interpolator->y(), qreal(280));
|
|
|
|
QCOMPARE(interpolator->angle(), qreal(180));
|
|
|
|
}
|
2011-09-29 23:04:11 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::pathWithNoStart()
|
2011-09-07 02:39:58 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathAnimationNoStart.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *redRect = rect->findChild<QQuickRectangle*>();
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(redRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickPathAnimation *pathAnim = rect->findChild<QQuickPathAnimation*>();
|
2011-09-07 02:39:58 +00:00
|
|
|
QVERIFY(pathAnim);
|
|
|
|
|
|
|
|
pathAnim->start();
|
|
|
|
pathAnim->pause();
|
|
|
|
QCOMPARE(redRect->x(), qreal(50));
|
|
|
|
QCOMPARE(redRect->y(), qreal(50));
|
|
|
|
|
|
|
|
pathAnim->setCurrentTime(50);
|
|
|
|
QCOMPARE(redRect->x(), qreal(175));
|
|
|
|
QCOMPARE(redRect->y(), qreal(175));
|
|
|
|
|
|
|
|
pathAnim->setCurrentTime(100);
|
|
|
|
QCOMPARE(redRect->x(), qreal(300));
|
|
|
|
QCOMPARE(redRect->y(), qreal(300));
|
|
|
|
|
|
|
|
redRect->setX(100);
|
|
|
|
redRect->setY(100);
|
|
|
|
pathAnim->start();
|
|
|
|
QCOMPARE(redRect->x(), qreal(100));
|
|
|
|
QCOMPARE(redRect->y(), qreal(100));
|
|
|
|
QTRY_COMPARE(redRect->x(), qreal(300));
|
|
|
|
QCOMPARE(redRect->y(), qreal(300));
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::alwaysRunToEnd()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("x");
|
|
|
|
animation.setTo(200);
|
|
|
|
animation.setDuration(1000);
|
|
|
|
animation.setLoops(-1);
|
|
|
|
animation.setAlwaysRunToEnd(true);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.loops(), -1);
|
2015-07-24 11:39:05 +00:00
|
|
|
QVERIFY(animation.alwaysRunToEnd());
|
2014-09-17 12:56:54 +00:00
|
|
|
|
|
|
|
QElapsedTimer timer;
|
|
|
|
timer.start();
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
2014-09-17 12:56:54 +00:00
|
|
|
|
|
|
|
// Make sure the animation has started but is not finished, yet.
|
|
|
|
QTRY_VERIFY(rect.x() > qreal(0) && rect.x() != qreal(200));
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.stop();
|
2014-09-17 12:56:54 +00:00
|
|
|
|
|
|
|
// Make sure it didn't just jump to the end and also didn't revert to the start.
|
|
|
|
QVERIFY(rect.x() > qreal(0) && rect.x() != qreal(200));
|
|
|
|
|
|
|
|
// Make sure it eventually reaches the end.
|
|
|
|
QTRY_COMPARE(rect.x(), qreal(200));
|
|
|
|
|
|
|
|
// This should have taken at least 1s but less than 2s
|
|
|
|
// (otherwise it has run the animation twice).
|
|
|
|
qint64 elapsed = timer.elapsed();
|
|
|
|
QVERIFY(elapsed >= 1000 && elapsed < 2000);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::complete()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("x");
|
|
|
|
animation.setFrom(1);
|
|
|
|
animation.setTo(200);
|
|
|
|
animation.setDuration(500);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.from().toInt(), 1);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
|
|
|
QTest::qWait(50);
|
|
|
|
animation.stop();
|
|
|
|
QVERIFY(rect.x() != qreal(200));
|
|
|
|
animation.start();
|
2014-09-17 12:56:54 +00:00
|
|
|
QTRY_VERIFY(animation.isRunning());
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.complete();
|
|
|
|
QCOMPARE(rect.x(), qreal(200));
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::resume()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("x");
|
|
|
|
animation.setFrom(10);
|
|
|
|
animation.setTo(200);
|
|
|
|
animation.setDuration(1000);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.from().toInt(), 10);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
animation.start();
|
|
|
|
QTest::qWait(400);
|
|
|
|
animation.pause();
|
|
|
|
qreal x = rect.x();
|
|
|
|
QVERIFY(x != qreal(200) && x != qreal(10));
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QVERIFY(animation.isPaused());
|
|
|
|
|
|
|
|
animation.resume();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
QVERIFY(!animation.isPaused());
|
|
|
|
QTest::qWait(400);
|
|
|
|
animation.stop();
|
|
|
|
QVERIFY(rect.x() > x);
|
2012-03-16 13:15:00 +00:00
|
|
|
|
|
|
|
animation.start();
|
|
|
|
QVERIFY(animation.isRunning());
|
|
|
|
animation.pause();
|
|
|
|
QVERIFY(animation.isPaused());
|
|
|
|
animation.resume();
|
|
|
|
QVERIFY(!animation.isPaused());
|
|
|
|
|
|
|
|
QSignalSpy spy(&animation, SIGNAL(pausedChanged(bool)));
|
|
|
|
animation.pause();
|
|
|
|
QCOMPARE(spy.count(), 1);
|
|
|
|
QVERIFY(animation.isPaused());
|
|
|
|
animation.stop();
|
|
|
|
QVERIFY(!animation.isPaused());
|
|
|
|
QCOMPARE(spy.count(), 2);
|
|
|
|
|
2012-07-25 06:59:17 +00:00
|
|
|
// Load QtQuick to ensure that QQuickPropertyAnimation is registered as PropertyAnimation
|
|
|
|
{
|
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent component(&engine);
|
|
|
|
component.setData("import QtQuick 2.0\nQtObject {}\n", QUrl());
|
|
|
|
}
|
|
|
|
|
2012-03-16 13:15:00 +00:00
|
|
|
QByteArray message = "<Unknown File>: QML PropertyAnimation: setPaused() cannot be used when animation isn't running.";
|
|
|
|
QTest::ignoreMessage(QtWarningMsg, message);
|
|
|
|
animation.pause();
|
|
|
|
QCOMPARE(spy.count(), 2);
|
|
|
|
QVERIFY(!animation.isPaused());
|
|
|
|
animation.resume();
|
|
|
|
QVERIFY(!animation.isPaused());
|
|
|
|
QVERIFY(!animation.isRunning());
|
|
|
|
QCOMPARE(spy.count(), 2);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::dotProperty()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickNumberAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("border.width");
|
|
|
|
animation.setTo(10);
|
|
|
|
animation.start();
|
|
|
|
QTest::qWait(animation.duration()+50);
|
2011-07-11 03:47:51 +00:00
|
|
|
QTIMED_COMPARE(rect.border()->width(), 10.0);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
rect.border()->setWidth(0);
|
|
|
|
animation.start();
|
|
|
|
animation.pause();
|
|
|
|
animation.setCurrentTime(125);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.currentTime(), 125);
|
2011-07-11 03:47:51 +00:00
|
|
|
QCOMPARE(rect.border()->width(), 5.0);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::badTypes()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
//don't crash
|
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickView *view = new QQuickView;
|
2011-12-21 08:06:26 +00:00
|
|
|
view->setSource(testFileUrl("badtype1.qml"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
qApp->processEvents();
|
|
|
|
|
|
|
|
delete view;
|
|
|
|
}
|
|
|
|
|
|
|
|
//make sure we get a compiler error
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("badtype2.qml"));
|
|
|
|
QTest::ignoreMessage(QtWarningMsg, "QQmlComponent: Component is not ready");
|
2011-04-27 10:05:43 +00:00
|
|
|
c.create();
|
|
|
|
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(c.errors().count(), 1);
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(c.errors().at(0).description(), QLatin1String("Invalid property assignment: number expected"));
|
|
|
|
}
|
|
|
|
|
|
|
|
//make sure we get a compiler error
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("badtype3.qml"));
|
|
|
|
QTest::ignoreMessage(QtWarningMsg, "QQmlComponent: Component is not ready");
|
2011-04-27 10:05:43 +00:00
|
|
|
c.create();
|
|
|
|
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(c.errors().count(), 1);
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(c.errors().at(0).description(), QLatin1String("Invalid property assignment: color expected"));
|
|
|
|
}
|
|
|
|
|
|
|
|
//don't crash
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("badtype4.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("state1");
|
2014-09-17 12:56:54 +00:00
|
|
|
|
|
|
|
QQuickRectangle *myRect = 0;
|
|
|
|
QTRY_VERIFY(myRect = rect->findChild<QQuickRectangle*>("MyRect"));
|
|
|
|
QTRY_COMPARE(myRect->x(),qreal(200));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::badProperties()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
//make sure we get a runtime error
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c1(&engine, testFileUrl("badproperty1.qml"));
|
2011-12-21 08:06:26 +00:00
|
|
|
QByteArray message = testFileUrl("badproperty1.qml").toString().toUtf8() + ":18:9: QML ColorAnimation: Cannot animate non-existent property \"border.colr\"";
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::ignoreMessage(QtWarningMsg, message);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c1.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c2(&engine, testFileUrl("badproperty2.qml"));
|
2011-12-21 08:06:26 +00:00
|
|
|
message = testFileUrl("badproperty2.qml").toString().toUtf8() + ":18:9: QML ColorAnimation: Cannot animate read-only property \"border\"";
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::ignoreMessage(QtWarningMsg, message);
|
2011-10-14 08:51:42 +00:00
|
|
|
rect = qobject_cast<QQuickRectangle*>(c2.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
|
|
|
//### should we warn here are well?
|
|
|
|
//rect->setState("state1");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//test animating mixed types with property animation in a transition
|
|
|
|
//for example, int + real; color + real; etc
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::mixedTypes()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
//assumes border.width stays a real -- not real robust
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("mixedtype1.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("state1");
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::qWait(500);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("MyRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
|
2014-09-17 12:56:54 +00:00
|
|
|
// We cannot get that more exact than that without dependable real-time behavior.
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect->x() > 100 && myRect->x() < 200);
|
|
|
|
QVERIFY(myRect->border()->width() > 1 && myRect->border()->width() < 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("mixedtype2.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("state1");
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::qWait(500);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("MyRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
|
2014-09-17 12:56:54 +00:00
|
|
|
// We cannot get that more exact than that without dependable real-time behavior.
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect->x() > 100 && myRect->x() < 200);
|
|
|
|
QVERIFY(myRect->color() != QColor("red") && myRect->color() != QColor("blue"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::properties()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
const int waitDuration = 300;
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("properties.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(200));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("properties2.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(200));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("properties3.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(300));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("properties4.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->y(),qreal(200));
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(100));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("properties5.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(100));
|
|
|
|
QTIMED_COMPARE(myRect->y(),qreal(200));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::propertiesTransition()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
const int waitDuration = 300;
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("propertiesTransition.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(200));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("propertiesTransition2.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(myRect->x(),qreal(200));
|
|
|
|
QCOMPARE(myRect->y(),qreal(100));
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->y(),qreal(200));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("propertiesTransition3.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(myRect->x(),qreal(200));
|
|
|
|
QCOMPARE(myRect->y(),qreal(100));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("propertiesTransition4.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(myRect->x(),qreal(100));
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(200));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("propertiesTransition5.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(myRect->x(),qreal(100));
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(200));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("propertiesTransition6.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
2011-04-27 10:05:43 +00:00
|
|
|
QCOMPARE(myRect->x(),qreal(100));
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(100));
|
|
|
|
}*/
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("propertiesTransition7.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
QTest::qWait(waitDuration);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(200));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::pathTransition()
|
2011-08-31 22:47:56 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathTransition.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-08-31 22:47:56 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("redRect");
|
2011-08-31 22:47:56 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
2011-08-31 22:47:56 +00:00
|
|
|
QTRY_VERIFY(myRect->x() < 500 && myRect->x() > 100 && myRect->y() > 50 && myRect->y() < 700 ); //animation started
|
|
|
|
QTRY_VERIFY(qFuzzyCompare(myRect->x(), qreal(100)) && qFuzzyCompare(myRect->y(), qreal(700)));
|
|
|
|
QTest::qWait(100);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("");
|
2011-08-31 22:47:56 +00:00
|
|
|
QTRY_VERIFY(myRect->x() < 500 && myRect->x() > 100 && myRect->y() > 50 && myRect->y() < 700 ); //animation started
|
|
|
|
QTRY_VERIFY(qFuzzyCompare(myRect->x(), qreal(500)) && qFuzzyCompare(myRect->y(), qreal(50)));
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::disabledTransition()
|
2011-08-04 00:30:46 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("disabledTransition.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-08-04 00:30:46 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *myRect = rect->findChild<QQuickRectangle*>("TheRect");
|
2011-08-04 00:30:46 +00:00
|
|
|
QVERIFY(myRect);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickTransition *trans = rect->findChild<QQuickTransition*>();
|
2011-08-04 00:30:46 +00:00
|
|
|
QVERIFY(trans);
|
|
|
|
|
|
|
|
QCOMPARE(trans->enabled(), false);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("moved");
|
2011-08-04 00:30:46 +00:00
|
|
|
QCOMPARE(myRect->x(),qreal(200));
|
|
|
|
|
|
|
|
trans->setEnabled(true);
|
2012-03-16 14:26:58 +00:00
|
|
|
QSignalSpy runningSpy(trans, SIGNAL(runningChanged()));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("");
|
2011-08-04 00:30:46 +00:00
|
|
|
QCOMPARE(myRect->x(),qreal(200));
|
2012-05-09 00:24:06 +00:00
|
|
|
QCOMPARE(runningSpy.count(), 1); //stopped -> running
|
|
|
|
QVERIFY(trans->running());
|
2011-08-04 00:30:46 +00:00
|
|
|
QTest::qWait(300);
|
|
|
|
QTIMED_COMPARE(myRect->x(),qreal(100));
|
2012-05-09 00:24:06 +00:00
|
|
|
QVERIFY(!trans->running());
|
|
|
|
QCOMPARE(runningSpy.count(), 2); //running -> stopped
|
2011-08-04 00:30:46 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::invalidDuration()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation *animation = new QQuickPropertyAnimation;
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::ignoreMessage(QtWarningMsg, "<Unknown File>: QML PropertyAnimation: Cannot set a duration of < 0");
|
|
|
|
animation->setDuration(-1);
|
|
|
|
QCOMPARE(animation->duration(), 250);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPauseAnimation *pauseAnimation = new QQuickPauseAnimation;
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::ignoreMessage(QtWarningMsg, "<Unknown File>: QML PauseAnimation: Cannot set a duration of < 0");
|
|
|
|
pauseAnimation->setDuration(-1);
|
|
|
|
QCOMPARE(pauseAnimation->duration(), 250);
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::attached()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("attached.qml"));
|
2011-11-18 15:41:08 +00:00
|
|
|
QTest::ignoreMessage(QtDebugMsg, "off");
|
|
|
|
QTest::ignoreMessage(QtDebugMsg, "on");
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::propertyValueSourceDefaultStart()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("valuesource.qml"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *myAnim = rect->findChild<QQuickAbstractAnimation*>("MyAnim");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myAnim);
|
|
|
|
QVERIFY(myAnim->isRunning());
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("valuesource2.qml"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *myAnim = rect->findChild<QQuickAbstractAnimation*>("MyAnim");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(myAnim);
|
2015-07-24 11:39:05 +00:00
|
|
|
QVERIFY(!myAnim->isRunning());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("dontAutoStart.qml"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *myAnim = rect->findChild<QQuickAbstractAnimation*>("MyAnim");
|
2012-02-03 02:26:37 +00:00
|
|
|
QVERIFY(myAnim && !myAnim->qtAnimation());
|
2015-07-24 13:32:22 +00:00
|
|
|
//QCOMPARE(myAnim->qtAnimation()->state(), QAbstractAnimationJob::Stopped);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::dontStart()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("dontStart.qml"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QString warning = c.url().toString() + ":14:13: QML NumberAnimation: setRunning() cannot be used on non-root animation nodes.";
|
|
|
|
QTest::ignoreMessage(QtWarningMsg, qPrintable(warning));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *myAnim = rect->findChild<QQuickAbstractAnimation*>("MyAnim");
|
2012-02-03 02:26:37 +00:00
|
|
|
QVERIFY(myAnim && !myAnim->qtAnimation());
|
2015-07-24 13:32:22 +00:00
|
|
|
//QCOMPARE(myAnim->qtAnimation()->state(), QAbstractAnimationJob::Stopped);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("dontStart2.qml"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QString warning = c.url().toString() + ":15:17: QML NumberAnimation: setRunning() cannot be used on non-root animation nodes.";
|
|
|
|
QTest::ignoreMessage(QtWarningMsg, qPrintable(warning));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *myAnim = rect->findChild<QQuickAbstractAnimation*>("MyAnim");
|
2012-02-03 02:26:37 +00:00
|
|
|
QVERIFY(myAnim && !myAnim->qtAnimation());
|
2015-07-24 13:32:22 +00:00
|
|
|
//QCOMPARE(myAnim->qtAnimation()->state(), QAbstractAnimationJob::Stopped);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::easingProperties()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-07-11 03:47:51 +00:00
|
|
|
QString componentStr = "import QtQuick 2.0\nNumberAnimation { easing.type: \"InOutQuad\" }";
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent animationComponent(&engine);
|
2011-04-27 10:05:43 +00:00
|
|
|
animationComponent.setData(componentStr.toLatin1(), QUrl::fromLocalFile(""));
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation *animObject = qobject_cast<QQuickPropertyAnimation*>(animationComponent.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QVERIFY(animObject != 0);
|
|
|
|
QCOMPARE(animObject->easing().type(), QEasingCurve::InOutQuad);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-07-11 03:47:51 +00:00
|
|
|
QString componentStr = "import QtQuick 2.0\nPropertyAnimation { easing.type: \"OutBounce\"; easing.amplitude: 5.0 }";
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent animationComponent(&engine);
|
2011-04-27 10:05:43 +00:00
|
|
|
animationComponent.setData(componentStr.toLatin1(), QUrl::fromLocalFile(""));
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation *animObject = qobject_cast<QQuickPropertyAnimation*>(animationComponent.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QVERIFY(animObject != 0);
|
|
|
|
QCOMPARE(animObject->easing().type(), QEasingCurve::OutBounce);
|
|
|
|
QCOMPARE(animObject->easing().amplitude(), 5.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-07-11 03:47:51 +00:00
|
|
|
QString componentStr = "import QtQuick 2.0\nPropertyAnimation { easing.type: \"OutElastic\"; easing.amplitude: 5.0; easing.period: 3.0}";
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent animationComponent(&engine);
|
2011-04-27 10:05:43 +00:00
|
|
|
animationComponent.setData(componentStr.toLatin1(), QUrl::fromLocalFile(""));
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation *animObject = qobject_cast<QQuickPropertyAnimation*>(animationComponent.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QVERIFY(animObject != 0);
|
|
|
|
QCOMPARE(animObject->easing().type(), QEasingCurve::OutElastic);
|
|
|
|
QCOMPARE(animObject->easing().amplitude(), 5.0);
|
|
|
|
QCOMPARE(animObject->easing().period(), 3.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-07-11 03:47:51 +00:00
|
|
|
QString componentStr = "import QtQuick 2.0\nPropertyAnimation { easing.type: \"InOutBack\"; easing.overshoot: 2 }";
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent animationComponent(&engine);
|
2011-04-27 10:05:43 +00:00
|
|
|
animationComponent.setData(componentStr.toLatin1(), QUrl::fromLocalFile(""));
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation *animObject = qobject_cast<QQuickPropertyAnimation*>(animationComponent.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QVERIFY(animObject != 0);
|
|
|
|
QCOMPARE(animObject->easing().type(), QEasingCurve::InOutBack);
|
|
|
|
QCOMPARE(animObject->easing().overshoot(), 2.0);
|
|
|
|
}
|
2011-12-08 00:36:44 +00:00
|
|
|
|
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-12-08 00:36:44 +00:00
|
|
|
QString componentStr = "import QtQuick 2.0\nPropertyAnimation { easing.type: \"Bezier\"; easing.bezierCurve: [0.5, 0.2, 0.13, 0.65, 1.0, 1.0] }";
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent animationComponent(&engine);
|
2011-12-08 00:36:44 +00:00
|
|
|
animationComponent.setData(componentStr.toLatin1(), QUrl::fromLocalFile(""));
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation *animObject = qobject_cast<QQuickPropertyAnimation*>(animationComponent.create());
|
2011-12-08 00:36:44 +00:00
|
|
|
|
|
|
|
QVERIFY(animObject != 0);
|
|
|
|
QCOMPARE(animObject->easing().type(), QEasingCurve::BezierSpline);
|
|
|
|
QList<QPointF> points = animObject->easing().cubicBezierSpline();
|
|
|
|
QCOMPARE(points.count(), 3);
|
|
|
|
QCOMPARE(points.at(0), QPointF(0.5, 0.2));
|
|
|
|
QCOMPARE(points.at(1), QPointF(0.13, 0.65));
|
|
|
|
QCOMPARE(points.at(2), QPointF(1.0, 1.0));
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::rotation()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("rotation.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rr = rect->findChild<QQuickRectangle*>("rr");
|
|
|
|
QQuickRectangle *rr2 = rect->findChild<QQuickRectangle*>("rr2");
|
|
|
|
QQuickRectangle *rr3 = rect->findChild<QQuickRectangle*>("rr3");
|
|
|
|
QQuickRectangle *rr4 = rect->findChild<QQuickRectangle*>("rr4");
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate::get(rect)->setState("state1");
|
2011-04-27 10:05:43 +00:00
|
|
|
QTest::qWait(800);
|
|
|
|
qreal r1 = rr->rotation();
|
|
|
|
qreal r2 = rr2->rotation();
|
|
|
|
qreal r3 = rr3->rotation();
|
|
|
|
qreal r4 = rr4->rotation();
|
|
|
|
|
|
|
|
QVERIFY(r1 > qreal(0) && r1 < qreal(370));
|
|
|
|
QVERIFY(r2 > qreal(0) && r2 < qreal(370));
|
|
|
|
QVERIFY(r3 < qreal(0) && r3 > qreal(-350));
|
|
|
|
QVERIFY(r4 > qreal(0) && r4 < qreal(10));
|
|
|
|
QCOMPARE(r1,r2);
|
|
|
|
QVERIFY(r4 < r2);
|
|
|
|
|
|
|
|
QTest::qWait(800);
|
|
|
|
QTIMED_COMPARE(rr->rotation() + rr2->rotation() + rr3->rotation() + rr4->rotation(), qreal(370*4));
|
|
|
|
}
|
|
|
|
|
2012-07-06 01:43:41 +00:00
|
|
|
void tst_qquickanimations::startStopSignals()
|
|
|
|
{
|
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("signals.qml"));
|
|
|
|
QQuickItem *root = qobject_cast<QQuickItem*>(c.create());
|
|
|
|
QVERIFY(root);
|
|
|
|
|
|
|
|
QCOMPARE(root->property("startedCount").toInt(), 1); //autostart
|
|
|
|
QCOMPARE(root->property("stoppedCount").toInt(), 0);
|
|
|
|
|
|
|
|
QMetaObject::invokeMethod(root, "stop");
|
|
|
|
|
|
|
|
QCOMPARE(root->property("startedCount").toInt(), 1);
|
|
|
|
QCOMPARE(root->property("stoppedCount").toInt(), 1);
|
|
|
|
|
2014-09-17 12:56:54 +00:00
|
|
|
QElapsedTimer timer;
|
|
|
|
timer.start();
|
2012-07-06 01:43:41 +00:00
|
|
|
QMetaObject::invokeMethod(root, "start");
|
|
|
|
|
|
|
|
QCOMPARE(root->property("startedCount").toInt(), 2);
|
|
|
|
QCOMPARE(root->property("stoppedCount").toInt(), 1);
|
|
|
|
|
|
|
|
QTRY_COMPARE(root->property("stoppedCount").toInt(), 2);
|
|
|
|
QCOMPARE(root->property("startedCount").toInt(), 2);
|
2014-09-17 12:56:54 +00:00
|
|
|
QVERIFY(timer.elapsed() >= 200);
|
2012-07-06 01:43:41 +00:00
|
|
|
|
|
|
|
root->setProperty("alwaysRunToEnd", true);
|
|
|
|
|
2014-09-17 12:56:54 +00:00
|
|
|
timer.restart();
|
2012-07-06 01:43:41 +00:00
|
|
|
QMetaObject::invokeMethod(root, "start");
|
|
|
|
|
|
|
|
QCOMPARE(root->property("startedCount").toInt(), 3);
|
|
|
|
QCOMPARE(root->property("stoppedCount").toInt(), 2);
|
|
|
|
|
|
|
|
QMetaObject::invokeMethod(root, "stop");
|
|
|
|
|
|
|
|
QCOMPARE(root->property("startedCount").toInt(), 3);
|
|
|
|
QCOMPARE(root->property("stoppedCount").toInt(), 2);
|
|
|
|
|
|
|
|
QTRY_COMPARE(root->property("stoppedCount").toInt(), 3);
|
|
|
|
QCOMPARE(root->property("startedCount").toInt(), 3);
|
2014-09-17 12:56:54 +00:00
|
|
|
QVERIFY(timer.elapsed() >= 200);
|
2012-07-06 01:43:41 +00:00
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::runningTrueBug()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
//ensure we start correctly when "running: true" is explicitly set
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("runningTrueBug.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect);
|
|
|
|
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *cloud = rect->findChild<QQuickRectangle*>("cloud");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(cloud);
|
|
|
|
QTest::qWait(1000);
|
|
|
|
QVERIFY(cloud->x() > qreal(0));
|
|
|
|
}
|
|
|
|
|
2012-03-22 04:07:28 +00:00
|
|
|
//QTBUG-24308
|
|
|
|
void tst_qquickanimations::pathAnimationInOutBackBug()
|
|
|
|
{
|
|
|
|
//ensure we don't pass bad progress value (out of [0,1]) to QQuickPath::backwardsPointAt()
|
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("pathAnimationInOutBackCrash.qml"));
|
|
|
|
QQuickItem *item = qobject_cast<QQuickItem*>(c.create());
|
|
|
|
QVERIFY(item);
|
|
|
|
|
|
|
|
QQuickRectangle *rect = item->findChild<QQuickRectangle *>("rect");
|
|
|
|
QVERIFY(rect);
|
|
|
|
QTest::qWait(1000);
|
|
|
|
QCOMPARE(rect->x(), qreal(0));
|
|
|
|
QCOMPARE(rect->y(), qreal(0));
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
//QTBUG-12805
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::nonTransitionBug()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
//tests that the animation values from the previous transition are properly cleared
|
|
|
|
//in the case where an animation in the transition doesn't match anything (but previously did)
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("nonTransitionBug.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect != 0);
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickItemPrivate *rectPrivate = QQuickItemPrivate::get(rect);
|
|
|
|
QQuickRectangle *mover = rect->findChild<QQuickRectangle*>("mover");
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
mover->setX(100);
|
|
|
|
QCOMPARE(mover->x(), qreal(100));
|
|
|
|
|
|
|
|
rectPrivate->setState("left");
|
|
|
|
QTRY_COMPARE(mover->x(), qreal(0));
|
|
|
|
|
|
|
|
mover->setX(100);
|
|
|
|
QCOMPARE(mover->x(), qreal(100));
|
|
|
|
|
|
|
|
//make sure we don't try to animate back to 0
|
|
|
|
rectPrivate->setState("free");
|
|
|
|
QTest::qWait(300);
|
|
|
|
QCOMPARE(mover->x(), qreal(100));
|
|
|
|
}
|
|
|
|
|
|
|
|
//QTBUG-14042
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::registrationBug()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("registrationBug.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect != 0);
|
|
|
|
QTRY_COMPARE(rect->property("value"), QVariant(int(100)));
|
|
|
|
}
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::doubleRegistrationBug()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("doubleRegistrationBug.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(rect != 0);
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *anim = rect->findChild<QQuickAbstractAnimation*>("animation");
|
2011-04-27 10:05:43 +00:00
|
|
|
QVERIFY(anim != 0);
|
2012-02-03 02:26:37 +00:00
|
|
|
QTRY_COMPARE(anim->qtAnimation()->state(), QAbstractAnimationJob::Stopped);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//QTBUG-16736
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::alwaysRunToEndRestartBug()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle rect;
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickPropertyAnimation animation;
|
2012-02-06 03:27:34 +00:00
|
|
|
animation.setTargetObject(&rect);
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.setProperty("x");
|
|
|
|
animation.setTo(200);
|
|
|
|
animation.setDuration(1000);
|
|
|
|
animation.setLoops(-1);
|
|
|
|
animation.setAlwaysRunToEnd(true);
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(animation.loops(), -1);
|
2015-07-24 11:39:05 +00:00
|
|
|
QVERIFY(animation.alwaysRunToEnd());
|
2011-04-27 10:05:43 +00:00
|
|
|
animation.start();
|
|
|
|
animation.stop();
|
|
|
|
animation.start();
|
|
|
|
animation.stop();
|
2014-09-17 12:56:54 +00:00
|
|
|
|
|
|
|
// Waiting for a fixed time here would be dangerous as the starting and stopping itself takes
|
|
|
|
// time and clocks are unreliable. The only thing we do know is that the animation should
|
|
|
|
// eventually start and eventually stop. As its duration is 1000ms we can be pretty sure to hit
|
|
|
|
// an in between state with the 50ms iterations QTRY_VERIFY does.
|
|
|
|
QTRY_VERIFY(rect.x() != qreal(200));
|
|
|
|
QTRY_COMPARE(rect.x(), qreal(200));
|
2012-02-16 04:43:03 +00:00
|
|
|
QCOMPARE(static_cast<QQuickAbstractAnimation*>(&animation)->qtAnimation()->state(), QAbstractAnimationJob::Stopped);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2011-07-25 06:43:55 +00:00
|
|
|
//QTBUG-20227
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::transitionAssignmentBug()
|
2011-07-25 06:43:55 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-07-25 06:43:55 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("transitionAssignmentBug.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-07-25 06:43:55 +00:00
|
|
|
QVERIFY(rect != 0);
|
|
|
|
|
|
|
|
QCOMPARE(rect->property("nullObject").toBool(), false);
|
|
|
|
}
|
|
|
|
|
2011-07-29 03:10:25 +00:00
|
|
|
//QTBUG-19080
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::pauseBindingBug()
|
2011-07-29 03:10:25 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-07-29 03:10:25 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("pauseBindingBug.qml"));
|
2011-10-14 08:51:42 +00:00
|
|
|
QQuickRectangle *rect = qobject_cast<QQuickRectangle*>(c.create());
|
2011-07-29 03:10:25 +00:00
|
|
|
QVERIFY(rect != 0);
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *anim = rect->findChild<QQuickAbstractAnimation*>("animation");
|
2015-07-24 13:32:22 +00:00
|
|
|
QCOMPARE(anim->qtAnimation()->state(), QAbstractAnimationJob::Paused);
|
2011-07-29 03:10:25 +00:00
|
|
|
|
|
|
|
delete rect;
|
|
|
|
}
|
|
|
|
|
2011-08-01 00:43:54 +00:00
|
|
|
//QTBUG-13598
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::pauseBug()
|
2011-08-01 00:43:54 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2011-08-01 00:43:54 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("pauseBug.qml"));
|
|
|
|
QQuickAbstractAnimation *anim = qobject_cast<QQuickAbstractAnimation*>(c.create());
|
2011-08-01 00:43:54 +00:00
|
|
|
QVERIFY(anim != 0);
|
2012-02-03 02:26:37 +00:00
|
|
|
QCOMPARE(anim->qtAnimation()->state(), QAbstractAnimationJob::Paused);
|
2011-08-01 00:43:54 +00:00
|
|
|
QCOMPARE(anim->isPaused(), true);
|
|
|
|
QCOMPARE(anim->isRunning(), true);
|
|
|
|
|
|
|
|
delete anim;
|
|
|
|
}
|
|
|
|
|
2012-01-25 00:32:43 +00:00
|
|
|
//QTBUG-23092
|
2012-02-16 04:43:03 +00:00
|
|
|
void tst_qquickanimations::loopingBug()
|
2012-01-25 00:32:43 +00:00
|
|
|
{
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlEngine engine;
|
2012-01-25 00:32:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQmlComponent c(&engine, testFileUrl("looping.qml"));
|
2012-01-25 00:32:43 +00:00
|
|
|
QObject *obj = c.create();
|
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QQuickAbstractAnimation *anim = obj->findChild<QQuickAbstractAnimation*>();
|
2012-01-25 00:32:43 +00:00
|
|
|
QVERIFY(anim != 0);
|
|
|
|
QCOMPARE(anim->qtAnimation()->totalDuration(), 300);
|
|
|
|
QCOMPARE(anim->isRunning(), true);
|
|
|
|
QTRY_COMPARE(static_cast<QAnimationGroupJob*>(anim->qtAnimation())->firstChild()->currentLoop(), 2);
|
|
|
|
QTRY_COMPARE(anim->isRunning(), false);
|
|
|
|
|
|
|
|
QQuickRectangle *rect = obj->findChild<QQuickRectangle*>();
|
|
|
|
QVERIFY(rect != 0);
|
|
|
|
QCOMPARE(rect->rotation(), qreal(90));
|
|
|
|
|
|
|
|
delete obj;
|
|
|
|
}
|
|
|
|
|
2012-02-27 23:48:27 +00:00
|
|
|
//QTBUG-24532
|
2012-03-05 01:39:24 +00:00
|
|
|
void tst_qquickanimations::anchorBug()
|
2012-02-27 23:48:27 +00:00
|
|
|
{
|
|
|
|
QQuickAnchorAnimation animation;
|
|
|
|
animation.setDuration(5000);
|
|
|
|
animation.setEasing(QEasingCurve(QEasingCurve::InOutBack));
|
|
|
|
animation.start();
|
|
|
|
animation.pause();
|
|
|
|
|
|
|
|
QCOMPARE(animation.qtAnimation()->duration(), 5000);
|
2012-03-05 01:39:24 +00:00
|
|
|
QCOMPARE(static_cast<QQuickBulkValueAnimator*>(animation.qtAnimation())->easingCurve(), QEasingCurve(QEasingCurve::InOutBack));
|
2012-02-27 23:48:27 +00:00
|
|
|
}
|
|
|
|
|
2012-05-09 01:50:01 +00:00
|
|
|
//ScriptAction should not match a StateChangeScript if no scriptName has been specified
|
|
|
|
void tst_qquickanimations::scriptActionBug()
|
|
|
|
{
|
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("scriptActionBug.qml"));
|
|
|
|
QObject *obj = c.create();
|
|
|
|
|
|
|
|
//Both the ScriptAction and StateChangeScript should be triggered
|
|
|
|
QCOMPARE(obj->property("actionTriggered").toBool(), true);
|
|
|
|
QCOMPARE(obj->property("actionTriggered").toBool(), true);
|
|
|
|
}
|
|
|
|
|
2013-11-14 16:53:58 +00:00
|
|
|
//QTBUG-34851
|
|
|
|
void tst_qquickanimations::groupAnimationNullChildBug()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
QQmlEngine engine;
|
|
|
|
|
|
|
|
QQmlComponent c(&engine, testFileUrl("sequentialAnimationNullChildBug.qml"));
|
|
|
|
QQuickItem *root = qobject_cast<QQuickItem*>(c.create());
|
|
|
|
QVERIFY(root);
|
|
|
|
|
|
|
|
delete root;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
QQmlEngine engine;
|
|
|
|
|
|
|
|
QQmlComponent c(&engine, testFileUrl("parallelAnimationNullChildBug.qml"));
|
|
|
|
QQuickItem *root = qobject_cast<QQuickItem*>(c.create());
|
|
|
|
QVERIFY(root);
|
|
|
|
|
|
|
|
delete root;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-12 15:44:28 +00:00
|
|
|
//ScriptAction should not crash if changing a state in a transition
|
|
|
|
void tst_qquickanimations::scriptActionCrash()
|
|
|
|
{
|
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("scriptActionCrash.qml"));
|
|
|
|
QObject *obj = c.create();
|
|
|
|
|
|
|
|
//just testing that we don't crash
|
|
|
|
QTest::qWait(1000); //5x transition duration
|
|
|
|
|
|
|
|
delete obj;
|
|
|
|
}
|
|
|
|
|
2015-12-07 08:04:00 +00:00
|
|
|
// QTBUG-49364
|
|
|
|
// Test that we don't crash when the target of an Animator becomes
|
|
|
|
// invalid between the time the animator is started and the time the
|
|
|
|
// animator job is actually started
|
|
|
|
void tst_qquickanimations::animatorInvalidTargetCrash()
|
|
|
|
{
|
|
|
|
QQmlEngine engine;
|
|
|
|
QQmlComponent c(&engine, testFileUrl("animatorInvalidTargetCrash.qml"));
|
|
|
|
QObject *obj = c.create();
|
2014-03-12 15:44:28 +00:00
|
|
|
|
2015-12-07 08:04:00 +00:00
|
|
|
//just testing that we don't crash
|
|
|
|
QTest::qWait(5000); //animator duration
|
|
|
|
|
|
|
|
delete obj;
|
|
|
|
}
|
2013-11-14 16:53:58 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
QTEST_MAIN(tst_qquickanimations)
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-02-16 04:43:03 +00:00
|
|
|
#include "tst_qquickanimations.moc"
|