summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qbindablemap/tst_qbindablemap.cpp
blob: da58857c69f8507be642c5f12afc1751600c174a (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
#include <qtest.h>
#include <QtDeclarative/qmlengine.h>
#include <QtDeclarative/qmlcontext.h>
#include <QtDeclarative/qbindablemap.h>
#include <QtDeclarative/qmlcomponent.h>
#include <QSignalSpy>

class tst_QBindableMap : public QObject
{
    Q_OBJECT
public:
    tst_QBindableMap() {}

private slots:
    void insert();
    void clear();
    void changed();
};

void tst_QBindableMap::insert()
{
    QBindableMap map;
    map.setValue(QLatin1String("key1"),100);
    map.setValue(QLatin1String("key2"),200);
    QVERIFY(map.keys().count() == 2);

    QCOMPARE(map.value(QLatin1String("key1")), QVariant(100));
    QCOMPARE(map.value(QLatin1String("key2")), QVariant(200));

    map.setValue(QLatin1String("key1"),"Hello World");
    QCOMPARE(map.value(QLatin1String("key1")), QVariant("Hello World"));
}

void tst_QBindableMap::clear()
{
    QBindableMap map;
    map.setValue(QLatin1String("key1"),100);
    QVERIFY(map.keys().count() == 1);

    QCOMPARE(map.value(QLatin1String("key1")), QVariant(100));

    map.clearValue(QLatin1String("key1"));
    QVERIFY(map.keys().count() == 1);
    QCOMPARE(map.value(QLatin1String("key1")), QVariant());
}

void tst_QBindableMap::changed()
{
    QBindableMap map;
    QSignalSpy spy(&map, SIGNAL(changed(const QString&)));
    map.setValue(QLatin1String("key1"),100);
    map.setValue(QLatin1String("key2"),200);
    QCOMPARE(spy.count(), 0);

    map.clearValue(QLatin1String("key1"));
    QCOMPARE(spy.count(), 0);

    //make changes in QML
    QmlEngine engine;
    QmlContext *ctxt = engine.rootContext();
    ctxt->setContextProperty(QLatin1String("data"), &map);
    QmlComponent component(&engine, "<Script script=\"data.key1 = 'Hello World';\"/>");
    component.create();
    QCOMPARE(spy.count(), 1);
    QList<QVariant> arguments = spy.takeFirst();
    QCOMPARE(arguments.at(0).toString(),QLatin1String("key1"));
    QCOMPARE(map.value(QLatin1String("key1")), QVariant("Hello World"));
}

QTEST_MAIN(tst_QBindableMap)

#include "tst_qbindablemap.moc"