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