bbb0f427a768ead7b2969a3f39a11de7ba61b404
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick1 / qdeclarativeflipable / tst_qdeclarativeflipable.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 #include <qtest.h>
42 #include <QtDeclarative/qdeclarativeengine.h>
43 #include <QtDeclarative/qdeclarativecomponent.h>
44 #include <QtQuick1/qdeclarativeview.h>
45 #include <QtQuick1/private/qdeclarativeflipable_p.h>
46 #include <private/qdeclarativevaluetype_p.h>
47 #include <QFontMetrics>
48 #include <QtQuick1/private/qdeclarativerectangle_p.h>
49 #include <math.h>
50
51 class tst_qdeclarativeflipable : public QObject
52 {
53     Q_OBJECT
54 public:
55     tst_qdeclarativeflipable();
56
57 private slots:
58     void create();
59     void checkFrontAndBack();
60     void setFrontAndBack();
61
62     // below here task issues
63     void QTBUG_9161_crash();
64     void QTBUG_8474_qgv_abort();
65
66 private:
67     QDeclarativeEngine engine;
68 };
69
70 tst_qdeclarativeflipable::tst_qdeclarativeflipable()
71 {
72 }
73
74 void tst_qdeclarativeflipable::create()
75 {
76     QDeclarativeEngine engine;
77     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
78     QDeclarative1Flipable *obj = qobject_cast<QDeclarative1Flipable*>(c.create());
79
80     QVERIFY(obj != 0);
81     delete obj;
82 }
83
84 void tst_qdeclarativeflipable::checkFrontAndBack()
85 {
86     QDeclarativeEngine engine;
87     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
88     QDeclarative1Flipable *obj = qobject_cast<QDeclarative1Flipable*>(c.create());
89
90     QVERIFY(obj != 0);
91     QVERIFY(obj->front() != 0);
92     QVERIFY(obj->back() != 0);
93     delete obj;
94 }
95
96 void tst_qdeclarativeflipable::setFrontAndBack()
97 {
98     QDeclarativeEngine engine;
99     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
100     QDeclarative1Flipable *obj = qobject_cast<QDeclarative1Flipable*>(c.create());
101
102     QVERIFY(obj != 0);
103     QVERIFY(obj->front() != 0);
104     QVERIFY(obj->back() != 0);
105
106     QString message = c.url().toString() + ":3:1: QML Flipable: front is a write-once property";
107     QTest::ignoreMessage(QtWarningMsg, qPrintable(message));
108     obj->setFront(new QDeclarative1Rectangle());
109
110     message = c.url().toString() + ":3:1: QML Flipable: back is a write-once property";
111     QTest::ignoreMessage(QtWarningMsg, qPrintable(message));
112     obj->setBack(new QDeclarative1Rectangle());
113     delete obj;
114 }
115
116 void tst_qdeclarativeflipable::QTBUG_9161_crash()
117 {
118     QDeclarativeView *canvas = new QDeclarativeView;
119     canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/crash.qml"));
120     QGraphicsObject *root = canvas->rootObject();
121     QVERIFY(root != 0);
122     canvas->show();
123     delete canvas;
124 }
125
126 void tst_qdeclarativeflipable::QTBUG_8474_qgv_abort()
127 {
128     QDeclarativeView *canvas = new QDeclarativeView;
129     canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/flipable-abort.qml"));
130     QGraphicsObject *root = canvas->rootObject();
131     QVERIFY(root != 0);
132     canvas->show();
133     delete canvas;
134 }
135
136 QTEST_MAIN(tst_qdeclarativeflipable)
137
138 #include "tst_qdeclarativeflipable.moc"