summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativenotifier/tst_qdeclarativenotifier.cpp
blob: aec5f5265e93166b53451b799cac2226c38456f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/****************************************************************************
**
** Copyright (C) 2012 Research In Motion
** Contact: http://www.qt-project.org/legal
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.  For licensing terms and
** conditions see http://qt.digia.com/licensing.  For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights.  These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include <qtest.h>
#include <QDebug>
#include <QDeclarativeEngine>
#include <QDeclarativeComponent>
#include <QDeclarativeContext>
#include <qdeclarative.h>
#include <QMetaMethod>

#ifdef Q_OS_SYMBIAN
// In Symbian OS test data is located in applications private dir
#define SRCDIR "."
#endif


class ExportedClass : public QObject
{
    Q_OBJECT
    Q_PROPERTY(int selfProp READ selfProp NOTIFY selfPropChanged)
    Q_PROPERTY(int qmlObjectProp READ qmlObjectProp NOTIFY qmlObjectPropChanged)
    Q_PROPERTY(int cppObjectProp READ cppObjectProp NOTIFY cppObjectPropChanged)
    Q_PROPERTY(int unboundProp READ unboundProp NOTIFY unboundPropChanged)
    Q_PROPERTY(int normalBindingProp READ normalBindingProp NOTIFY normalBindingPropChanged)
    Q_PROPERTY(int compiledBindingProp READ compiledBindingProp NOTIFY compiledBindingPropChanged)
    Q_PROPERTY(int compiledBindingPropShared READ compiledBindingPropShared NOTIFY compiledBindingPropSharedChanged)
public:
    int selfPropConnections;
    int qmlObjectPropConnections;
    int cppObjectPropConnections;
    int unboundPropConnections;
    int normalBindingPropConnections;
    int compiledBindingPropConnections;
    int compiledBindingPropSharedConnections;
    int boundSignalConnections;
    int unusedSignalConnections;

    ExportedClass()
        : selfPropConnections(0), qmlObjectPropConnections(0), cppObjectPropConnections(0),
          unboundPropConnections(0), normalBindingPropConnections(0), compiledBindingPropConnections(0),
          compiledBindingPropSharedConnections(0), boundSignalConnections(0),
          unusedSignalConnections(0)
    {}

    ~ExportedClass()
    {
        QCOMPARE(selfPropConnections, 0);
        QCOMPARE(qmlObjectPropConnections, 0);
        QCOMPARE(cppObjectPropConnections, 0);
        QCOMPARE(unboundPropConnections, 0);
        QCOMPARE(normalBindingPropConnections, 0);
        QCOMPARE(compiledBindingPropConnections, 0);
        QCOMPARE(compiledBindingPropSharedConnections, 0);
        QCOMPARE(boundSignalConnections, 0);
        QCOMPARE(unusedSignalConnections, 0);
    }

    int selfProp() const { return 42; }
    int qmlObjectProp() const { return 42; }
    int unboundProp() const { return 42; }
    int normalBindingProp() const { return 42; }
    int compiledBindingProp() const { return 42; }
    int compiledBindingPropShared() const { return 42; }
    int cppObjectProp() const { return 42; }

    void verifyReceiverCount()
    {
        QCOMPARE(receivers(SIGNAL(selfPropChanged())), selfPropConnections);
        QCOMPARE(receivers(SIGNAL(qmlObjectPropChanged())), qmlObjectPropConnections);
        QCOMPARE(receivers(SIGNAL(cppObjectPropChanged())), cppObjectPropConnections);
        QCOMPARE(receivers(SIGNAL(unboundPropChanged())), unboundPropConnections);
        QCOMPARE(receivers(SIGNAL(normalBindingPropChanged())), normalBindingPropConnections);
        QCOMPARE(receivers(SIGNAL(compiledBindingPropChanged())), compiledBindingPropConnections);
        QCOMPARE(receivers(SIGNAL(compiledBindingPropSharedChanged())), compiledBindingPropSharedConnections);
        QCOMPARE(receivers(SIGNAL(boundSignal())), boundSignalConnections);
        QCOMPARE(receivers(SIGNAL(unusedSignal())), unusedSignalConnections);
    }

protected:
    void connectNotify(const char *signal)
    {
        const QString signalName(signal);
        if (signalName == SIGNAL(selfPropChanged())) selfPropConnections++;
        if (signalName == SIGNAL(qmlObjectPropChanged())) qmlObjectPropConnections++;
        if (signalName == SIGNAL(cppObjectPropChanged())) cppObjectPropConnections++;
        if (signalName == SIGNAL(unboundPropChanged())) unboundPropConnections++;
        if (signalName == SIGNAL(normalBindingPropChanged())) normalBindingPropConnections++;
        if (signalName == SIGNAL(compiledBindingPropChanged())) compiledBindingPropConnections++;
        if (signalName == SIGNAL(compiledBindingPropSharedChanged())) compiledBindingPropSharedConnections++;
        if (signalName == SIGNAL(boundSignal()))   boundSignalConnections++;
        if (signalName == SIGNAL(unusedSignal())) unusedSignalConnections++;
        verifyReceiverCount();
        //qDebug() << Q_FUNC_INFO << this << signalName;
    }

    void disconnectNotify(const char *signal)
    {
        const QString signalName(signal);
        if (signalName == SIGNAL(selfPropChanged())) selfPropConnections--;
        if (signalName == SIGNAL(qmlObjectPropChanged())) qmlObjectPropConnections--;
        if (signalName == SIGNAL(cppObjectPropChanged())) cppObjectPropConnections--;
        if (signalName == SIGNAL(unboundPropChanged())) unboundPropConnections--;
        if (signalName == SIGNAL(normalBindingPropChanged())) normalBindingPropConnections--;
        if (signalName == SIGNAL(compiledBindingPropChanged())) compiledBindingPropConnections--;
        if (signalName == SIGNAL(compiledBindingPropSharedChanged())) compiledBindingPropSharedConnections--;
        if (signalName == SIGNAL(boundSignal()))   boundSignalConnections--;
        if (signalName == SIGNAL(unusedSignal())) unusedSignalConnections--;
        verifyReceiverCount();
        //qDebug() << Q_FUNC_INFO << this << signalName;
    }

signals:
    void selfPropChanged();
    void qmlObjectPropChanged();
    void cppObjectPropChanged();
    void unboundPropChanged();
    void normalBindingPropChanged();
    void compiledBindingPropChanged();
    void compiledBindingPropSharedChanged();
    void boundSignal();
    void unusedSignal();
};

class tst_qdeclarativenotifier : public QObject
{
    Q_OBJECT
public:
    tst_qdeclarativenotifier()
        : root(0), exportedClass(0), exportedObject(0)
    {}

private slots:
    void initTestCase();
    void cleanupTestCase();
    void connectNotify();

    void removeCompiledBinding();
    void removeCompiledBindingShared();
    void removeNormalBinding();
    // No need to test value type proxy bindings - the user can't override disconnectNotify() anyway,
    // as the classes are private to the QML engine

    void readProperty();
    void propertyChange();
    void disconnectOnDestroy();

    void nonQmlConnect();

private:
    void createObjects();

    QDeclarativeEngine engine;
    QObject *root;
    ExportedClass *exportedClass;
    ExportedClass *exportedObject;
};

void tst_qdeclarativenotifier::initTestCase()
{
    qmlRegisterType<ExportedClass>("Test", 1, 0, "ExportedClass");
}

void tst_qdeclarativenotifier::createObjects()
{
    delete root;
    root = 0;
    exportedClass = exportedObject = 0;

    QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/connectnotify.qml"));
    exportedObject = new ExportedClass();
    exportedObject->setObjectName("exportedObject");
    engine.rootContext()->setContextProperty("_exportedObject", exportedObject);
    root = component.create();
    QVERIFY(root != 0);
    exportedClass = qobject_cast<ExportedClass *>(
                root->findChild<ExportedClass*>("exportedClass"));
    QVERIFY(exportedClass != 0);
}

void tst_qdeclarativenotifier::cleanupTestCase()
{
    delete root;
    root = 0;
    delete exportedObject;
    exportedObject = 0;
}

void tst_qdeclarativenotifier::connectNotify()
{
    createObjects();

    QCOMPARE(exportedClass->selfPropConnections, 1);
    QCOMPARE(exportedClass->qmlObjectPropConnections, 1);
    QCOMPARE(exportedClass->cppObjectPropConnections, 0);
    QCOMPARE(exportedClass->unboundPropConnections, 0);
    QCOMPARE(exportedClass->normalBindingPropConnections, 1);
    QCOMPARE(exportedClass->compiledBindingPropConnections, 1);
    QCOMPARE(exportedClass->compiledBindingPropSharedConnections, 1);
    QCOMPARE(exportedClass->boundSignalConnections, 1);
    QCOMPARE(exportedClass->unusedSignalConnections, 0);
    exportedClass->verifyReceiverCount();

    QCOMPARE(exportedObject->selfPropConnections, 0);
    QCOMPARE(exportedObject->qmlObjectPropConnections, 0);
    QCOMPARE(exportedObject->cppObjectPropConnections, 1);
    QCOMPARE(exportedObject->unboundPropConnections, 0);
    QCOMPARE(exportedObject->normalBindingPropConnections, 0);
    QCOMPARE(exportedObject->compiledBindingPropConnections, 0);
    QCOMPARE(exportedObject->compiledBindingPropSharedConnections, 0);
    QCOMPARE(exportedObject->boundSignalConnections, 0);
    QCOMPARE(exportedObject->unusedSignalConnections, 0);
    exportedObject->verifyReceiverCount();
}

void tst_qdeclarativenotifier::removeCompiledBinding()
{
    createObjects();

    // Removing a binding should disconnect all of its guarded properties
    QVERIFY(QMetaObject::invokeMethod(root, "removeCompiledBinding"));
    QCOMPARE(exportedClass->compiledBindingPropConnections, 0);
    exportedClass->verifyReceiverCount();
}

void tst_qdeclarativenotifier::removeCompiledBindingShared()
{
    createObjects();

    // In this case, the compiledBindingPropShared property is used by two compiled bindings.
    // Make sure that removing one binding doesn't by accident disconnect all. Behind the scenes,
    // the subscription is shared between multiple bindings.
    QVERIFY(QMetaObject::invokeMethod(root, "removeCompiledBindingShared_1"));
    QCOMPARE(exportedClass->compiledBindingPropSharedConnections, 1);
    exportedClass->verifyReceiverCount();

    // Removing the second binding should trigger a disconnect now.
    QVERIFY(QMetaObject::invokeMethod(root, "removeCompiledBindingShared_2"));
    QCOMPARE(exportedClass->compiledBindingPropSharedConnections, 0);
    exportedClass->verifyReceiverCount();
}

void tst_qdeclarativenotifier::removeNormalBinding()
{
    createObjects();

    // Removing a binding should disconnect all of its guarded properties
    QVERIFY(QMetaObject::invokeMethod(root, "removeNormalBinding"));
    QCOMPARE(exportedClass->normalBindingPropConnections, 0);
    exportedClass->verifyReceiverCount();
}

void tst_qdeclarativenotifier::readProperty()
{
    createObjects();

    // Reading a property should not connect to it
    QVERIFY(QMetaObject::invokeMethod(root, "readProperty"));
    QCOMPARE(exportedClass->unboundPropConnections, 0);
    exportedClass->verifyReceiverCount();
}

void tst_qdeclarativenotifier::propertyChange()
{
    createObjects();

    // Changing the state will trigger the PropertyChange to overwrite a value with a binding.
    // For this, the new binding needs to be connected, and afterwards disconnected.
    QVERIFY(QMetaObject::invokeMethod(root, "changeState"));
    QCOMPARE(exportedClass->unboundPropConnections, 1);
    exportedClass->verifyReceiverCount();
    QVERIFY(QMetaObject::invokeMethod(root, "changeState"));
    QCOMPARE(exportedClass->unboundPropConnections, 0);
    exportedClass->verifyReceiverCount();
}

void tst_qdeclarativenotifier::disconnectOnDestroy()
{
    createObjects();

    // Deleting a QML object should remove all connections. For exportedClass, this is tested in
    // the destructor, and for exportedObject, it is tested below.
    delete root;
    root = 0;
    QCOMPARE(exportedObject->cppObjectPropConnections, 0);
    exportedObject->verifyReceiverCount();
}

void tst_qdeclarativenotifier::nonQmlConnect()
{
    ExportedClass a;
    connect(&a, SIGNAL(boundSignal()), &a, SIGNAL(compiledBindingPropChanged()));
    QCOMPARE(a.boundSignalConnections, 1);
    a.verifyReceiverCount();
    disconnect(&a, SIGNAL(boundSignal()), &a, SIGNAL(compiledBindingPropChanged()));
    QCOMPARE(a.boundSignalConnections, 0);
    a.verifyReceiverCount();
}

QTEST_MAIN(tst_qdeclarativenotifier)

#include "tst_qdeclarativenotifier.moc"