a5e8105405a0f18f6b5faff74d199de6fcd7e138
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgflipable / tst_qsgflipable.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/qsgview.h>
45 #include <private/qsgflipable_p.h>
46 #include <private/qdeclarativevaluetype_p.h>
47 #include <QFontMetrics>
48 #include <private/qsgrectangle_p.h>
49 #include <math.h>
50 #include <QtOpenGL/QGLShaderProgram>
51
52
53 #ifdef Q_OS_SYMBIAN
54 // In Symbian OS test data is located in applications private dir
55 #define SRCDIR "."
56 #endif
57
58 class tst_qsgflipable : public QObject
59 {
60     Q_OBJECT
61 public:
62     tst_qsgflipable();
63
64 private slots:
65     void initTestCase();
66     void cleanupTestCase();
67     void create();
68     void checkFrontAndBack();
69     void setFrontAndBack();
70
71     // below here task issues
72     void QTBUG_9161_crash();
73     void QTBUG_8474_qgv_abort();
74
75 private:
76     QDeclarativeEngine engine;
77 };
78
79 tst_qsgflipable::tst_qsgflipable()
80 {
81 }
82 void tst_qsgflipable::initTestCase()
83 {
84     QSGView canvas;
85     if (!QGLShaderProgram::hasOpenGLShaderPrograms(canvas.context()))
86         QSKIP("Flipable item needs OpenGL 2.0", SkipAll);
87 }
88
89 void tst_qsgflipable::cleanupTestCase()
90 {
91
92 }
93
94 void tst_qsgflipable::create()
95 {
96     QDeclarativeEngine engine;
97     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
98     QSGFlipable *obj = qobject_cast<QSGFlipable*>(c.create());
99
100     QVERIFY(obj != 0);
101     delete obj;
102 }
103
104 void tst_qsgflipable::checkFrontAndBack()
105 {
106     QDeclarativeEngine engine;
107     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
108     QSGFlipable *obj = qobject_cast<QSGFlipable*>(c.create());
109
110     QVERIFY(obj != 0);
111     QVERIFY(obj->front() != 0);
112     QVERIFY(obj->back() != 0);
113     delete obj;
114 }
115
116 void tst_qsgflipable::setFrontAndBack()
117 {
118     QDeclarativeEngine engine;
119     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml"));
120     QSGFlipable *obj = qobject_cast<QSGFlipable*>(c.create());
121
122     QVERIFY(obj != 0);
123     QVERIFY(obj->front() != 0);
124     QVERIFY(obj->back() != 0);
125
126     QString message = c.url().toString() + ":3:1: QML Flipable: front is a write-once property";
127     QTest::ignoreMessage(QtWarningMsg, qPrintable(message));
128     obj->setFront(new QSGRectangle());
129
130     message = c.url().toString() + ":3:1: QML Flipable: back is a write-once property";
131     QTest::ignoreMessage(QtWarningMsg, qPrintable(message));
132     obj->setBack(new QSGRectangle());
133     delete obj;
134 }
135
136 void tst_qsgflipable::QTBUG_9161_crash()
137 {
138     QSGView *canvas = new QSGView;
139     canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/crash.qml"));
140     QSGItem *root = canvas->rootObject();
141     QVERIFY(root != 0);
142     canvas->show();
143     delete canvas;
144 }
145
146 void tst_qsgflipable::QTBUG_8474_qgv_abort()
147 {
148     QSGView *canvas = new QSGView;
149     canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/flipable-abort.qml"));
150     QSGItem *root = canvas->rootObject();
151     QVERIFY(root != 0);
152     canvas->show();
153     delete canvas;
154 }
155
156 QTEST_MAIN(tst_qsgflipable)
157
158 #include "tst_qsgflipable.moc"