summaryrefslogtreecommitdiffstats
path: root/tests/qlistmodeladaptor/tst_qlistmodeladaptor.cpp
blob: e8680f20d854826f9a2ad6f07caee42bbd2fb2cb (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
/****************************************************************************
**
** Copyright (C) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the Itemviews NG project on Trolltech Labs.
**
** This file may be used under the terms of the GNU General Public
** License version 2.0 or 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 GNU
** General Public Licensing requirements will be met:
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
** http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include <QtTest/QtTest>
#include <QtGui/qstandarditemmodel.h>

#include <qlistmodeladaptor.h>
#include <qdataroles_p.h>

class tst_QtListModelAdaptor : public QObject
{
    Q_OBJECT

public:
    tst_QtListModelAdaptor();
    virtual ~tst_QtListModelAdaptor();

public slots:
    void initTestCase();
    void cleanupTestCase();
    void init();
    void cleanup();

private slots:
    void count_data();
    void count();
    void getData_data();
    void getData();
    void setData_data();
    void setData();

protected:
    QStandardItemModel *source;
    QtListModelAdaptor *adaptor;
};

Q_DECLARE_METATYPE(QList<int>)

tst_QtListModelAdaptor::tst_QtListModelAdaptor()
{
    qRegisterMetaType<QList<int> >();
}

tst_QtListModelAdaptor::~tst_QtListModelAdaptor()
{
}

void tst_QtListModelAdaptor::initTestCase()
{
    source = new QStandardItemModel();
    adaptor = new QtListModelAdaptor(source);
}

void tst_QtListModelAdaptor::cleanupTestCase()
{
    delete source;
    delete adaptor;
}

void tst_QtListModelAdaptor::init()
{
}

void tst_QtListModelAdaptor::cleanup()
{
    source->clear();
}

void tst_QtListModelAdaptor::count_data()
{
    QTest::addColumn<int>("itemCount");
    QTest::addColumn<int>("signalCount");

    QTest::newRow("no items") << 0 << 0;
    QTest::newRow("one items") << 1 << 1;
    QTest::newRow("two items") << 2 << 1;
    QTest::newRow("many items") << 10000 << 1;
}

void tst_QtListModelAdaptor::count()
{
    QFETCH(int, itemCount);
    QFETCH(int, signalCount);

    QSignalSpy itemsInserted(adaptor, SIGNAL(itemsInserted(int,int)));
    source->setRowCount(itemCount);
    QCOMPARE(adaptor->count(), itemCount);
    QCOMPARE(itemsInserted.count(), signalCount);
}

void tst_QtListModelAdaptor::getData_data()
{
    QTest::addColumn<QStringList>("items");
    QTest::addColumn<QByteArray>("role");
    QTest::addColumn<QStringList>("data");
    QTest::addColumn<int>("signalCount");

    QTest::newRow("no items")
            << QStringList()
            << "DisplayRole"
            << QStringList()
            << 0;

    QTest::newRow("three items")
            << (QStringList() << "one" << "two" << "three")
            << "DisplayRole"
            << (QStringList() << "four" << "five" << "six")
            << 3;
}

void tst_QtListModelAdaptor::getData()
{
    QFETCH(QStringList, items);
    QFETCH(QByteArray, role);
    QFETCH(QStringList, data);
    QFETCH(int, signalCount);

    QSignalSpy itemsChanged(adaptor, SIGNAL(itemsChanged(int,int,const QList<QByteArray>&)));

    for (int i = 0; i < items.count(); ++i)
        source->appendRow(new QStandardItem(items.at(i)));

    QCOMPARE(adaptor->count(), items.count());
    for (int j = 0; j < items.count(); ++j)
        QCOMPARE(adaptor->data(j, QList<QByteArray>() << role).value(role).toString(), items.at(j));

    for (int k = 0; k < data.count(); ++k)
        source->setData(source->index(k, 0), data.at(k), QtDataRoles::value(role));

    for (int l = 0; l < data.count(); ++l)
        QCOMPARE(adaptor->data(l, QList<QByteArray>() << role).value(role).toString(), data.at(l));

    QCOMPARE(itemsChanged.count(), signalCount);
}

void tst_QtListModelAdaptor::setData_data()
{
    QTest::addColumn<QStringList>("items");
    QTest::addColumn<QByteArray>("role");
    QTest::addColumn<QStringList>("data");
    QTest::addColumn<int>("signalCount");

    QTest::newRow("no items")
            << QStringList()
            << "DisplayRole"
            << QStringList()
            << 0;

    QTest::newRow("three items")
            << (QStringList() << "one" << "two" << "three")
            << "DisplayRole"
            << (QStringList() << "four" << "five" << "six")
            << 3;
}

void tst_QtListModelAdaptor::setData()
{
    QFETCH(QStringList, items);
    QFETCH(QByteArray, role);
    QFETCH(QStringList, data);
    QFETCH(int, signalCount);

    QSignalSpy itemsChanged(adaptor, SIGNAL(itemsChanged(int,int,const QList<QByteArray>&)));

    for (int i = 0; i < items.count(); ++i)
        source->appendRow(new QStandardItem(items.at(i)));

    QCOMPARE(adaptor->count(), items.count());
    for (int j = 0; j < items.count(); ++j)
        QCOMPARE(adaptor->data(j, QList<QByteArray>() << role).value(role).toString(), items.at(j));

    for (int k = 0; k < data.count(); ++k) {
        QHash<QByteArray, QVariant> hash;
        hash.insert(role, data.at(k));
        adaptor->setData(k, hash);
    }

    for (int l = 0; l < data.count(); ++l)
        QCOMPARE(source->data(source->index(l, 0), QtDataRoles::value(role)).toString(), data.at(l));

    QCOMPARE(itemsChanged.count(), signalCount);
}

QTEST_MAIN(tst_QtListModelAdaptor)

#include "tst_qlistmodeladaptor.moc"