Merge branch 'buildsystem'
[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 inputMethod();
59
60 private:
61     QQmlEngine engine;
62 };
63
64 tst_qquickapplication::tst_qquickapplication()
65 {
66 }
67
68 void tst_qquickapplication::active()
69 {
70     QQmlComponent component(&engine);
71     component.setData("import QtQuick 2.0; "
72                       "Item { "
73                       "    property bool active: Qt.application.active; "
74                       "    property bool active2: false; "
75                       "    Connections { "
76                       "        target: Qt.application; "
77                       "        onActiveChanged: active2 = Qt.application.active; "
78                       "    } "
79                       "}", QUrl::fromLocalFile(""));
80     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
81     QVERIFY(item);
82     QQuickView view;
83     item->setParentItem(view.rootObject());
84
85     // not active
86     QVERIFY(!item->property("active").toBool());
87     QVERIFY(!item->property("active2").toBool());
88     QCOMPARE(item->property("active").toBool(), QGuiApplication::focusWindow() != 0);
89
90     // active
91     view.show();
92     view.requestActivateWindow();
93     QTest::qWait(50);
94     QEXPECT_FAIL("", "QTBUG-21573", Abort);
95     QTRY_COMPARE(view.status(), QQuickView::Ready);
96     QCOMPARE(item->property("active").toBool(), QGuiApplication::focusWindow() != 0);
97     QCOMPARE(item->property("active2").toBool(), QGuiApplication::focusWindow() != 0);
98
99 #if 0
100     // QGuiApplication has no equivalent of setActiveWindow(0). QTBUG-21573
101     // Is this different to clearing the active state of the window or can it be removed?
102     // On Mac, setActiveWindow(0) on mac does not deactivate the current application,
103     // must switch to a different app or hide the current app to trigger this
104     // on mac, setActiveWindow(0) on mac does not deactivate the current application
105     // (you have to switch to a different app or hide the current app to trigger this)
106
107     // not active again
108     QGuiApplication::setActiveWindow(0);
109     QVERIFY(!item->property("active").toBool());
110     QCOMPARE(item->property("active").toBool(), QGuiApplication::focusWindow() != 0);
111 #endif
112
113 }
114
115 void tst_qquickapplication::layoutDirection()
116 {
117
118     QQmlComponent component(&engine);
119     component.setData("import QtQuick 2.0; Item { property bool layoutDirection: Qt.application.layoutDirection }", QUrl::fromLocalFile(""));
120     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
121     QVERIFY(item);
122     QQuickView view;
123     item->setParentItem(view.rootObject());
124
125     // not mirrored
126     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::LeftToRight);
127
128     // mirrored
129     QGuiApplication::setLayoutDirection(Qt::RightToLeft);
130     QEXPECT_FAIL("", "QTBUG-21573", Abort);
131     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::RightToLeft);
132
133     // not mirrored again
134     QGuiApplication::setLayoutDirection(Qt::LeftToRight);
135     QCOMPARE(Qt::LayoutDirection(item->property("layoutDirection").toInt()), Qt::LeftToRight);
136 }
137
138 void tst_qquickapplication::inputMethod()
139 {
140     // technically not in QQuickApplication, but testing anyway here
141     QQmlComponent component(&engine);
142     component.setData("import QtQuick 2.0; Item { property variant inputMethod: Qt.inputMethod }", QUrl::fromLocalFile(""));
143     QQuickItem *item = qobject_cast<QQuickItem *>(component.create());
144     QVERIFY(item);
145     QQuickView view;
146     item->setParentItem(view.rootObject());
147
148     // check that the inputMethod property maches with application's input method
149     QCOMPARE(qvariant_cast<QObject*>(item->property("inputMethod")), qApp->inputMethod());
150 }
151
152
153 QTEST_MAIN(tst_qquickapplication)
154
155 #include "tst_qquickapplication.moc"