summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2016-08-02 10:25:02 +0200
committerLiang Qi <liang.qi@qt.io>2016-08-02 10:25:02 +0200
commitdc1d95819365202e2745faffe31e13d928742c4c (patch)
treeee45832495cc20d26143fc3ec4f74c3212b0742e /tests
parent52672d6811eeda364c10fa4d81c2b352e8b1d2e8 (diff)
parent22fab1502f562bccb3c16dde0288aa867e3b094a (diff)
downloadqtquickcontrols-dc1d95819365202e2745faffe31e13d928742c4c.tar.gz
Merge remote-tracking branch 'origin/5.7' into dev
Conflicts: .qmake.conf Change-Id: Iab80dd0c2bea54171971fd7a9538000908ed90d5
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/controls/data/tst_calendar.qml7
-rw-r--r--tests/auto/customcontrolsstyle/QtQuick/Controls/Styles/Style/ButtonStyle.qml61
-rw-r--r--tests/auto/customcontrolsstyle/style.qrc3
-rw-r--r--tests/auto/customcontrolsstyle/tst_customcontrolsstyle.cpp39
4 files changed, 108 insertions, 2 deletions
diff --git a/tests/auto/controls/data/tst_calendar.qml b/tests/auto/controls/data/tst_calendar.qml
index 3622268b..1185aca9 100644
--- a/tests/auto/controls/data/tst_calendar.qml
+++ b/tests/auto/controls/data/tst_calendar.qml
@@ -939,14 +939,17 @@ Item {
asyncCalendar.parent = container;
waitForRendering(asyncCalendar);
+ tryCompare(testcase.aysncDelegatesConstructed, "length", CalendarUtils.daysInAWeek);
+
for (var i = 0; i < testcase.aysncDelegatesConstructed.length; ++i) {
- tryCompare(testcase.aysncDelegatesConstructed, i, true);
+ compare(testcase.aysncDelegatesConstructed[i], true);
}
asyncCalendarLoader.active = false;
+ tryCompare(testcase.aysncDelegatesDestructed, "length", CalendarUtils.daysInAWeek);
for (i = 0; i < testcase.aysncDelegatesDestructed.length; ++i) {
- tryCompare(testcase.aysncDelegatesDestructed, i, true);
+ compare(testcase.aysncDelegatesDestructed[i], true);
}
}
}
diff --git a/tests/auto/customcontrolsstyle/QtQuick/Controls/Styles/Style/ButtonStyle.qml b/tests/auto/customcontrolsstyle/QtQuick/Controls/Styles/Style/ButtonStyle.qml
new file mode 100644
index 00000000..548c5641
--- /dev/null
+++ b/tests/auto/customcontrolsstyle/QtQuick/Controls/Styles/Style/ButtonStyle.qml
@@ -0,0 +1,61 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** 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 The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** BSD License Usage
+** Alternatively, you may use this file under the terms of the BSD license
+** as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of The Qt Company Ltd nor the names of its
+** contributors may be used to endorse or promote products derived
+** from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.4
+import QtQuick.Controls 1.4
+import QtQuick.Controls.Styles 1.4
+
+ButtonStyle {
+ background: Rectangle {
+ implicitWidth: 200
+ implicitHeight: 50
+ color: "blue"
+ }
+}
diff --git a/tests/auto/customcontrolsstyle/style.qrc b/tests/auto/customcontrolsstyle/style.qrc
index 37cfbbd7..c04782ba 100644
--- a/tests/auto/customcontrolsstyle/style.qrc
+++ b/tests/auto/customcontrolsstyle/style.qrc
@@ -2,4 +2,7 @@
<qresource prefix="/">
<file>Style/ButtonStyle.qml</file>
</qresource>
+ <qresource prefix="/qt-project.org/imports/QtQuick/Controls/Styles/ResourceStyle">
+ <file alias="ButtonStyle.qml">Style/ButtonStyle.qml</file>
+ </qresource>
</RCC>
diff --git a/tests/auto/customcontrolsstyle/tst_customcontrolsstyle.cpp b/tests/auto/customcontrolsstyle/tst_customcontrolsstyle.cpp
index ebd60d1e..8405c98b 100644
--- a/tests/auto/customcontrolsstyle/tst_customcontrolsstyle.cpp
+++ b/tests/auto/customcontrolsstyle/tst_customcontrolsstyle.cpp
@@ -47,6 +47,7 @@ private slots:
void style_data();
void style();
+ void changeStyle();
};
void tst_customcontrolsstyle::initTestCase()
@@ -61,6 +62,7 @@ void tst_customcontrolsstyle::style_data()
QTest::newRow("NonExistentStyle") << QString::fromLatin1("NonExistentStyle") << QString::fromLatin1("Base");
QTest::newRow("CustomFileSystemStyle") << directory() + QString::fromLatin1("/Style") << QString::fromLatin1("Style");
+ QTest::newRow("BuiltinQrcStyle") << QString::fromLatin1("ResourceStyle") << QString::fromLatin1("ResourceStyle"); // from :/qt-project.org/imports/QtQuick/Controls/Styles
QTest::newRow("CustomQrcStyle") << QString::fromLatin1(":/Style") << QString::fromLatin1("Style");
}
@@ -104,6 +106,43 @@ void tst_customcontrolsstyle::style()
}
}
+// start with Base, switch to custom style later on (for a specific QML engine)
+void tst_customcontrolsstyle::changeStyle()
+{
+ qputenv("QT_QUICK_CONTROLS_1_STYLE", "Base");
+ qputenv("QML2_IMPORT_PATH", QFile::encodeName(directory()));
+
+ QQmlEngine engine;
+
+ QQmlComponent component(&engine, testFileUrl("TestComponent.qml"));
+ QTRY_COMPARE(component.status(), QQmlComponent::Ready);
+
+ QScopedPointer<QObject> object(component.create());
+ QVERIFY(object);
+
+ QCOMPARE(object->property("styleName").toString(), QString("Base"));
+
+ // Switch to "Style" custom style
+ QQmlComponent c(&engine);
+ c.setData("import QtQuick 2.1\n"
+ "import QtQuick.Controls 1.0\n"
+ "import QtQuick.Controls.Private 1.0\n"
+ "Item {"
+ "Component.onCompleted: {"
+ "Settings.styleName = \"Style\";"
+ "}"
+ "}", QUrl());
+ QObject *o = c.create();
+ o->deleteLater();
+
+ QCOMPARE(object->property("styleName").toString(), QString("Style"));
+ QMetaObject::invokeMethod(object.data(), "buttonStyleComponent");
+ QQuickWindow *window = qobject_cast<QQuickWindow*>(object.data());
+ QVERIFY(QTest::qWaitForWindowExposed(window));
+ QImage windowImage = window->grabWindow();
+ QCOMPARE(windowImage.pixel(0, 0), QColor(Qt::blue).rgb());
+}
+
QTEST_MAIN(tst_customcontrolsstyle)
#include "tst_customcontrolsstyle.moc"