~cimi/unity8/card_emblems_single_container

« back to all changes in this revision

Viewing changes to tests/plugins/Unity/Session/sessionbackendtest.cpp

  • Committer: Andrea Cimitan
  • Date: 2014-06-26 12:06:37 UTC
  • mfrom: (931.1.54 unity8)
  • Revision ID: andrea.cimitan@gmail.com-20140626120637-wyy0lxrw4akwik92
[ Ying-Chun Liu ]
* Add logout support. Reviewed by: Daniel d'Andrada (LP: #1302213)
[ Michał Sawicz ]
* Make so that fixedArtShapeSize actually fixes artShapeSize.
[ Albert Astals ]
* Add VerticalJournal integration to Dash/scopes/QML (LP: #1326467)
* Make so that fixedArtShapeSize actually fixes artShapeSize.
[ Mirco Müller ]
* Added the frontend-part of sound-hint support for notifications with
  updated QML-tests.
* New rebuild forced
[ Albert Astals ]
* Departments support (LP: #1320847)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *      Ying-Chun Liu (PaulLiu) <paul.liu@canonical.com>
 
18
 */
 
19
 
 
20
#include <QtTest>
 
21
#include <QDBusConnection>
 
22
#include <QDBusMessage>
 
23
#include <QDBusInterface>
 
24
#include <QDBusReply>
 
25
#include <QDBusVariant>
 
26
 
 
27
#include "dbusunitysessionservice.h"
 
28
 
 
29
class SessionBackendTest : public QObject
 
30
{
 
31
    Q_OBJECT
 
32
 
 
33
private Q_SLOTS:
 
34
 
 
35
    void initTestCase() {
 
36
    }
 
37
 
 
38
    void testDbusIfaceMethods_data() {
 
39
        QTest::addColumn<QString>("method");
 
40
 
 
41
        QTest::newRow("Logout") << "RequestLogout";
 
42
    }
 
43
 
 
44
    void testDbusIfaceMethods() {
 
45
        QFETCH(QString, method);
 
46
 
 
47
        DBusUnitySessionService dbusUnitySessionService;
 
48
 
 
49
        QDBusConnection con = QDBusConnection::sessionBus();
 
50
        QDBusInterface interface ("com.canonical.Unity",
 
51
                                  "/com/canonical/Unity/Session",
 
52
                                  "com.canonical.Unity.Session",
 
53
                                  con);
 
54
        QDBusReply<void> reply;
 
55
 
 
56
        QCOMPARE(interface.isValid(), true);
 
57
        reply = interface.call(method);
 
58
        QCOMPARE(reply.isValid(), true);
 
59
 
 
60
    }
 
61
};
 
62
 
 
63
QTEST_GUILESS_MAIN(SessionBackendTest)
 
64
#include "sessionbackendtest.moc"