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
|
/*
* Copyright 2013 Canonical Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of version 3 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* 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
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <QDBusReply>
#include <QDebug>
#include "fakebluez.h"
namespace Bluez {
FakeBluez::FakeBluez(QObject *parent) :
QObject(parent),
m_dbusMock(m_dbusTestRunner)
{
DBusMock::registerMetaTypes();
m_dbusMock.registerTemplate(BLUEZ_SERVICE, "bluez5",
QDBusConnection::SystemBus);
m_dbusTestRunner.startServices();
m_bluezMock = new QDBusInterface(BLUEZ_SERVICE,
BLUEZ_MAIN_OBJECT,
BLUEZ_MOCK_IFACE,
m_dbusTestRunner.systemConnection());
}
FakeBluez::~FakeBluez()
{
delete m_bluezMock;
}
QString
FakeBluez::addAdapter(const QString &name, const QString &system_name)
{
QDBusReply<QString> reply = m_bluezMock->call("AddAdapter",
name, system_name);
if (reply.isValid()) {
m_currentAdapter = reply.value().replace("/org/bluez/", "");
} else {
qWarning() << "Failed to add mock adapter:" << reply.error().message();
}
return reply.isValid() ? reply.value() : QString();
}
QString
FakeBluez::addDevice(const QString& name, const QString &address)
{
QDBusReply<QString> reply = m_bluezMock->call("AddDevice",
m_currentAdapter,
address, name);
if (reply.isValid()) {
m_devices.append(reply.value());
} else {
qWarning() << "Failed to add mock device:" << reply.error().message();
}
return reply.isValid() ? reply.value() : QString();
}
void
FakeBluez::pairDevice(const QString &address)
{
QDBusReply<void> reply = m_bluezMock->call("PairDevice",
m_currentAdapter,
address);
if (!reply.isValid()) {
qWarning() << "Failed to pair mock device:" << reply.error().message();
}
}
void
FakeBluez::connectDevice(const QString &address)
{
QDBusReply<void> reply = m_bluezMock->call("ConnectDevice",
m_currentAdapter,
address);
if (!reply.isValid()) {
qWarning() << "Failed to connect mock device:" << reply.error().message();
}
}
void
FakeBluez::disconnectDevice(const QString &address)
{
QDBusReply<void> reply = m_bluezMock->call("DisconnectDevice",
m_currentAdapter,
address);
if (!reply.isValid()) {
qWarning() << "Failed to disconnect mock device:" << reply.error().message();
}
}
QVariant
FakeBluez::getProperty(const QString &path,
const QString &interface,
const QString &property)
{
QDBusInterface iface(BLUEZ_SERVICE, path,
FREEDESKTOP_PROPERTIES_IFACE,
m_dbusTestRunner.systemConnection());
QDBusReply<QVariant> reply = iface.call("Get", interface, property);
if (reply.isValid()) {
return reply.value();
} else {
qWarning() << "Error getting property from mock:"
<< reply.error().message();
}
return reply.isValid() ? reply.value() : QVariant();
}
void
FakeBluez::setProperty(const QString &path,
const QString &interface,
const QString &property,
const QVariant &value)
{
QDBusInterface iface(BLUEZ_SERVICE, path,
FREEDESKTOP_PROPERTIES_IFACE,
m_dbusTestRunner.systemConnection());
QDBusReply<void> reply = iface.call("Set",
interface,
property, value);
if (!reply.isValid()) {
qWarning() << "Error setting property on mock:"
<< reply.error().message();
}
}
}
|