Tests: add qmlCreateWindow in tst_qqmlcomponent
authorLiang Qi <liang.qi@digia.com>
Tue, 30 Apr 2013 10:33:16 +0000 (12:33 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Sat, 4 May 2013 09:54:37 +0000 (11:54 +0200)
Task-number: QTBUG-30919
Change-Id: I474a327e057978356a4ae395d8f59a66afaf2f7f
Reviewed-by: Alan Alpert <aalpert@blackberry.com>
tests/auto/qml/qqmlcomponent/data/createWindow.qml [new file with mode: 0644]
tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp

diff --git a/tests/auto/qml/qqmlcomponent/data/createWindow.qml b/tests/auto/qml/qqmlcomponent/data/createWindow.qml
new file mode 100644 (file)
index 0000000..af0b7ed
--- /dev/null
@@ -0,0 +1,29 @@
+import QtQuick 2.1
+import QtQuick.Window 2.1
+
+Window {
+    id: window1;
+    objectName: "window1";
+    color: "#00FF00";
+    width: 100; height: 100;
+    Item {
+        objectName: "item1"
+        width: 100; height: 100;
+        MouseArea {
+            objectName: "mousearea"
+            anchors.fill: parent;
+            onPressed: window2.requestActivate();
+        }
+        Component.onCompleted: window2.show();
+    }
+
+    Window {
+        id: window2;
+        objectName: "window2";
+        color: "#FF0000";
+        width: 100; height: 100;
+        Item {
+            width: 100; height: 100;
+        }
+    }
+}
index 697c810..9eeff66 100644 (file)
@@ -105,6 +105,7 @@ public:
 private slots:
     void null();
     void loadEmptyUrl();
+    void qmlCreateWindow();
     void qmlCreateObject();
     void qmlCreateObjectWithProperties();
     void qmlIncubateObject();
@@ -163,6 +164,15 @@ void tst_qqmlcomponent::qmlIncubateObject()
     delete object;
 }
 
+void tst_qqmlcomponent::qmlCreateWindow()
+{
+    QQmlEngine engine;
+    QQmlComponent component(&engine);
+    component.loadUrl(testFileUrl("createWindow.qml"));
+    QQuickWindow* window = qobject_cast<QQuickWindow *>(component.create());
+    QVERIFY(window);
+}
+
 void tst_qqmlcomponent::qmlCreateObject()
 {
     QQmlEngine engine;