diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:18:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:18:55 (GMT) |
commit | e5fcad302d86d316390c6b0f62759a067313e8a9 (patch) | |
tree | c2afbf6f1066b6ce261f14341cf6d310e5595bc1 /tests/auto/qdbusreply | |
download | Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.zip Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.gz Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.bz2 |
Long live Qt 4.5!
Diffstat (limited to 'tests/auto/qdbusreply')
-rw-r--r-- | tests/auto/qdbusreply/.gitignore | 1 | ||||
-rw-r--r-- | tests/auto/qdbusreply/qdbusreply.pro | 10 | ||||
-rw-r--r-- | tests/auto/qdbusreply/tst_qdbusreply.cpp | 361 |
3 files changed, 372 insertions, 0 deletions
diff --git a/tests/auto/qdbusreply/.gitignore b/tests/auto/qdbusreply/.gitignore new file mode 100644 index 0000000..886db18 --- /dev/null +++ b/tests/auto/qdbusreply/.gitignore @@ -0,0 +1 @@ +tst_qdbusreply diff --git a/tests/auto/qdbusreply/qdbusreply.pro b/tests/auto/qdbusreply/qdbusreply.pro new file mode 100644 index 0000000..c96116c --- /dev/null +++ b/tests/auto/qdbusreply/qdbusreply.pro @@ -0,0 +1,10 @@ +load(qttest_p4) +QT = core +contains(QT_CONFIG,dbus): { + SOURCES += tst_qdbusreply.cpp + QT += dbus +} else { + SOURCES += ../qdbusmarshall/dummy.cpp +} + + diff --git a/tests/auto/qdbusreply/tst_qdbusreply.cpp b/tests/auto/qdbusreply/tst_qdbusreply.cpp new file mode 100644 index 0000000..96592ad --- /dev/null +++ b/tests/auto/qdbusreply/tst_qdbusreply.cpp @@ -0,0 +1,361 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Qt Software Information (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the either Technology Preview License Agreement or the +** Beta Release License Agreement. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 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 the GNU General Public License version 3.0 requirements will be +** met: 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. +** $QT_END_LICENSE$ +** +****************************************************************************/ +#include <qcoreapplication.h> +#include <qdebug.h> +#include <qvariant.h> + +#include <QtTest/QtTest> + +#include <QtDBus> + +typedef QMap<int,QString> IntStringMap; +Q_DECLARE_METATYPE(IntStringMap) + +struct MyStruct +{ + int i; + QString s; + + MyStruct() : i(1), s("String") { } + bool operator==(const MyStruct &other) const + { return i == other.i && s == other.s; } +}; +Q_DECLARE_METATYPE(MyStruct) + +QDBusArgument &operator<<(QDBusArgument &arg, const MyStruct &ms) +{ + arg.beginStructure(); + arg << ms.i << ms.s; + arg.endStructure(); + return arg; +} + +const QDBusArgument &operator>>(const QDBusArgument &arg, MyStruct &ms) +{ + arg.beginStructure(); + arg >> ms.i >> ms.s; + arg.endStructure(); + return arg; +} + +class TypesInterface; +class tst_QDBusReply: public QObject +{ + Q_OBJECT + QDBusInterface *iface; + TypesInterface *adaptor; +public: + tst_QDBusReply(); + +private slots: + void initTestCase() + { + qDBusRegisterMetaType<IntStringMap>(); + qDBusRegisterMetaType<MyStruct>(); + } + + void init(); + void simpleTypes(); + void complexTypes(); + void wrongTypes(); +}; + +class TypesInterface: public QDBusAbstractAdaptor +{ + Q_OBJECT + Q_CLASSINFO("D-Bus Interface", "com.trolltech.Qt.Autotests.TypesInterface") +public: + TypesInterface(QObject *parent) + : QDBusAbstractAdaptor(parent) + { } + +public slots: + bool retrieveBool() + { + return true; + } + + uchar retrieveUChar() + { + return 'A'; + } + + short retrieveShort() + { + return -47; + } + + ushort retrieveUShort() + { + return 42U; + } + + int retrieveInt() + { + return -470000; + } + + uint retrieveUInt() + { + return 42424242; + } + + qlonglong retrieveLongLong() + { + return -(Q_INT64_C(1) << 32); + } + + qulonglong retrieveULongLong() + { + return Q_INT64_C(1) << 32; + } + + double retrieveDouble() + { + return 1.5; + } + + QString retrieveString() + { + return "This string you should see"; + } + + QDBusObjectPath retrieveObjectPath() + { + return QDBusObjectPath("/"); + } + + QDBusSignature retrieveSignature() + { + return QDBusSignature("g"); + } + + QDBusVariant retrieveVariant() + { + return QDBusVariant(retrieveString()); + } + + QStringList retrieveStringList() + { + return QStringList() << "one" << "two"; + } + + QByteArray retrieveByteArray() + { + return "Hello, World"; + } + + QVariantList retrieveList() + { + return QVariantList() << retrieveInt() << retrieveString() + << retrieveByteArray(); + } + + QList<QDBusObjectPath> retrieveObjectPathList() + { + return QList<QDBusObjectPath>() << QDBusObjectPath("/") << QDBusObjectPath("/foo"); + } + + QVariantMap retrieveMap() + { + QVariantMap map; + map["one"] = 1; + map["two"] = 2U; + map["string"] = retrieveString(); + map["stringlist"] = retrieveStringList(); + return map; + } + + IntStringMap retrieveIntStringMap() + { + IntStringMap map; + map[1] = "1"; + map[2] = "2"; + map[-1231456] = "foo"; + return map; + } + + MyStruct retrieveStruct() + { + return MyStruct(); + } +}; + +tst_QDBusReply::tst_QDBusReply() +{ + adaptor = new TypesInterface(this); + QDBusConnection::sessionBus().registerObject("/", this); + + iface = new QDBusInterface(QDBusConnection::sessionBus().baseService(), "/", + "com.trolltech.Qt.Autotests.TypesInterface", + QDBusConnection::sessionBus(), + this); +} + +void tst_QDBusReply::init() +{ + QVERIFY(iface); + QVERIFY(iface->isValid()); +} + +void tst_QDBusReply::simpleTypes() +{ + QDBusReply<bool> rbool = iface->call(QDBus::BlockWithGui, "retrieveBool"); + QVERIFY(rbool.isValid()); + QCOMPARE(rbool.value(), adaptor->retrieveBool()); + + QDBusReply<uchar> ruchar = iface->call(QDBus::BlockWithGui, "retrieveUChar"); + QVERIFY(ruchar.isValid()); + QCOMPARE(ruchar.value(), adaptor->retrieveUChar()); + + QDBusReply<short> rshort = iface->call(QDBus::BlockWithGui, "retrieveShort"); + QVERIFY(rshort.isValid()); + QCOMPARE(rshort.value(), adaptor->retrieveShort()); + + QDBusReply<ushort> rushort = iface->call(QDBus::BlockWithGui, "retrieveUShort"); + QVERIFY(rushort.isValid()); + QCOMPARE(rushort.value(), adaptor->retrieveUShort()); + + QDBusReply<int> rint = iface->call(QDBus::BlockWithGui, "retrieveInt"); + QVERIFY(rint.isValid()); + QCOMPARE(rint.value(), adaptor->retrieveInt()); + + QDBusReply<uint> ruint = iface->call(QDBus::BlockWithGui, "retrieveUInt"); + QVERIFY(ruint.isValid()); + QCOMPARE(ruint.value(), adaptor->retrieveUInt()); + + QDBusReply<qlonglong> rqlonglong = iface->call(QDBus::BlockWithGui, "retrieveLongLong"); + QVERIFY(rqlonglong.isValid()); + QCOMPARE(rqlonglong.value(), adaptor->retrieveLongLong()); + + QDBusReply<qulonglong> rqulonglong = iface->call(QDBus::BlockWithGui, "retrieveULongLong"); + QVERIFY(rqulonglong.isValid()); + QCOMPARE(rqulonglong.value(), adaptor->retrieveULongLong()); + + QDBusReply<double> rdouble = iface->call(QDBus::BlockWithGui, "retrieveDouble"); + QVERIFY(rdouble.isValid()); + QCOMPARE(rdouble.value(), adaptor->retrieveDouble()); + + QDBusReply<QString> rstring = iface->call(QDBus::BlockWithGui, "retrieveString"); + QVERIFY(rstring.isValid()); + QCOMPARE(rstring.value(), adaptor->retrieveString()); + + QDBusReply<QDBusObjectPath> robjectpath = iface->call(QDBus::BlockWithGui, "retrieveObjectPath"); + QVERIFY(robjectpath.isValid()); + QCOMPARE(robjectpath.value().path(), adaptor->retrieveObjectPath().path()); + + QDBusReply<QDBusSignature> rsignature = iface->call(QDBus::BlockWithGui, "retrieveSignature"); + QVERIFY(rsignature.isValid()); + QCOMPARE(rsignature.value().signature(), adaptor->retrieveSignature().signature()); + + QDBusReply<QDBusVariant> rdbusvariant = iface->call(QDBus::BlockWithGui, "retrieveVariant"); + QVERIFY(rdbusvariant.isValid()); + QCOMPARE(rdbusvariant.value().variant(), adaptor->retrieveVariant().variant()); + + QDBusReply<QVariant> rvariant = iface->call(QDBus::BlockWithGui, "retrieveVariant"); + QVERIFY(rvariant.isValid()); + QCOMPARE(rvariant.value(), adaptor->retrieveVariant().variant()); + + QDBusReply<QByteArray> rbytearray = iface->call(QDBus::BlockWithGui, "retrieveByteArray"); + QVERIFY(rbytearray.isValid()); + QCOMPARE(rbytearray.value(), adaptor->retrieveByteArray()); + + QDBusReply<QStringList> rstringlist = iface->call(QDBus::BlockWithGui, "retrieveStringList"); + QVERIFY(rstringlist.isValid()); + QCOMPARE(rstringlist.value(), adaptor->retrieveStringList()); +} + +void tst_QDBusReply::complexTypes() +{ + QDBusReply<QVariantList> rlist = iface->call(QDBus::BlockWithGui, "retrieveList"); + QVERIFY(rlist.isValid()); + QCOMPARE(rlist.value(), adaptor->retrieveList()); + + QDBusReply<QList<QDBusObjectPath> > rolist = iface->call(QDBus::BlockWithGui, "retrieveObjectPathList"); + QVERIFY(rolist.isValid()); + QCOMPARE(rolist.value(), adaptor->retrieveObjectPathList()); + + QDBusReply<QVariantMap> rmap = iface->call(QDBus::BlockWithGui, "retrieveMap"); + QVERIFY(rmap.isValid()); + QCOMPARE(rmap.value(), adaptor->retrieveMap()); + + QDBusReply<IntStringMap> rismap = iface->call(QDBus::BlockWithGui, "retrieveIntStringMap"); + QVERIFY(rismap.isValid()); + QCOMPARE(rismap.value(), adaptor->retrieveIntStringMap()); + + QDBusReply<MyStruct> rstruct = iface->call(QDBus::BlockWithGui, "retrieveStruct"); + QVERIFY(rstruct.isValid()); + QCOMPARE(rstruct.value(), adaptor->retrieveStruct()); +} + +void tst_QDBusReply::wrongTypes() +{ + QDBusReply<bool> rbool = iface->call(QDBus::BlockWithGui, "retrieveInt"); + QVERIFY(!rbool.isValid()); + + rbool = iface->call(QDBus::BlockWithGui, "retrieveShort"); + QVERIFY(!rbool.isValid()); + + rbool = iface->call(QDBus::BlockWithGui, "retrieveStruct"); + QVERIFY(!rbool.isValid()); + + QDBusReply<short> rshort = iface->call(QDBus::BlockWithGui, "retrieveInt"); + QVERIFY(!rshort.isValid()); + + rshort = iface->call(QDBus::BlockWithGui, "retrieveBool"); + QVERIFY(!rshort.isValid()); + + rshort = iface->call(QDBus::BlockWithGui, "retrieveStruct"); + QVERIFY(!rshort.isValid()); + + QDBusReply<MyStruct> rstruct = iface->call(QDBus::BlockWithGui, "retrieveInt"); + QVERIFY(!rstruct.isValid()); + + rstruct = iface->call(QDBus::BlockWithGui, "retrieveShort"); + QVERIFY(!rstruct.isValid()); + + rstruct = iface->call(QDBus::BlockWithGui, "retrieveIntStringMap"); + QVERIFY(!rstruct.isValid()); +} + +QTEST_MAIN(tst_QDBusReply) + +#include "tst_qdbusreply.moc" |