Remove "All rights reserved" line from license headers.
[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 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
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 <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"