aboutsummaryrefslogtreecommitdiff
path: root/tests/client/actiongrouptest.cpp
blob: 3ab329ceae636f896847a005662e2fd40ffc6d33 (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
/*
 * 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 "qdbusactiongroup.h"
#include "dbusmenuscript.h"
#include "qstateaction.h"

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

class ActionGroupTest : public QObject
{
    Q_OBJECT
private:
    QDBusMenuModel m_model;
    QDBusActionGroup m_actionGroup;
    DBusMenuScript m_script;

    void getMenuAction(QStateAction **act, int index)
    {
        // Append 2 menus
        m_script.walk(2);

        // Get Action
        QVariant action = m_model.data(m_model.index(index, 0), QMenuModel::Action);
        QVERIFY(action.isValid());
        *act = m_actionGroup.action(action.toString());
        QVERIFY(act);
    }

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

        m_actionGroup.stop();
        m_actionGroup.setBusType(DBusEnums::SessionBus);
        m_actionGroup.setBusName(MENU_SERVICE_NAME);
        m_actionGroup.setObjectPath(MENU_OBJECT_PATH);

        // start model
        m_model.start();
        m_actionGroup.start();

        // Make menu available
        m_script.publishMenu();
    }

    void initTestCase()
    {
        QVERIFY(m_script.connect());
    }

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

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

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

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

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

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

    /*
     * Test if QDBusActionGroup change to correct state after DBus
     * ervice appear
     */
    void testServiceAppear()
    {
        m_script.unpublishMenu();
        QCOMPARE(m_actionGroup.status(), DBusEnums::Connecting);

        // Make menu available
        m_script.connect();
        m_script.publishMenu();

        QCOMPARE(m_actionGroup.status(), DBusEnums::Connected);
    }

    /*
     * Test if QDBusActionGroup change to correct state after DBus
     * service disappear
     */
    void testServiceDisappear()
    {
        QCOMPARE(m_actionGroup.status(), DBusEnums::Connected);

        // Append menus
        m_script.walk(2);

        // Remove menu from dbus
        m_script.unpublishMenu();
        QCOMPARE(m_actionGroup.status(), DBusEnums::Connecting);

        m_actionGroup.stop();
        QCOMPARE(m_actionGroup.status(), DBusEnums::Disconnected);
    }

    void testActionName()
    {
        QStateAction *act;
        getMenuAction(&act, 1);
        QCOMPARE(act->property("name").toString(), QString("Menu1Act"));
    }

    /*
     * Test if Action::trigger active the action over DBus
     */
    void testStringActionActivation()
    {
        QStateAction *act;
        getMenuAction(&act, 1);
        act->activate(QVariant("42"));

        // wait for dbus propagation
        QTest::qWait(500);

        QPair<QString, QVariant> result = m_script.popActivatedAction();
        QCOMPARE(result.first, QString("Menu1Act"));
        QCOMPARE(result.second.toString(), QString("42"));
    }

    void testStringActionActivationByVariantString()
    {
        QStateAction *act;
        getMenuAction(&act, 1);
        act->activateByVariantString("\"53\"");

        // wait for dbus propagation
        QTest::qWait(500);

        QPair<QString, QVariant> result = m_script.popActivatedAction();
        QCOMPARE(result.first, QString("Menu1Act"));
        QCOMPARE(result.second.toString(), QString("53"));
    }

    /*
     * Test if Action became invalid after desappear from DBus
     */
    void testRemoveAction()
    {
        // Append 2 menus
        m_script.walk(2);

        // Get Action
        QStateAction *act = m_actionGroup.action(QString("Menu1Act"));
        QVERIFY(act);
        QVERIFY(act->isValid());

        // Remove 1 menu
        m_script.walk(1);

        //Check if action is invalid
        QVERIFY(!act->isValid());
    }

    /*
     * Test if Action became valid after service appears
     */
    void testActionIsValid()
    {
        // Get invalid Action
        QStateAction *act = m_actionGroup.action(QString("Menu1Act"));
        QVERIFY(act);
        QVERIFY(!act->isValid());
        QVERIFY(!act->state().isValid());

        // Append menus
        m_script.walk(2);

        // Action appear
        QVERIFY(act->isValid());
    }
};

QTEST_MAIN(ActionGroupTest);

#include "actiongrouptest.moc"