summaryrefslogtreecommitdiffstats
path: root/tests/auto/qbluetoothserver/tst_qbluetoothserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qbluetoothserver/tst_qbluetoothserver.cpp')
-rw-r--r--tests/auto/qbluetoothserver/tst_qbluetoothserver.cpp240
1 files changed, 240 insertions, 0 deletions
diff --git a/tests/auto/qbluetoothserver/tst_qbluetoothserver.cpp b/tests/auto/qbluetoothserver/tst_qbluetoothserver.cpp
new file mode 100644
index 00000000..347cddce
--- /dev/null
+++ b/tests/auto/qbluetoothserver/tst_qbluetoothserver.cpp
@@ -0,0 +1,240 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the QtBluetooth module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** 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, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, 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.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtTest/QtTest>
+
+#include <QDebug>
+
+#include <qbluetoothserver.h>
+#include <qbluetoothsocket.h>
+#include <qbluetoothlocaldevice.h>
+
+QT_USE_NAMESPACE
+
+//same uuid as tests/bttestui
+#define TEST_SERVICE_UUID "e8e10f95-1a70-4b27-9ccf-02010264e9c8"
+
+Q_DECLARE_METATYPE(QBluetooth::SecurityFlags)
+Q_DECLARE_METATYPE(QBluetoothServer::Error)
+
+// Max time to wait for connection
+static const int MaxConnectTime = 60 * 1000; // 1 minute in ms
+
+class tst_QBluetoothServer : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_QBluetoothServer();
+ ~tst_QBluetoothServer();
+
+private slots:
+ void initTestCase();
+ void cleanupTestCase();
+
+ void tst_construction();
+
+ void tst_receive_data();
+ void tst_receive();
+
+ void setHostMode(const QBluetoothAddress &localAdapter, QBluetoothLocalDevice::HostMode newHostMode);
+
+private:
+ QBluetoothLocalDevice localDevice;
+ QBluetoothLocalDevice::HostMode initialHostMode;
+};
+
+tst_QBluetoothServer::tst_QBluetoothServer()
+{
+}
+
+tst_QBluetoothServer::~tst_QBluetoothServer()
+{
+}
+
+void tst_QBluetoothServer::setHostMode(const QBluetoothAddress &localAdapter,
+ QBluetoothLocalDevice::HostMode newHostMode)
+{
+ QBluetoothLocalDevice device(localAdapter);
+ QSignalSpy hostModeSpy(&device, SIGNAL(hostModeStateChanged(QBluetoothLocalDevice::HostMode)));
+
+ if (!device.isValid())
+ return;
+
+ if (device.hostMode() == newHostMode)
+ return;
+
+ //We distinguish powerOn() and setHostMode(HostConnectable) because
+ //Android uses different permission levels, we want to avoid interaction with user
+ //which implies usage of powerOn -> unfortunately powerOn() is not equivalent to HostConnectable
+ //Unfortunately the discoverable mode always requires a user confirmation
+ switch (newHostMode) {
+ case QBluetoothLocalDevice::HostPoweredOff:
+ case QBluetoothLocalDevice::HostDiscoverable:
+ case QBluetoothLocalDevice::HostDiscoverableLimitedInquiry:
+ device.setHostMode(newHostMode);
+ break;
+ case QBluetoothLocalDevice::HostConnectable:
+ device.powerOn();
+ break;
+ }
+
+ int connectTime = 5000; // ms
+ while (hostModeSpy.count() < 1 && connectTime > 0) {
+ QTest::qWait(500);
+ connectTime -= 500;
+ }
+}
+
+void tst_QBluetoothServer::initTestCase()
+{
+ qRegisterMetaType<QBluetooth::SecurityFlags>("QBluetooth::SecurityFlags");
+ qRegisterMetaType<QBluetoothServer::Error>("QBluetoothServer::Error");
+
+ QBluetoothLocalDevice device;
+ if (!device.isValid())
+ return;
+
+ initialHostMode = device.hostMode();
+
+ setHostMode(device.address(), QBluetoothLocalDevice::HostConnectable);
+
+ QBluetoothLocalDevice::HostMode hostMode= localDevice.hostMode();
+
+ QVERIFY(hostMode != QBluetoothLocalDevice::HostPoweredOff);
+}
+
+void tst_QBluetoothServer::cleanupTestCase()
+{
+ QBluetoothLocalDevice device;
+ setHostMode(device.address(), initialHostMode);
+}
+
+void tst_QBluetoothServer::tst_construction()
+{
+ {
+ QBluetoothServer server(QBluetoothServiceInfo::RfcommProtocol);
+
+ QVERIFY(!server.isListening());
+ QCOMPARE(server.maxPendingConnections(), 1);
+ QVERIFY(!server.hasPendingConnections());
+ QVERIFY(server.nextPendingConnection() == 0);
+ QCOMPARE(server.error(), QBluetoothServer::NoError);
+ QCOMPARE(server.serverType(), QBluetoothServiceInfo::RfcommProtocol);
+ }
+
+ {
+ QBluetoothServer server(QBluetoothServiceInfo::L2capProtocol);
+
+ QVERIFY(!server.isListening());
+ QCOMPARE(server.maxPendingConnections(), 1);
+ QVERIFY(!server.hasPendingConnections());
+ QVERIFY(server.nextPendingConnection() == 0);
+ QCOMPARE(server.error(), QBluetoothServer::NoError);
+ QCOMPARE(server.serverType(), QBluetoothServiceInfo::L2capProtocol);
+ }
+}
+
+void tst_QBluetoothServer::tst_receive_data()
+{
+ QTest::addColumn<QBluetoothLocalDevice::HostMode>("hostmode");
+ QTest::newRow("offline mode") << QBluetoothLocalDevice::HostPoweredOff;
+ QTest::newRow("online mode") << QBluetoothLocalDevice::HostConnectable;
+}
+
+void tst_QBluetoothServer::tst_receive()
+{
+ QFETCH(QBluetoothLocalDevice::HostMode, hostmode);
+
+ QBluetoothLocalDevice localDev;
+ const QBluetoothAddress address = localDev.address();
+
+ bool localDeviceAvailable = localDev.isValid();
+
+ if (localDeviceAvailable) {
+ setHostMode(address, hostmode);
+
+ if (hostmode == QBluetoothLocalDevice::HostPoweredOff)
+ QCOMPARE(localDevice.hostMode(), hostmode);
+ else
+ QVERIFY(localDevice.hostMode() != QBluetoothLocalDevice::HostPoweredOff);
+ }
+ QBluetoothServer server(QBluetoothServiceInfo::RfcommProtocol);
+ QSignalSpy errorSpy(&server, SIGNAL(error(QBluetoothServer::Error)));
+
+ bool result = server.listen(address, 20); // port == 20
+ QTest::qWait(1000);
+
+ if (!result) {
+ QCOMPARE(server.serverAddress(), QBluetoothAddress());
+ QCOMPARE(server.serverPort(), quint16(0));
+ QVERIFY(errorSpy.count() > 0);
+ QVERIFY(!server.isListening());
+ if (!localDeviceAvailable) {
+ QVERIFY(server.error() != QBluetoothServer::NoError);
+ } else {
+ //local device but poweredOff
+ QCOMPARE(server.error(), QBluetoothServer::PoweredOffError);
+ }
+ return;
+ }
+
+ QVERIFY(result);
+
+ QVERIFY(QBluetoothLocalDevice::allDevices().count());
+ QCOMPARE(server.error(), QBluetoothServer::NoError);
+ QCOMPARE(server.serverAddress(), address);
+ QCOMPARE(server.serverPort(), quint16(20));
+ QVERIFY(server.isListening());
+ QVERIFY(!server.hasPendingConnections());
+
+ server.close();
+ QCOMPARE(server.error(), QBluetoothServer::NoError);
+ QVERIFY(server.serverAddress() == address || server.serverAddress() == QBluetoothAddress());
+ QVERIFY(server.serverPort() == 0);
+ QVERIFY(!server.isListening());
+ QVERIFY(!server.hasPendingConnections());
+}
+
+
+QTEST_MAIN(tst_QBluetoothServer)
+
+#include "tst_qbluetoothserver.moc"