1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <qtest.h>
#include <QQmlEngine>
#include <QQmlComponent>
#include <private/qqmlmetatype_p.h>
#include <private/qquickanimation_p_p.h>
#include <QQmlContext>
class tst_animation : public QObject
{
Q_OBJECT
public:
tst_animation();
private slots:
void abstractAnimation();
#if defined(QT_BUILD_INTERNAL)
void bulkValueAnimator();
void propertyUpdater();
#endif
void animationtree_qml();
void animationelements_data();
void animationelements();
void numberAnimation();
void numberAnimationStarted();
void numberAnimationMultipleTargets();
void numberAnimationEmpty();
private:
QQmlEngine engine;
};
tst_animation::tst_animation()
{
}
inline QUrl TEST_FILE(const QString &filename)
{
return QUrl::fromLocalFile(QLatin1String(SRCDIR) + QLatin1String("/data/") + filename);
}
void tst_animation::abstractAnimation()
{
QBENCHMARK {
QAbstractAnimationJob *animation = new QAbstractAnimationJob;
delete animation;
}
}
#if defined(QT_BUILD_INTERNAL)
void tst_animation::bulkValueAnimator()
{
QBENCHMARK {
QQuickBulkValueAnimator *animator = new QQuickBulkValueAnimator;
delete animator;
}
}
void tst_animation::propertyUpdater()
{
QBENCHMARK {
QQuickAnimationPropertyUpdater *updater = new QQuickAnimationPropertyUpdater;
delete updater;
}
}
#endif // QT_BUILD_INTERNAL
void tst_animation::animationtree_qml()
{
QQmlComponent component(&engine, TEST_FILE("animation.qml"));
QObject *obj = component.create();
delete obj;
QBENCHMARK {
QObject *obj = component.create();
delete obj;
}
}
void tst_animation::animationelements_data()
{
QTest::addColumn<QString>("type");
const QSet<QString> types = QQmlMetaType::qmlTypeNames().toSet();
for (const QString &type : types) {
if (type.contains(QLatin1String("Animation")))
QTest::newRow(type.toLatin1()) << type;
}
QTest::newRow("QtQuick/Behavior") << "QtQuick/Behavior";
QTest::newRow("QtQuick/Transition") << "QtQuick/Transition";
}
void tst_animation::animationelements()
{
QFETCH(QString, type);
QQmlType t = QQmlMetaType::qmlType(type, 2, 0);
if (!t.isValid() || !t.isCreatable())
QSKIP("Non-creatable type");
QBENCHMARK {
QObject *obj = t.create();
delete obj;
}
}
void tst_animation::numberAnimation()
{
QQmlComponent component(&engine);
component.setData("import QtQuick 2.0\nItem { Rectangle { id: rect; NumberAnimation { target: rect; property: \"x\"; to: 100; duration: 500; easing.type: Easing.InOutQuad } } }", QUrl());
QObject *obj = component.create();
delete obj;
QBENCHMARK {
QObject *obj = component.create();
delete obj;
}
}
void tst_animation::numberAnimationStarted()
{
QQmlComponent component(&engine);
component.setData("import QtQuick 2.0\nItem { Rectangle { id: rect; NumberAnimation { target: rect; property: \"x\"; to: 100; duration: 500; easing.type: Easing.InOutQuad; running: true; paused: true } } }", QUrl());
QObject *obj = component.create();
delete obj;
QBENCHMARK {
QObject *obj = component.create();
delete obj;
}
}
void tst_animation::numberAnimationMultipleTargets()
{
QQmlComponent component(&engine);
component.setData("import QtQuick 2.0\nItem { Rectangle { id: rect; NumberAnimation { target: rect; properties: \"x,y,z,width,height,implicitWidth,implicitHeight\"; to: 100; duration: 500; easing.type: Easing.InOutQuad; running: true; paused: true } } }", QUrl());
QObject *obj = component.create();
delete obj;
QBENCHMARK {
QObject *obj = component.create();
delete obj;
}
}
void tst_animation::numberAnimationEmpty()
{
QQmlComponent component(&engine);
component.setData("import QtQuick 2.0\nNumberAnimation { }", QUrl());
QObject *obj = component.create();
delete obj;
QBENCHMARK {
QObject *obj = component.create();
delete obj;
}
}
QTEST_MAIN(tst_animation)
#include "tst_animation.moc"
|