summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2013-05-07 09:11:18 +0300
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2013-05-07 12:34:00 +0300
commit08de4b5d40d164ac30100f2765a5c9c7cf47e315 (patch)
tree755048387ef03f7ac2600bb8f21364349bf97956 /tests
parente824058bc1926a656736fa2490cb892ea9a4e2f5 (diff)
Fix qml autotest after qtquick2 support was added
Also added similar quick2 autotest. Change-Id: Ia2895a63d27c48dd0d1408f8be5410b644a42329 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/auto.pro4
-rw-r--r--tests/auto/qml/tst_qml.cpp3
-rw-r--r--tests/auto/quick2/quick2.pro5
-rw-r--r--tests/auto/quick2/tst_quick2.cpp142
4 files changed, 153 insertions, 1 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
index b9f9fbd7..8ab3a5f9 100644
--- a/tests/auto/auto.pro
+++ b/tests/auto/auto.pro
@@ -46,5 +46,9 @@ contains(QT_VERSION, ^4\\.[0-7]\\.[0-3]\\s*$) | contains(QT_VERSION, ^4\\.[0-6]\
qdatetimeaxis
}
+contains(QT_VERSION, ^5\\..*\\..*$):qtHaveModule(quick) {
+ SUBDIRS += quick2
+}
+
diff --git a/tests/auto/qml/tst_qml.cpp b/tests/auto/qml/tst_qml.cpp
index 98880afd..841070c6 100644
--- a/tests/auto/qml/tst_qml.cpp
+++ b/tests/auto/qml/tst_qml.cpp
@@ -119,13 +119,14 @@ void tst_QML::checkPlugin_data()
QTest::newRow("BarCategoryAxis") << imports_1_1() + "BarCategoryAxis{}";
QTest::newRow("createPolarChartView") << imports_1_3() + "PolarChartView{}";
- //QTest::newRow("LogValueAxis") << imports_1_3() + "LogValueAxis{}";
+ QTest::newRow("LogValueAxis") << imports_1_3() + "LogValueAxis{}";
}
void tst_QML::checkPlugin()
{
QFETCH(QString, source);
QDeclarativeEngine engine;
+ engine.addImportPath(QString::fromLatin1("%1/%2").arg(QCoreApplication::applicationDirPath(), QLatin1String("imports")));
QDeclarativeComponent component(&engine);
component.setData(source.toLatin1(), QUrl());
QVERIFY2(!component.isError(), qPrintable(componentErrors(&component)));
diff --git a/tests/auto/quick2/quick2.pro b/tests/auto/quick2/quick2.pro
new file mode 100644
index 00000000..93f8fdfe
--- /dev/null
+++ b/tests/auto/quick2/quick2.pro
@@ -0,0 +1,5 @@
+!include( ../auto.pri ) {
+ error( "Couldn't find the auto.pri file!" )
+}
+SOURCES += tst_quick2.cpp
+QT += qml quick
diff --git a/tests/auto/quick2/tst_quick2.cpp b/tests/auto/quick2/tst_quick2.cpp
new file mode 100644
index 00000000..9e23482d
--- /dev/null
+++ b/tests/auto/quick2/tst_quick2.cpp
@@ -0,0 +1,142 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#include <QtTest/QtTest>
+#include <QtQml/QQmlEngine>
+#include <QtQml/QQmlComponent>
+#include "tst_definitions.h"
+
+class tst_quick2 : public QObject
+{
+ Q_OBJECT
+
+public slots:
+ void initTestCase();
+ void cleanupTestCase();
+ void init();
+ void cleanup();
+private slots:
+ void checkPlugin_data();
+ void checkPlugin();
+private:
+ QString componentErrors(const QQmlComponent* component) const;
+ QString imports_1_1();
+ QString imports_1_3();
+
+};
+
+QString tst_quick2::componentErrors(const QQmlComponent* component) const
+{
+ Q_ASSERT(component);
+
+ QStringList errors;
+
+ foreach (QQmlError const& error, component->errors()) {
+ errors << error.toString();
+ }
+
+ return errors.join("\n");
+}
+
+QString tst_quick2::imports_1_1()
+{
+ return "import QtQuick 2.0 \n"
+ "import QtCommercial.Chart 1.1 \n";
+}
+
+QString tst_quick2::imports_1_3()
+{
+ return "import QtQuick 2.0 \n"
+ "import QtCommercial.Chart 1.3 \n";
+}
+
+
+void tst_quick2::initTestCase()
+{
+}
+
+void tst_quick2::cleanupTestCase()
+{
+}
+
+void tst_quick2::init()
+{
+
+}
+
+void tst_quick2::cleanup()
+{
+
+}
+
+void tst_quick2::checkPlugin_data()
+{
+ QTest::addColumn<QString>("source");
+
+ QTest::newRow("createChartView") << imports_1_1() + "ChartView{}";
+ QTest::newRow("XYPoint") << imports_1_1() + "XYPoint{}";
+ QTest::newRow("scatterSeries") << imports_1_1() + "ScatterSeries{}";
+ QTest::newRow("lineSeries") << imports_1_1() + "LineSeries{}";
+ QTest::newRow("splineSeries") << imports_1_1() + "SplineSeries{}";
+ QTest::newRow("areaSeries") << imports_1_1() + "AreaSeries{}";
+ QTest::newRow("barSeries") << imports_1_1() + "BarSeries{}";
+ QTest::newRow("stackedBarSeries") << imports_1_1() + "StackedBarSeries{}";
+ QTest::newRow("precentBarSeries") << imports_1_1() + "PercentBarSeries{}";
+ QTest::newRow("horizonatlBarSeries") << imports_1_1() + "HorizontalBarSeries{}";
+ QTest::newRow("horizonatlStackedBarSeries") << imports_1_1() + "HorizontalStackedBarSeries{}";
+ QTest::newRow("horizonatlstackedBarSeries") << imports_1_1() + "HorizontalPercentBarSeries{}";
+ QTest::newRow("pieSeries") << imports_1_1() + "PieSeries{}";
+ QTest::newRow("PieSlice") << imports_1_1() + "PieSlice{}";
+ QTest::newRow("BarSet") << imports_1_1() + "BarSet{}";
+ QTest::newRow("HXYModelMapper") << imports_1_1() + "HXYModelMapper{}";
+ QTest::newRow("VXYModelMapper") << imports_1_1() + "VXYModelMapper{}";
+ QTest::newRow("HPieModelMapper") << imports_1_1() + "HPieModelMapper{}";
+ QTest::newRow("HPieModelMapper") << imports_1_1() + "HPieModelMapper{}";
+ QTest::newRow("HBarModelMapper") << imports_1_1() + "HBarModelMapper{}";
+ QTest::newRow("VBarModelMapper") << imports_1_1() + "VBarModelMapper{}";
+ QTest::newRow("ValueAxis") << imports_1_1() + "ValueAxis{}";
+#ifndef QT_ON_ARM
+ QTest::newRow("DateTimeAxis") << imports_1_1() + "DateTimeAxis{}";
+#endif
+ QTest::newRow("CategoryAxis") << imports_1_1() + "CategoryAxis{}";
+ QTest::newRow("CategoryRange") << imports_1_1() + "CategoryRange{}";
+ QTest::newRow("BarCategoryAxis") << imports_1_1() + "BarCategoryAxis{}";
+
+ QTest::newRow("createPolarChartView") << imports_1_3() + "PolarChartView{}";
+ QTest::newRow("LogValueAxis") << imports_1_3() + "LogValueAxis{}";
+}
+
+void tst_quick2::checkPlugin()
+{
+ QFETCH(QString, source);
+ QQmlEngine engine;
+ engine.addImportPath(QString::fromLatin1("%1/%2").arg(QCoreApplication::applicationDirPath(), QLatin1String("qml")));
+ QQmlComponent component(&engine);
+ component.setData(source.toLatin1(), QUrl());
+ QVERIFY2(!component.isError(), qPrintable(componentErrors(&component)));
+ TRY_COMPARE(component.status(), QQmlComponent::Ready);
+ QObject *obj = component.create();
+ QVERIFY(obj != 0);
+ delete obj;
+}
+
+QTEST_MAIN(tst_quick2)
+
+#include "tst_quick2.moc"
+