aboutsummaryrefslogtreecommitdiff
path: root/tests/client/modeltest.cpp
blob: e6ae82dd608d3fec3cbb9473afa99602be0ef6a6 (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
/*
 * Copyright 2012 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *      Renato Araujo Oliveira Filho <renato@canonical.com>
 */

#include "qdbusmenumodel.h"
#include "dbusmenuscript.h"

#include <QObject>
#include <QSignalSpy>
#include <QtTest>
#include <QDebug>

#include <gio/gio.h>

class ModelTest : public QObject
{
    Q_OBJECT
private:
    DBusMenuScript m_script;
    QDBusMenuModel m_model;

private Q_SLOTS:
    void initTestCase()
    {
        QVERIFY(m_script.connect());
    }

    void cleanupTestCase()
    {
        m_script.quit();
    }

    void init()
    {
        m_model.stop();
        m_model.setBusType(DBusEnums::SessionBus);
        m_model.setBusName(MENU_SERVICE_NAME);
        m_model.setObjectPath(MENU_OBJECT_PATH);
    }

    void cleanup()
    {
        m_script.unpublishMenu();
    }

    /*
     * Test if parent function always return a empty QModelIndex
     */
    void testParent()
    {
        QCOMPARE(m_model.parent(QModelIndex()), QModelIndex());
    }

    /*
     * Test if the propety busType handle correct integer values
     */
    void testBusTypeProperty()
    {
        m_model.setProperty("busType", 1);
        QCOMPARE(m_model.busType(), DBusEnums::SessionBus);

        m_model.setProperty("busType", 2);
        QCOMPARE(m_model.busType(), DBusEnums::SystemBus);

        m_model.setProperty("busType", 0);
        QCOMPARE(m_model.busType(), DBusEnums::SystemBus);

        m_model.setProperty("busType", 10);
        QCOMPARE(m_model.busType(), DBusEnums::SystemBus);

    }

    /*
     * Test if model return the correct values for standard properties
     */
    void testData()
    {
        // Make menu available
        m_script.publishMenu();
        m_script.run();

        // start model
        m_model.start();

        // Wait for dbus sync
        QTest::qWait(500);

        QCOMPARE(m_model.status(), DBusEnums::Connected);
        QCOMPARE(m_model.rowCount(), 4);

        // Label (String)
        QVariant label = m_model.data(m_model.index(0, 0), QMenuModel::Label);
        QVERIFY(label.isValid());
        QCOMPARE(label.type(), QVariant::String);
        QCOMPARE(label.toString(), QString("Menu0"));

        // Action (String)
        QVariant action = m_model.data(m_model.index(1, 0), QMenuModel::Action);
        QVERIFY(action.isValid());
        QCOMPARE(action.type(), QVariant::String);
        QCOMPARE(action.toString(), QString("Menu1Act"));

        // Wait for menu load (submenus are loaded async)
        QTest::qWait(500);
        QCOMPARE(m_model.rowCount(m_model.index(2, 0)), 2);
    }

    /*
     * Test if the model parse correct GVariant values types
     */
    void testExtraData()
    {
        // Make menu available
        m_script.publishMenu();
        m_script.run();

        // start model
        m_model.start();

        // Wait for dbus sync
        QTest::qWait(500);

        QCOMPARE(m_model.status(), DBusEnums::Connected);
        QCOMPARE(m_model.rowCount(), 4);

        QVariant e = m_model.data(m_model.index(0, 0), QMenuModel::Extra);
        QVERIFY(e.isValid());
        QVariantMap extra = e.toMap();

        // Boolean
        QVariant v = extra["boolean"];
        QCOMPARE(v.type(), QVariant::Bool);
        QCOMPARE(v.toBool(), true);

        // Byte
        v = extra["byte"];
        QCOMPARE(v.typeName(), "uchar");
        QCOMPARE(v.value<uchar>(), (uchar)42);

        // Int16
        v = extra["int16"];
        QCOMPARE(v.typeName(), "short");
        QCOMPARE(v.value<short>(), (short)-42);

        // UInt16
        v = extra["uint16"];
        QCOMPARE(v.typeName(), "ushort");
        QCOMPARE(v.value<ushort>(), (ushort)42);

        // Int32
        v = extra["int32"];
        QCOMPARE(v.type(), QVariant::Int);
        QCOMPARE(v.toInt(), -42);

        // UInt32
        v = extra["uint32"];
        QCOMPARE(v.type(), QVariant::UInt);
        QCOMPARE(v.toUInt(), (uint) 42);

        // Int64
        v = extra["int64"];
        QCOMPARE(v.type(), QVariant::LongLong);
        QCOMPARE(v.value<long>(), (long) -42);

        // UInt64
        v = extra["uint64"];
        QCOMPARE(v.type(), QVariant::ULongLong);
        QCOMPARE(v.value<ulong>(), (ulong) 42);

        // Double
        v = extra["double"];
        QCOMPARE(v.type(), QVariant::Double);
        QCOMPARE(v.toDouble(), 42.42);

        // String
        v = extra["string"];
        QCOMPARE(v.type(), QVariant::String);
        QCOMPARE(v.toString(), QString("42"));

        // Map
        v = extra["map"];
        QVariantMap map;
        map.insert("int64", QVariant::fromValue<long>(-42));
        map.insert("string", "42");
        map.insert("double", 42.42);

        QCOMPARE(v.type(), QVariant::Map);
        QCOMPARE(v.toMap(), map);

        // Utf8
        v = extra["utf8"];
        QCOMPARE(v.type(), QVariant::String);
        QCOMPARE(v.toString(), QString("dança"));

        // Tuple
        v = extra["tuple"];
        QVariantList lst;
        lst << "1" << 2 << 3.3;
        QCOMPARE(v.type(), QVariant::List);
        QCOMPARE(v.toList(), lst);
   }

    /*
     * Test if model is destroyed without crash
     */
    void testDestroyModel()
    {
        // Make menu available
        m_script.publishMenu();
        m_script.run();

        // create a new model
        QDBusMenuModel *model = new QDBusMenuModel();
        model->setBusType(DBusEnums::SessionBus);
        model->setBusName(MENU_SERVICE_NAME);
        model->setObjectPath(MENU_OBJECT_PATH);
        model->start();

        // Wait for dbus sync
        QTest::qWait(500);

        delete model;
    }
};

QTEST_MAIN(ModelTest)

#include "modeltest.moc"