558e9db228f4bcfd615d8d9bc60e288f2976cdfb
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick1 / qdeclarativebinding / tst_qdeclarativebinding.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/private/qdeclarativebind_p.h>
45 #include <QtQuick1/private/qdeclarativerectangle_p.h>
46
47 class tst_qdeclarativebinding : public QObject
48 {
49     Q_OBJECT
50 public:
51     tst_qdeclarativebinding();
52
53 private slots:
54     void binding();
55     void whenAfterValue();
56     void deletedObject();
57
58 private:
59     QDeclarativeEngine engine;
60 };
61
62 tst_qdeclarativebinding::tst_qdeclarativebinding()
63 {
64 }
65
66 void tst_qdeclarativebinding::binding()
67 {
68     QDeclarativeEngine engine;
69     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-binding.qml"));
70     QDeclarative1Rectangle *rect = qobject_cast<QDeclarative1Rectangle*>(c.create());
71     QVERIFY(rect != 0);
72
73     QDeclarative1Bind *binding3 = qobject_cast<QDeclarative1Bind*>(rect->findChild<QDeclarative1Bind*>("binding3"));
74     QVERIFY(binding3 != 0);
75
76     QCOMPARE(rect->color(), QColor("yellow"));
77     QCOMPARE(rect->property("text").toString(), QString("Hello"));
78     QCOMPARE(binding3->when(), false);
79
80     rect->setProperty("changeColor", true);
81     QCOMPARE(rect->color(), QColor("red"));
82
83     QCOMPARE(binding3->when(), true);
84
85     QDeclarative1Bind *binding = qobject_cast<QDeclarative1Bind*>(rect->findChild<QDeclarative1Bind*>("binding1"));
86     QVERIFY(binding != 0);
87     QCOMPARE(binding->object(), qobject_cast<QObject*>(rect));
88     QCOMPARE(binding->property(), QLatin1String("text"));
89     QCOMPARE(binding->value().toString(), QLatin1String("Hello"));
90
91     delete rect;
92 }
93
94 void tst_qdeclarativebinding::whenAfterValue()
95 {
96     QDeclarativeEngine engine;
97     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-binding2.qml"));
98     QDeclarative1Rectangle *rect = qobject_cast<QDeclarative1Rectangle*>(c.create());
99
100     QVERIFY(rect != 0);
101     QCOMPARE(rect->color(), QColor("yellow"));
102     QCOMPARE(rect->property("text").toString(), QString("Hello"));
103
104     rect->setProperty("changeColor", true);
105     QCOMPARE(rect->color(), QColor("red"));
106
107     delete rect;
108 }
109
110 //QTBUG-20692
111 void tst_qdeclarativebinding::deletedObject()
112 {
113     QDeclarativeEngine engine;
114     QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/deletedObject.qml"));
115     QDeclarative1Rectangle *rect = qobject_cast<QDeclarative1Rectangle*>(c.create());
116     QVERIFY(rect != 0);
117
118     QApplication::sendPostedEvents(0, QEvent::DeferredDelete);
119
120     //don't crash
121     rect->setProperty("activateBinding", true);
122
123     delete rect;
124 }
125
126 QTEST_MAIN(tst_qdeclarativebinding)
127
128 #include "tst_qdeclarativebinding.moc"