summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-07-18 14:01:10 +0200
committerAlex Blasche <alexander.blasche@digia.com>2014-07-23 11:02:30 +0200
commit6ee2c7a095e1408000b02e1f3e1c4bab9359123d (patch)
tree48d244fb58482c2abc69bc7fd42fc512c52e76ba /tests
parentd5731113e912e0df17f19fcdb12b4b6b68256220 (diff)
Further cleanup QLowEnergyServiceInfo
Removes obsolte code from the previos GATT API and other API elements which do not make any sense under the new API anymore. The entire purpose of QLowEnergyServiceInfo is also in question as it doesn't really contain BTLE specifics when compared to QBluetoothServiceInfo. This requires further API evaluation. Change-Id: Idfce724bb58150839f756745b87864054909dedb Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp1
-rw-r--r--tests/auto/qlowenergyserviceinfo/tst_qlowenergyserviceinfo.cpp22
2 files changed, 0 insertions, 23 deletions
diff --git a/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp b/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp
index 3d501351..fa7aa50a 100644
--- a/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp
+++ b/tests/auto/qlowenergycontroller/tst_qlowenergycontroller.cpp
@@ -179,7 +179,6 @@ void tst_QLowEnergyController::tst_verifyAllServices()
QVERIFY(uuids.contains(info.serviceUuid()));
//QVERIFY(!info.isConnected());
QVERIFY(info.isValid());
- QCOMPARE(QLowEnergyServiceInfo::PrimaryService, info.serviceType());
QBluetoothUuid u = info.serviceUuid();
bool ok = false;
quint16 clsId = u.toUInt16(&ok);
diff --git a/tests/auto/qlowenergyserviceinfo/tst_qlowenergyserviceinfo.cpp b/tests/auto/qlowenergyserviceinfo/tst_qlowenergyserviceinfo.cpp
index e908ae97..ae9b3bd8 100644
--- a/tests/auto/qlowenergyserviceinfo/tst_qlowenergyserviceinfo.cpp
+++ b/tests/auto/qlowenergyserviceinfo/tst_qlowenergyserviceinfo.cpp
@@ -53,7 +53,6 @@
QT_USE_NAMESPACE
Q_DECLARE_METATYPE(QUuid)
-Q_DECLARE_METATYPE(QLowEnergyServiceInfo::ServiceType)
Q_DECLARE_METATYPE(QBluetoothDeviceInfo::CoreConfiguration)
Q_DECLARE_METATYPE(QLowEnergyServiceInfo)
Q_DECLARE_METATYPE(QBluetoothUuid::ServiceClassUuid)
@@ -102,8 +101,6 @@ void tst_QLowEnergyServiceInfo::tst_construction()
QVERIFY(!serviceInfo.isValid());
QCOMPARE(serviceInfo.serviceName(), QStringLiteral("Unknown Service"));
QCOMPARE(serviceInfo.serviceUuid().toString(), QBluetoothUuid().toString());
- QCOMPARE(serviceInfo.serviceType(), QLowEnergyServiceInfo::PrimaryService);
- QCOMPARE(serviceInfo.isConnected(), false);
QCOMPARE(serviceInfo.device(), QBluetoothDeviceInfo());
}
@@ -139,7 +136,6 @@ void tst_QLowEnergyServiceInfo::tst_assignment_data()
QTest::addColumn<QString>("name");
QTest::addColumn<quint32>("classOfDevice");
QTest::addColumn<QBluetoothUuid>("serviceClassUuid");
- QTest::addColumn<QLowEnergyServiceInfo::ServiceType>("serviceType");
QTest::addColumn<QBluetoothDeviceInfo::CoreConfiguration>("coreConfiguration");
// bits 12-8 Major
@@ -149,47 +145,38 @@ void tst_QLowEnergyServiceInfo::tst_assignment_data()
QTest::newRow("0x000000 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000000)
<< QBluetoothUuid(QBluetoothUuid::GenericAccess)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::BaseRateAndLowEnergyCoreConfiguration;
QTest::newRow("0x000100 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000100)
<< QBluetoothUuid(QBluetoothUuid::GenericAttribute)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::BaseRateAndLowEnergyCoreConfiguration;
QTest::newRow("0x000104 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000104)
<< QBluetoothUuid(QBluetoothUuid::HeartRate)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::BaseRateAndLowEnergyCoreConfiguration;
QTest::newRow("0x000118 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000118)
<< QBluetoothUuid(QBluetoothUuid::CyclingSpeedAndCadence)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::BaseRateAndLowEnergyCoreConfiguration;
QTest::newRow("0x000200 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000200)
<< QBluetoothUuid(QBluetoothUuid::CyclingPower)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::LowEnergyCoreConfiguration;
QTest::newRow("0x000204 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000204)
<< QBluetoothUuid(QBluetoothUuid::ScanParameters)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::LowEnergyCoreConfiguration;
QTest::newRow("0x000214 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000214)
<< QBluetoothUuid(QBluetoothUuid::DeviceInformation)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::LowEnergyCoreConfiguration;
QTest::newRow("0x000300 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000300)
<< QBluetoothUuid(QBluetoothUuid::CurrentTimeService)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::LowEnergyCoreConfiguration;
QTest::newRow("0x000320 COD") << QBluetoothAddress("000000000000") << "My Bluetooth Device"
<< quint32(0x000320)
<< QBluetoothUuid(QBluetoothUuid::LocationAndNavigation)
- << QLowEnergyServiceInfo::ServiceType(QLowEnergyServiceInfo::PrimaryService)
<< QBluetoothDeviceInfo::LowEnergyCoreConfiguration;
}
@@ -199,7 +186,6 @@ void tst_QLowEnergyServiceInfo::tst_assignment()
QFETCH(QString, name);
QFETCH(quint32, classOfDevice);
QFETCH(QBluetoothUuid, serviceClassUuid);
- QFETCH(QLowEnergyServiceInfo::ServiceType, serviceType);
QFETCH(QBluetoothDeviceInfo::CoreConfiguration, coreConfiguration);
QBluetoothDeviceInfo deviceInfo(address, name, classOfDevice);
@@ -220,8 +206,6 @@ void tst_QLowEnergyServiceInfo::tst_assignment()
QCOMPARE(copyInfo.device().address(), address);
QCOMPARE(copyInfo.serviceUuid(), serviceClassUuid);
QCOMPARE(copyInfo.device().coreConfigurations(), coreConfiguration);
- QCOMPARE(copyInfo.serviceType(), serviceType);
- QCOMPARE(copyInfo.isConnected(), false);
QCOMPARE(copyInfo.device(), deviceInfo);
}
@@ -237,7 +221,6 @@ void tst_QLowEnergyServiceInfo::tst_assignment()
QCOMPARE(copyInfo.device().address(), address);
QCOMPARE(copyInfo.serviceUuid(), serviceClassUuid);
QCOMPARE(copyInfo.device().coreConfigurations(), coreConfiguration);
- QCOMPARE(copyInfo.serviceType(), serviceType);
}
{
@@ -251,18 +234,13 @@ void tst_QLowEnergyServiceInfo::tst_assignment()
QVERIFY(copyInfo1.isValid());
QVERIFY(copyInfo2.isValid());
- //QVERIFY(QLowEnergyServiceInfo() != copyInfo1);
QCOMPARE(copyInfo1.device().address(), address);
QCOMPARE(copyInfo2.device().address(), address);
QCOMPARE(copyInfo1.serviceUuid(), serviceClassUuid);
QCOMPARE(copyInfo2.serviceUuid(), serviceClassUuid);
- QCOMPARE(copyInfo1.serviceType(), serviceType);
- QCOMPARE(copyInfo2.serviceType(), serviceType);
QCOMPARE(copyInfo1.device().coreConfigurations(), coreConfiguration);
QCOMPARE(copyInfo2.device().coreConfigurations(), coreConfiguration);
- QCOMPARE(copyInfo1.isConnected(), false);
- QCOMPARE(copyInfo2.isConnected(), false);
QCOMPARE(copyInfo1.device(), deviceInfo);
QCOMPARE(copyInfo2.device(), deviceInfo);
}