60d71253a575c3520440cb5ffbcc8eaedb60dc9a
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick1 / 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 ** 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 #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     QDeclarative1Flipable *obj = qobject_cast<QDeclarative1Flipable*>(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     QDeclarative1Flipable *obj = qobject_cast<QDeclarative1Flipable*>(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     QDeclarative1Flipable *obj = qobject_cast<QDeclarative1Flipable*>(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 QDeclarative1Rectangle());
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 QDeclarative1Rectangle());
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"