Merge master into api_changes
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickapplication / tst_qquickapplication.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include <qtest.h>
43 #include <QtQml/qqmlcomponent.h>
44 #include <QtQml/qqmlengine.h>
45 #include <QtQuick/qquickitem.h>
46 #include <QtQuick/qquickview.h>
47 #include <QtGui/qinputmethod.h>
48
49 class tst_qquickapplication : public QObject
50 {
51     Q_OBJECT
52 public:
53     tst_qquickapplication();
54
55 private slots:
56     void active();
57     void layoutDirection();
58     void inputPanel();
59     void inputMethod();
60
61 private:
62     QQmlEngine engine;
63 };
64
65 tst_qquickapplication::tst_qquickapplication()
66 {
67 }
68
69 void tst_qquickapplication::active()
70 {
71     QQmlComponent component(&engine);
72     component.setData("import QtQuick 2.0; "
73                       "Item { "
74                       "    property bool active: Qt.application.active; "
75                       "    property bool active2: false; "
76                       "    Connections { "
77                       "        target: Qt.application; "
78                       "        onActiveChanged: active2 = Qt.application.active; "
79                       "    } "
80                       "}", QUrl::fromLocalFile(""));
81     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
82     QVERIFY(item);
83     QQuickView view;
84     item->setParentItem(view.rootObject());
85
86     // not active
87     QVERIFY(!item->property("active").toBool());
88     QVERIFY(!item->property("active2").toBool());
89     QCOMPARE(item->property("active").toBool(), QGuiApplication::activeWindow() != 0);
90
91     // active
92     view.show();
93     view.requestActivateWindow();
94     QTest::qWait(50);
95     QEXPECT_FAIL("", "QTBUG-21573", Abort);
96     QTRY_COMPARE(view.status(), QQuickView::Ready);
97     QCOMPARE(item->property("active").toBool(), QGuiApplication::activeWindow() != 0);
98     QCOMPARE(item->property("active2").toBool(), QGuiApplication::activeWindow() != 0);
99
100 #if 0
101     // QGuiApplication has no equivalent of setActiveWindow(0). QTBUG-21573
102     // Is this different to clearing the active state of the window or can it be removed?
103     // On Mac, setActiveWindow(0) on mac does not deactivate the current application,
104     // must switch to a different app or hide the current app to trigger this
105     // on mac, setActiveWindow(0) on mac does not deactivate the current application
106     // (you have to switch to a different app or hide the current app to trigger this)
107
108     // not active again
109     QGuiApplication::setActiveWindow(0);
110     QVERIFY(!item->property("active").toBool());
111     QCOMPARE(item->property("active").toBool(), QGuiApplication::activeWindow() != 0);
112 #endif
113
114 }
115
116 void tst_qquickapplication::layoutDirection()
117 {
118
119     QQmlComponent component(&engine);
120     component.setData("import QtQuick 2.0; Item { property bool layoutDirection: Qt.application.layoutDirection }", QUrl::fromLocalFile(""));
121     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
122     QVERIFY(item);
123     QQuickView view;
124     item->setParentItem(view.rootObject());
125
126     // not mirrored
127     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::LeftToRight);
128
129     // mirrored
130     QGuiApplication::setLayoutDirection(Qt::RightToLeft);
131     QEXPECT_FAIL("", "QTBUG-21573", Abort);
132     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::RightToLeft);
133
134     // not mirrored again
135     QGuiApplication::setLayoutDirection(Qt::LeftToRight);
136     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::LeftToRight);
137 }
138
139 void tst_qquickapplication::inputPanel()
140 {
141     const QLatin1String expected("Qt.application.inputPanel is deprecated, use Qt.inputMethod instead ");
142     QTest::ignoreMessage(QtWarningMsg, expected.data());
143
144     QQmlComponent component(&engine);
145     component.setData("import QtQuick 2.0; Item { property variant inputPanel: Qt.application.inputPanel }", QUrl::fromLocalFile(""));
146     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
147     QVERIFY(item);
148     QQuickView view;
149     item->setParentItem(view.rootObject());
150
151     // check that the inputPanel property maches with application's input panel
152     QCOMPARE(qvariant_cast<QObject*>(item->property("inputPanel")), qApp->inputMethod());
153 }
154
155 void tst_qquickapplication::inputMethod()
156 {
157     // technically not in QQuickApplication, but testing anyway here
158     QQmlComponent component(&engine);
159     component.setData("import QtQuick 2.0; Item { property variant inputMethod: Qt.inputMethod }", QUrl::fromLocalFile(""));
160     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
161     QVERIFY(item);
162     QQuickView view;
163     item->setParentItem(view.rootObject());
164
165     // check that the inputMethod property maches with application's input method
166     QCOMPARE(qvariant_cast<QObject*>(item->property("inputMethod")), qApp->inputMethod());
167 }
168
169
170 QTEST_MAIN(tst_qquickapplication)
171
172 #include "tst_qquickapplication.moc"