aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanimators
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@digia.com>2013-09-24 12:51:36 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-26 20:08:19 +0200
commit0150202cc710e580695656fee049bf25091c0ded (patch)
tree217f5fbf792b5d40baeea0916064bb0ac2050b84 /tests/auto/quick/qquickanimators
parentc40d9f64a6bd9671edc807bc74cf5b73c7465250 (diff)
Allow animators to work properly with multiple windows
Change-Id: I5ba663ba0fa089ea786cf43cb4dfa40cbc955342 Reviewed-by: Alan Alpert (Personal) <416365416c@gmail.com>
Diffstat (limited to 'tests/auto/quick/qquickanimators')
-rw-r--r--tests/auto/quick/qquickanimators/data/Box.qml70
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_behavior.qml74
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_mixedparallel.qml74
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_mixedsequential.qml74
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_nested.qml92
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_on.qml79
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_opacity.qml76
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_parallel.qml74
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_restart.qml85
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_rotation.qml74
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_sequential.qml74
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_transformorigin.qml160
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_transition.qml91
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_x.qml77
-rw-r--r--tests/auto/quick/qquickanimators/data/tst_y.qml77
-rw-r--r--tests/auto/quick/qquickanimators/data/windowWithAnimator.qml (renamed from tests/auto/quick/qquickanimators/data/tst_scale.qml)39
-rw-r--r--tests/auto/quick/qquickanimators/qquickanimators.pro14
-rw-r--r--tests/auto/quick/qquickanimators/tst_qquickanimators.cpp73
18 files changed, 90 insertions, 1287 deletions
diff --git a/tests/auto/quick/qquickanimators/data/Box.qml b/tests/auto/quick/qquickanimators/data/Box.qml
deleted file mode 100644
index cff3e7f929..0000000000
--- a/tests/auto/quick/qquickanimators/data/Box.qml
+++ /dev/null
@@ -1,70 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-
-Rectangle {
- id: box
- gradient: Gradient {
- GradientStop { position: 0.1; color: "red" }
- GradientStop { position: 0.9; color: "blue" }
- }
- width: 100
- height: 100
- anchors.centerIn: parent
- antialiasing: true
-
- property int rotationChangeCounter: 0
- onRotationChanged: ++rotationChangeCounter;
-
- property int scaleChangeCounter: 0
- onScaleChanged: ++scaleChangeCounter;
-
- property int opacityChangeCounter: 0
- onOpacityChanged: ++opacityChangeCounter
-
- property int xChangeCounter: 0;
- onXChanged: ++xChangeCounter;
-
- property int yChangeCounter: 0;
- onYChanged: ++yChangeCounter;
-
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_behavior.qml b/tests/auto/quick/qquickanimators/data/tst_behavior.qml
deleted file mode 100644
index b22cc93b09..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_behavior.qml
+++ /dev/null
@@ -1,74 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testcase
- name: "behavior"
- when: box.scale == 2
- function test_endresult() {
- compare(box.scaleChangeCounter, 1);
- compare(box.scale, 2);
- var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(1, 0, 0, 1));
- compare(image.pixel(199, 199), Qt.rgba(0, 0, 1, 1));
- }
- }
-
- Box {
- id: box
- Behavior on scale { ScaleAnimator { id: animation; duration: 300; } }
- }
-
- Timer {
- interval: 1000;
- repeat: false
- running: true
- onTriggered: box.scale = 2
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_mixedparallel.qml b/tests/auto/quick/qquickanimators/data/tst_mixedparallel.qml
deleted file mode 100644
index 9cd28f2493..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_mixedparallel.qml
+++ /dev/null
@@ -1,74 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testcase
- name: "mixedparallel"
- when: !animation.running
- function test_endresult() {
- compare(box.rotationChangeCounter, 1);
- compare(box.scale, 2);
- compare(box.rotation, 180);
- var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(0, 0, 1, 1));
- compare(image.pixel(199, 199), Qt.rgba(1, 0, 0, 1));
- }
- }
-
- Box {
- id: box
- ParallelAnimation {
- id: animation
- NumberAnimation { target: box; property: "scale"; from: 1; to: 2.0; duration: 1000; }
- RotationAnimator { target: box; from: 0; to: 180; duration: 1000; }
- running: true
- loops: 1;
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_mixedsequential.qml b/tests/auto/quick/qquickanimators/data/tst_mixedsequential.qml
deleted file mode 100644
index 4c62bc8018..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_mixedsequential.qml
+++ /dev/null
@@ -1,74 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testcase
- name: "mixedsequential"
- when: !animation.running
- function test_endresult() {
- compare(box.rotationChangeCounter, 1);
- compare(box.scale, 2);
- compare(box.rotation, 180);
- var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(0, 0, 1, 1));
- compare(image.pixel(199, 199), Qt.rgba(1, 0, 0, 1));
- }
- }
-
- Box {
- id: box
- ParallelAnimation {
- id: animation
- NumberAnimation { target: box; property: "scale"; from: 1; to: 2.0; duration: 500; }
- RotationAnimator { target: box; from: 0; to: 180; duration: 500; }
- running: true
- loops: 1;
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_nested.qml b/tests/auto/quick/qquickanimators/data/tst_nested.qml
deleted file mode 100644
index 95cb70cb48..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_nested.qml
+++ /dev/null
@@ -1,92 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testCase
- name: "nested"
- when: !animation.running
- function test_endresult() {
- compare(box.before, 2);
- compare(box.after, 2);
- }
- }
-
- Box {
- id: box
-
- anchors.centerIn: undefined
-
- property int before: 0;
- property int after: 0;
-
- SequentialAnimation {
- id: animation;
- ScriptAction { script: box.before++; }
- ParallelAnimation {
- ScaleAnimator { target: box; from: 2.0; to: 1; duration: 500; }
- OpacityAnimator { target: box; from: 0; to: 1; duration: 500; }
- }
- PauseAnimation { duration: 500 }
- SequentialAnimation {
- ParallelAnimation {
- XAnimator { target: box; from: 0; to: 100; duration: 500}
- RotationAnimator { target: box; from: 0; to: 90; duration: 500 }
- }
- ParallelAnimation {
- XAnimator { target: box; from: 100; to: 0; duration: 500 }
- RotationAnimator { target: box; from: 90; to: 0; duration: 500 }
- }
- }
- ScriptAction { script: box.after++; }
- running: true
- loops: 2
- }
- }
-
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_on.qml b/tests/auto/quick/qquickanimators/data/tst_on.qml
deleted file mode 100644
index e48d7107f9..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_on.qml
+++ /dev/null
@@ -1,79 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testCase
- name: "on"
- when: !animx.running && !animy.running
- && !anims.running && !animr.running
- && !animo.running;
- function test_endresult() {
- compare(box.xChangeCounter, 1);
- compare(box.yChangeCounter, 1);
- compare(box.scaleChangeCounter, 1);
- compare(box.rotationChangeCounter, 1);
- compare(box.opacityChangeCounter, 1);
- compare(box.x, 100);
- compare(box.y, 100);
- compare(box.scale, 2);
- compare(box.rotation, 180);
- compare(box.opacity, 0.5);
- }
- }
-
- Box {
- id: box
- anchors.centerIn: undefined
- XAnimator on x { id: animx; from: 0; to: 100; duration: 1000 }
- YAnimator on y { id: animy; from: 0; to: 100; duration: 1000 }
- ScaleAnimator on scale { id: anims; from: 1; to: 2; duration: 1000 }
- RotationAnimator on rotation { id: animr ; from: 0; to: 180; duration: 1000 }
- OpacityAnimator on opacity { id: animo; from: 1; to: 0.5; duration: 1000 }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_opacity.qml b/tests/auto/quick/qquickanimators/data/tst_opacity.qml
deleted file mode 100644
index a785b2b3f3..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_opacity.qml
+++ /dev/null
@@ -1,76 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testCase
- name: "opacity"
- when: !animation.running
- function test_endresult() {
- compare(box.opacityChangeCounter, 1);
- compare(box.opacity, 0.5);
- var image = grabImage(root);
- compare(image.red(50, 50), 255);
- verify(image.green(50, 50) > 0);
- verify(image.blue(50, 50) > 0);
- }
- }
-
- Box {
- id: box
-
- OpacityAnimator {
- id: animation
- target: box
- from: 1;
- to: 0.5
- duration: 1000
- running: true
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_parallel.qml b/tests/auto/quick/qquickanimators/data/tst_parallel.qml
deleted file mode 100644
index 3105d3c2dd..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_parallel.qml
+++ /dev/null
@@ -1,74 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testcase
- name: "parallel"
- when: !animation.running
- function test_endresult() {
- compare(box.rotationChangeCounter, 1);
- compare(box.scaleChangeCounter, 1);
- compare(box.scale, 2);
- compare(box.rotation, 180);
- var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(0, 0, 1, 1));
- compare(image.pixel(199, 199), Qt.rgba(1, 0, 0, 1));
- }
- }
-
- Box {
- id: box
- ParallelAnimation {
- id: animation
- ScaleAnimator { target: box; from: 1; to: 2.0; duration: 1000; }
- RotationAnimator { target: box; from: 0; to: 180; duration: 1000; }
- running: true
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_restart.qml b/tests/auto/quick/qquickanimators/data/tst_restart.qml
deleted file mode 100644
index 42c7a33a8b..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_restart.qml
+++ /dev/null
@@ -1,85 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- property int restartCount: 5;
-
- TestCase {
- id: testcase
- name: "restart"
- when: root.restartCount == 0 && animation.running == false;
- function test_endresult() {
- compare(box.scale, 2);
- }
- }
-
- Box {
- id: box
-
- ScaleAnimator {
- id: animation
- target: box;
- from: 1;
- to: 2.0;
- duration: 100;
- loops: 1
- running: false;
- }
-
- Timer {
- id: timer;
- interval: 500
- running: true
- repeat: true
- onTriggered: {
- animation.running = true;
- --root.restartCount;
- }
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_rotation.qml b/tests/auto/quick/qquickanimators/data/tst_rotation.qml
deleted file mode 100644
index 517cf59456..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_rotation.qml
+++ /dev/null
@@ -1,74 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testCase
- name: "rotation"
- when: !animation.running
- function test_endresult() {
- compare(box.rotationChangeCounter, 1);
- compare(box.rotation, 180);
- var image = grabImage(root);
- compare(image.pixel(50, 50), Qt.rgba(0, 0, 1));
- }
- }
-
- Box {
- id: box
- RotationAnimator {
- id: animation
- target: box
- from: 0;
- to: 180
- duration: 1000
- easing.type: Easing.InOutBack
- running: true
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_sequential.qml b/tests/auto/quick/qquickanimators/data/tst_sequential.qml
deleted file mode 100644
index 2bb14f8acf..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_sequential.qml
+++ /dev/null
@@ -1,74 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testcase
- name: "parallel"
- when: !animation.running
- function test_endresult() {
- compare(box.rotationChangeCounter, 1);
- compare(box.scaleChangeCounter, 1);
- compare(box.scale, 2);
- compare(box.rotation, 180);
- var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(0, 0, 1, 1));
- compare(image.pixel(199, 199), Qt.rgba(1, 0, 0, 1));
- }
- }
-
- Box {
- id: box
- SequentialAnimation {
- id: animation
- ScaleAnimator { target: box; from: 1; to: 2.0; duration: 1000; }
- RotationAnimator { target: box; from: 0; to: 180; duration: 1000; }
- running: true
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_transformorigin.qml b/tests/auto/quick/qquickanimators/data/tst_transformorigin.qml
deleted file mode 100644
index 0211d0305d..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_transformorigin.qml
+++ /dev/null
@@ -1,160 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 300
- height: 300
-
- Timer {
- id: timer;
- running: testCase.windowShown
- interval: 1000
- repeat: false
- onTriggered: triggered = true;
- property bool triggered: false;
- }
-
- TestCase {
- id: testCase
- name: "transformorigin"
- when: timer.triggered
- function test_endresult() {
-
- var image = grabImage(root);
-
- var white = Qt.rgba(1, 1, 1);
- var blue = Qt.rgba(0, 0, 1);
-
-
- // topleft
- compare(image.pixel(40, 40), white);
- compare(image.pixel(60, 40), white);
- compare(image.pixel(40, 60), white);
- compare(image.pixel(60, 60), blue);
-
- // top
- compare(image.pixel(140, 40), white);
- compare(image.pixel(160, 40), white);
- compare(image.pixel(140, 60), blue);
- compare(image.pixel(160, 60), blue);
-
- // topright
- compare(image.pixel(240, 40), white);
- compare(image.pixel(260, 40), white);
- compare(image.pixel(240, 60), blue);
- compare(image.pixel(260, 60), white);
-
-
- // left
- compare(image.pixel(40, 140), white);
- compare(image.pixel(60, 140), blue);
- compare(image.pixel(40, 160), white);
- compare(image.pixel(60, 160), blue);
-
- // center
- compare(image.pixel(140, 140), blue);
- compare(image.pixel(160, 140), blue);
- compare(image.pixel(140, 160), blue);
- compare(image.pixel(160, 160), blue);
-
- // right
- compare(image.pixel(240, 140), blue);
- compare(image.pixel(260, 140), white);
- compare(image.pixel(240, 160), blue);
- compare(image.pixel(260, 160), white);
-
-
- // bottomleft
- compare(image.pixel(40, 240), white);
- compare(image.pixel(60, 240), blue);
- compare(image.pixel(40, 260), white);
- compare(image.pixel(60, 260), white);
-
- // bottom
- compare(image.pixel(140, 240), blue);
- compare(image.pixel(160, 240), blue);
- compare(image.pixel(140, 260), white);
- compare(image.pixel(160, 260), white);
-
- // bottomright
- compare(image.pixel(240, 240), blue);
- compare(image.pixel(260, 240), white);
- compare(image.pixel(240, 260), white);
- compare(image.pixel(260, 260), white);
-
- }
- }
-
- property var origins: [Item.TopLeft, Item.Top, Item.TopRight,
- Item.Left, Item.Center, Item.Right,
- Item.BottomLeft, Item.Bottom, Item.BottomRight];
-
- Grid {
- anchors.fill: parent
- rows: 3
- columns: 3
-
- Repeater {
- model: 9
- Item {
- width: 100
- height: 100
- Rectangle {
- id: box
- color: "blue"
- anchors.centerIn: parent
- width: 10
- height: 10
- antialiasing: true;
-
- transformOrigin: root.origins[index];
-
- ScaleAnimator { target: box; from: 1; to: 5.5; duration: 1000; running: true; }
- }
- }
- }
- }
-
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_transition.qml b/tests/auto/quick/qquickanimators/data/tst_transition.qml
deleted file mode 100644
index 8e21a6537e..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_transition.qml
+++ /dev/null
@@ -1,91 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testcase
- name: "transition"
- when: box.scale == 2
- function test_endresult() {
- compare(box.scaleChangeCounter, 1);
- compare(box.scale, 2);
- var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(1, 0, 0));
- compare(image.pixel(199, 199), Qt.rgba(0, 0, 1));
- }
- }
-
- states: [
- State {
- name: "one"
- PropertyChanges { target: box; scale: 1 }
- },
- State {
- name: "two"
- PropertyChanges { target: box; scale: 2 }
- }
- ]
- state: "one"
-
- transitions: [
- Transition {
- ScaleAnimator { duration: 200; }
- }
- ]
-
- Box {
- id: box
- }
-
- Timer {
- interval: 1000;
- repeat: false
- running: true
- onTriggered: root.state = "two"
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_x.qml b/tests/auto/quick/qquickanimators/data/tst_x.qml
deleted file mode 100644
index 70ecf96346..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_x.qml
+++ /dev/null
@@ -1,77 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testCase
- name: "x"
- when: !animation.running
- function test_endresult() {
- compare(box.xChangeCounter, 1);
- compare(box.x, 100);
- var image = grabImage(root);
- compare(image.pixel(100, 50), Qt.rgba(1, 0, 0));
- compare(image.pixel(99, 50), Qt.rgba(1, 1, 1)); // outside on the left
- }
- }
-
- Box {
- id: box
-
- anchors.centerIn: undefined
-
- XAnimator {
- id: animation
- target: box
- from: 0;
- to: 100
- duration: 1000
- running: true
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_y.qml b/tests/auto/quick/qquickanimators/data/tst_y.qml
deleted file mode 100644
index 428d42a6c3..0000000000
--- a/tests/auto/quick/qquickanimators/data/tst_y.qml
+++ /dev/null
@@ -1,77 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** 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
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.2
-import QtTest 1.0
-
-Item {
- id: root;
- width: 200
- height: 200
-
- TestCase {
- id: testCase
- name: "y"
- when: !animation.running
- function test_endresult() {
- compare(box.yChangeCounter, 1);
- compare(box.y, 100);
- var image = grabImage(root);
- compare(image.pixel(50, 100), Qt.rgba(1, 0, 0));
- compare(image.pixel(50, 99), Qt.rgba(1, 1, 1)); // outside on the left
- }
- }
-
- Box {
- id: box
-
- anchors.centerIn: undefined
-
- YAnimator {
- id: animation
- target: box
- from: 0;
- to: 100
- duration: 1000
- running: true
- }
- }
-}
diff --git a/tests/auto/quick/qquickanimators/data/tst_scale.qml b/tests/auto/quick/qquickanimators/data/windowWithAnimator.qml
index 6fd4668684..d49b91da83 100644
--- a/tests/auto/quick/qquickanimators/data/tst_scale.qml
+++ b/tests/auto/quick/qquickanimators/data/windowWithAnimator.qml
@@ -40,36 +40,29 @@
****************************************************************************/
import QtQuick 2.2
-import QtTest 1.0
+import QtQuick.Window 2.0
-Item {
- id: root;
+Window {
width: 200
height: 200
- TestCase {
- id: testCase
- name: "scale"
- when: !animation.running
- function test_endresult() {
- compare(box.scaleChangeCounter, 1);
- compare(box.scale, 2);
- var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(1, 0, 0));
- }
- }
+ visible: true
+ property bool animationDone: rect.scale == 1;
+
+ Rectangle {
+ id: rect
+ anchors.centerIn: parent
- Box {
- id: box
+ width: 100
+ height: 100
+ color: "red"
+ scale: 0
- ScaleAnimator {
- id: animation
- target: box
- from: 1;
- to: 2.0
+ ScaleAnimator on scale {
+ id: animation;
+ from: 0
+ to: 1
duration: 1000
- easing.type: Easing.InOutCubic
- running: true
}
}
}
diff --git a/tests/auto/quick/qquickanimators/qquickanimators.pro b/tests/auto/quick/qquickanimators/qquickanimators.pro
index 4fa0438e41..4ff2471fde 100644
--- a/tests/auto/quick/qquickanimators/qquickanimators.pro
+++ b/tests/auto/quick/qquickanimators/qquickanimators.pro
@@ -1,14 +1,6 @@
-QT += core-private gui-private qml-private
-TEMPLATE=app
+QT += core-private gui-private qml-private quick-private testlib
TARGET=tst_qquickanimators
-
-CONFIG += qmltestcase
+CONFIG += testcase
+macx: CONFIG -= app_bundle
SOURCES += tst_qquickanimators.cpp
-TESTDATA = data/*
-
-OTHER_FILES += \
- data/tst_scale.qml \
- data/Scale.qml \
- tst_on.qml \
- data/tst_nested.qml
diff --git a/tests/auto/quick/qquickanimators/tst_qquickanimators.cpp b/tests/auto/quick/qquickanimators/tst_qquickanimators.cpp
index f3f982091f..3311fa6bf2 100644
--- a/tests/auto/quick/qquickanimators/tst_qquickanimators.cpp
+++ b/tests/auto/quick/qquickanimators/tst_qquickanimators.cpp
@@ -39,6 +39,75 @@
**
****************************************************************************/
-#include <QtQuickTest/quicktest.h>
+#include <qtest.h>
+
+#include <QtQuick>
+#include <private/qquickanimator_p.h>
+
+#include <QtQml>
+
+class tst_Animators: public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void testMultiWinAnimator_data();
+ void testMultiWinAnimator();
+};
+
+void tst_Animators::testMultiWinAnimator_data()
+{
+ QTest::addColumn<int>("count");
+
+ QTest::newRow("1") << 1;
+ QTest::newRow("10") << 10;
+}
+
+void tst_Animators::testMultiWinAnimator()
+{
+ QFETCH(int, count);
+
+ QQmlEngine engine;
+ QQmlComponent component(&engine, "data/windowWithAnimator.qml");
+
+ QList<QQuickWindow *> windows;
+ for (int i=0; i<count; ++i) {
+ QQuickWindow *win = qobject_cast<QQuickWindow *>(component.create());
+ windows << win;
+
+ // As the windows are all the same size, if they are positioned at the
+ // same place only the top-most one will strictly be "exposed" and rendering
+ // for all the others will be disabled. Move the windows a little bit
+ // to ensure they are exposed and actually rendering.
+ if (i > 0) {
+ QPoint pos = win->position();
+ if (pos == windows.first()->position())
+ pos += QPoint(10 * i, 10 * i);
+ win->setPosition(pos);
+ }
+ }
+
+ // let all animations run their course...
+ while (true) {
+ QTest::qWait(200);
+ bool allDone = true;
+ for (int i=0; i<count; ++i) {
+ QQuickWindow *win = windows.at(i);
+ allDone = win->isExposed() && win->property("animationDone").toBool();
+ }
+
+ if (allDone) {
+ for (int i=0; i<count; ++i) {
+ QQuickWindow *win = windows.at(i);
+ delete win;
+ }
+ break;
+ }
+ }
+ QVERIFY(true);
+}
+
+#include "tst_qquickanimators.moc"
+
+QTEST_MAIN(tst_Animators)
-QUICK_TEST_MAIN(qquickanimators)