Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeflipable / tst_qdeclarativeflipable.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
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 <QtDeclarative/qdeclarativeview.h>
45 #include <private/qdeclarativeflipable_p.h>
46 #include <private/qdeclarativevaluetype_p.h>
47 #include <QFontMetrics>
48 #include <private/qdeclarativerectangle_p.h>
49 #include <math.h>
50
51 #ifdef Q_OS_SYMBIAN
52 // In Symbian OS test data is located in applications private dir
53 #define SRCDIR "."
54 #endif
55
56 class tst_qdeclarativeflipable : public QObject
57 {
58     Q_OBJECT
59 public:
60     tst_qdeclarativeflipable();
61
62 private slots:
63     void create();
64     void checkFrontAndBack();
65     void setFrontAndBack();
66
67     // below here task issues
68     void QTBUG_9161_crash();
69     void QTBUG_8474_qgv_abort();
70
71 private:
72     QDeclarativeEngine engine;
73 };
74
75 tst_qdeclarativeflipable::tst_qdeclarativeflipable()
76 {
77 }
78
79 void tst_qdeclarativeflipable::create()
80 {
81     QDeclarativeEngine engine;
82     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
83     QDeclarativeFlipable *obj = qobject_cast<QDeclarativeFlipable*>(c.create());
84
85     QVERIFY(obj != 0);
86     delete obj;
87 }
88
89 void tst_qdeclarativeflipable::checkFrontAndBack()
90 {
91     QDeclarativeEngine engine;
92     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
93     QDeclarativeFlipable *obj = qobject_cast<QDeclarativeFlipable*>(c.create());
94
95     QVERIFY(obj != 0);
96     QVERIFY(obj->front() != 0);
97     QVERIFY(obj->back() != 0);
98     delete obj;
99 }
100
101 void tst_qdeclarativeflipable::setFrontAndBack()
102 {
103     QDeclarativeEngine engine;
104     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
105     QDeclarativeFlipable *obj = qobject_cast<QDeclarativeFlipable*>(c.create());
106
107     QVERIFY(obj != 0);
108     QVERIFY(obj->front() != 0);
109     QVERIFY(obj->back() != 0);
110
111     QString message = c.url().toString() + ":3:1: QML Flipable: front is a write-once property";
112     QTest::ignoreMessage(QtWarningMsg, qPrintable(message));
113     obj->setFront(new QDeclarativeRectangle());
114
115     message = c.url().toString() + ":3:1: QML Flipable: back is a write-once property";
116     QTest::ignoreMessage(QtWarningMsg, qPrintable(message));
117     obj->setBack(new QDeclarativeRectangle());
118     delete obj;
119 }
120
121 void tst_qdeclarativeflipable::QTBUG_9161_crash()
122 {
123     QDeclarativeView *canvas = new QDeclarativeView;
124     canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/crash.qml"));
125     QGraphicsObject *root = canvas->rootObject();
126     QVERIFY(root != 0);
127     canvas->show();
128     delete canvas;
129 }
130
131 void tst_qdeclarativeflipable::QTBUG_8474_qgv_abort()
132 {
133     QDeclarativeView *canvas = new QDeclarativeView;
134     canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/flipable-abort.qml"));
135     QGraphicsObject *root = canvas->rootObject();
136     QVERIFY(root != 0);
137     canvas->show();
138     delete canvas;
139 }
140
141 QTEST_MAIN(tst_qdeclarativeflipable)
142
143 #include "tst_qdeclarativeflipable.moc"