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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
/****************************************************************************
**
** 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 <QUuid>
#include <QDebug>
#include <qbluetoothuuid.h>
#if defined(Q_OS_UNIX)
# include <arpa/inet.h>
# include <netinet/in.h>
#endif
QT_USE_NAMESPACE
Q_DECLARE_METATYPE(quint128)
class tst_QBluetoothUuid : public QObject
{
Q_OBJECT
public:
tst_QBluetoothUuid();
~tst_QBluetoothUuid();
private slots:
void initTestCase();
void tst_construction();
void tst_assignment();
void tst_conversion_data();
void tst_conversion();
void tst_comparison_data();
void tst_comparison();
};
tst_QBluetoothUuid::tst_QBluetoothUuid()
{
qRegisterMetaType<quint128>("quint128");
}
tst_QBluetoothUuid::~tst_QBluetoothUuid()
{
}
void tst_QBluetoothUuid::initTestCase()
{
}
void tst_QBluetoothUuid::tst_construction()
{
{
QBluetoothUuid nullUuid;
QVERIFY(nullUuid.isNull());
}
{
QBluetoothUuid uuid(QBluetoothUuid::PublicBrowseGroup);
QVERIFY(!uuid.isNull());
bool ok;
quint16 uuid16;
uuid16 = uuid.toUInt16(&ok);
QVERIFY(ok);
QCOMPARE(uuid16, static_cast<quint16>(QBluetoothUuid::PublicBrowseGroup));
}
{
QBluetoothUuid uuid(QBluetoothUuid::PublicBrowseGroup);
QBluetoothUuid copy(uuid);
QCOMPARE(uuid.toUInt16(), copy.toUInt16());
}
{
QBluetoothUuid uuid(QBluetoothUuid::L2cap);
QVERIFY(!uuid.isNull());
bool ok;
quint16 uuid16;
uuid16 = uuid.toUInt16(&ok);
QVERIFY(ok);
QCOMPARE(uuid16, static_cast<quint16>(QBluetoothUuid::L2cap));
}
{
QUuid uuid(0x67c8770b, 0x44f1, 0x410a, 0xab, 0x9a, 0xf9, 0xb5, 0x44, 0x6f, 0x13, 0xee);
QBluetoothUuid btUuid(uuid);
QVERIFY(!btUuid.isNull());
QString uuidString(btUuid.toString());
QVERIFY(!uuidString.isEmpty());
QCOMPARE(uuidString, QString("{67c8770b-44f1-410a-ab9a-f9b5446f13ee}"));
}
{
QBluetoothUuid btUuid(QString("67c8770b-44f1-410a-ab9a-f9b5446f13ee"));
QVERIFY(!btUuid.isNull());
QString uuidString(btUuid.toString());
QVERIFY(!uuidString.isEmpty());
QCOMPARE(uuidString, QString("{67c8770b-44f1-410a-ab9a-f9b5446f13ee}"));
}
{
QBluetoothUuid btUuid(QString("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"));
QVERIFY(btUuid.isNull());
}
}
void tst_QBluetoothUuid::tst_assignment()
{
QBluetoothUuid uuid(QBluetoothUuid::PublicBrowseGroup);
{
QBluetoothUuid copy = uuid;
QCOMPARE(uuid.toUInt16(), copy.toUInt16());
}
{
QBluetoothUuid copy1;
QBluetoothUuid copy2;
QVERIFY(copy1.isNull());
QVERIFY(copy2.isNull());
copy1 = copy2 = uuid;
QVERIFY(!copy1.isNull());
QVERIFY(!copy2.isNull());
QCOMPARE(uuid.toUInt16(), copy1.toUInt16());
QCOMPARE(uuid.toUInt16(), copy2.toUInt16());
}
}
#define BASEUUID "-0000-1000-8000-00805F9B34FB"
#define UUID128_32(x, a, b, c, d) \
quint128 x = { \
{ \
a, b, c, d, \
0x00, 0x00, \
0x10, 0x00, \
0x80, 0x00, \
0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB \
} \
}
#define UUID128_16(x, a, b) UUID128_32(x, 0, 0, a, b)
#define NEWROW16(text, a, b, s) \
do { \
UUID128_16(uuid128, a, b); \
quint32 uuid32 = a << 8 | b; \
quint16 uuid16 = a << 8 | b; \
QTest::newRow(text) << true << uuid16 << true << uuid32 << true << uuid128 \
<< (QLatin1Char('{') + QLatin1String(s) + QLatin1Char('}')); \
} while (0)
#define NEWROW32(text, a, b, c, d, s) \
do { \
UUID128_32(uuid128, a, b, c, d); \
quint32 uuid32 = a << 24 | b << 16 | c << 8 | d; \
quint16 uuid16; \
bool constructUuid16 = (a == 0) && (b == 0); \
if (constructUuid16) \
uuid16 = c << 8 | d; \
else \
uuid16 = 0; \
QTest::newRow(text) << constructUuid16 << uuid16 << true << uuid32 << true << uuid128 \
<< (QLatin1Char('{') + QLatin1String(s) + QLatin1Char('}')); \
} while (0)
void tst_QBluetoothUuid::tst_conversion_data()
{
QTest::addColumn<bool>("constructUuid16");
QTest::addColumn<quint16>("uuid16");
QTest::addColumn<bool>("constructUuid32");
QTest::addColumn<quint32>("uuid32");
QTest::addColumn<bool>("constructUuid128");
QTest::addColumn<quint128>("uuid128");
QTest::addColumn<QString>("uuidS");
NEWROW32("base uuid", 0x00, 0x00, 0x00, 0x00, "00000000" BASEUUID);
NEWROW16("0x0001", 0x00, 0x01, "00000001" BASEUUID);
NEWROW16("0xffff", 0xff, 0xff, "0000FFFF" BASEUUID);
NEWROW32("0x00010000", 0x00, 0x01, 0x00, 0x00, "00010000" BASEUUID);
NEWROW32("0x0001ffff", 0x00, 0x01, 0xff, 0xff, "0001FFFF" BASEUUID);
NEWROW32("0xffff0000", 0xff, 0xff, 0x00, 0x00, "FFFF0000" BASEUUID);
NEWROW32("0xffffffff", 0xff, 0xff, 0xff, 0xff, "FFFFFFFF" BASEUUID);
{
quint128 uuid128 = {
{
0x00, 0x11, 0x22, 0x33,
0x44, 0x55,
0x66, 0x77,
0x88, 0x99,
0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff
}
};
QTest::newRow("00112233-4455-6677-8899-AABBCCDDEEFF")
<< false << quint16(0) << false << quint32(0) << true << uuid128
<< QString(QLatin1String("{00112233-4455-6677-8899-AABBCCDDEEFF}"));
}
}
void tst_QBluetoothUuid::tst_conversion()
{
QFETCH(bool, constructUuid16);
QFETCH(quint16, uuid16);
QFETCH(bool, constructUuid32);
QFETCH(quint32, uuid32);
QFETCH(bool, constructUuid128);
QFETCH(quint128, uuid128);
QFETCH(QString, uuidS);
int minimumSize = 16;
if (constructUuid16)
minimumSize = 2;
else if (constructUuid32)
minimumSize = 4;
if (constructUuid16) {
QBluetoothUuid uuid(uuid16);
bool ok;
QCOMPARE(uuid.toUInt16(&ok), uuid16);
QVERIFY(ok);
QCOMPARE(uuid.toUInt32(&ok), uuid32);
QVERIFY(ok);
QVERIFY(memcmp(uuid.toUInt128().data, uuid128.data, 16) == 0);
QCOMPARE(uuid.toString().toUpper(), uuidS.toUpper());
QCOMPARE(uuid.minimumSize(), minimumSize);
}
if (constructUuid32) {
QBluetoothUuid uuid(uuid32);
bool ok;
quint16 tmp = uuid.toUInt16(&ok);
QCOMPARE(ok, constructUuid16);
if (ok) {
QCOMPARE(tmp, uuid16);
}
QCOMPARE(uuid.toUInt32(&ok), uuid32);
QVERIFY(ok);
QVERIFY(memcmp(uuid.toUInt128().data, uuid128.data, 16) == 0);
QCOMPARE(uuid.toString().toUpper(), uuidS.toUpper());
QCOMPARE(uuid.minimumSize(), minimumSize);
}
if (constructUuid128) {
QBluetoothUuid uuid(uuid128);
bool ok;
quint16 tmpUuid16 = uuid.toUInt16(&ok);
QCOMPARE(ok, constructUuid16);
if (ok)
QCOMPARE(tmpUuid16, uuid16);
quint32 tmpUuid32 = uuid.toUInt32(&ok);
QCOMPARE(ok, constructUuid32);
if (ok)
QCOMPARE(tmpUuid32, uuid32);
QVERIFY(memcmp(uuid.toUInt128().data, uuid128.data, 16) == 0);
QCOMPARE(uuid.toString().toUpper(), uuidS.toUpper());
QCOMPARE(uuid.minimumSize(), minimumSize);
}
}
void tst_QBluetoothUuid::tst_comparison_data()
{
tst_conversion_data();
}
void tst_QBluetoothUuid::tst_comparison()
{
QFETCH(bool, constructUuid16);
QFETCH(quint16, uuid16);
QFETCH(bool, constructUuid32);
QFETCH(quint32, uuid32);
QFETCH(bool, constructUuid128);
QFETCH(quint128, uuid128);
QVERIFY(QBluetoothUuid() == QBluetoothUuid());
if (constructUuid16) {
QBluetoothUuid quuid16(uuid16);
QBluetoothUuid quuid32(uuid32);
QBluetoothUuid quuid128(uuid128);
QVERIFY(quuid16.toUInt16() == uuid16);
QVERIFY(quuid16.toUInt32() == uuid32);
QVERIFY(quuid16 == quuid32);
QVERIFY(quuid16 == quuid128);
QVERIFY(quuid32 == quuid16);
QVERIFY(quuid128 == quuid16);
}
if (constructUuid32) {
QBluetoothUuid quuid32(uuid32);
QBluetoothUuid quuid128(uuid128);
QVERIFY(quuid32.toUInt32() == uuid32);
QVERIFY(quuid32 == quuid128);
QVERIFY(quuid128 == quuid32);
}
if (constructUuid128) {
QBluetoothUuid quuid128(uuid128);
for (int var = 0; var < 16; ++var) {
QVERIFY(quuid128.toUInt128().data[var] == uuid128.data[var]);
}
}
}
QTEST_MAIN(tst_QBluetoothUuid)
#include "tst_qbluetoothuuid.moc"
|