~saiarcot895/ubuntu/trusty/qtconnectivity-opensource-src/enable-bluetooth

« back to all changes in this revision

Viewing changes to tests/auto/qbluetoothtransferrequest/tst_qbluetoothtransferrequest.cpp

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-08-20 08:46:41 UTC
  • Revision ID: package-import@ubuntu.com-20130820084641-09v00451dpna7ydk
Tags: upstream-5.0~git20130802
ImportĀ upstreamĀ versionĀ 5.0~git20130802

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the QtBluetooth module of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
9
** Commercial License Usage
 
10
** Licensees holding valid commercial Qt licenses may use this file in
 
11
** accordance with the commercial license agreement provided with the
 
12
** Software or, alternatively, in accordance with the terms contained in
 
13
** a written agreement between you and Digia.  For licensing terms and
 
14
** conditions see http://qt.digia.com/licensing.  For further information
 
15
** use the contact form at http://qt.digia.com/contact-us.
 
16
**
 
17
** GNU Lesser General Public License Usage
 
18
** Alternatively, this file may be used under the terms of the GNU Lesser
 
19
** General Public License version 2.1 as published by the Free Software
 
20
** Foundation and appearing in the file LICENSE.LGPL included in the
 
21
** packaging of this file.  Please review the following information to
 
22
** ensure the GNU Lesser General Public License version 2.1 requirements
 
23
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
24
**
 
25
** In addition, as a special exception, Digia gives you certain additional
 
26
** rights.  These rights are described in the Digia Qt LGPL Exception
 
27
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
28
**
 
29
** GNU General Public License Usage
 
30
** Alternatively, this file may be used under the terms of the GNU
 
31
** General Public License version 3.0 as published by the Free Software
 
32
** Foundation and appearing in the file LICENSE.GPL included in the
 
33
** packaging of this file.  Please review the following information to
 
34
** ensure the GNU General Public License version 3.0 requirements will be
 
35
** met: http://www.gnu.org/copyleft/gpl.html.
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
#include <QtTest/QtTest>
 
43
 
 
44
#include <QDebug>
 
45
#include <QMap>
 
46
 
 
47
#include <qbluetoothtransferrequest.h>
 
48
#include <qbluetoothaddress.h>
 
49
#include <qbluetoothlocaldevice.h>
 
50
 
 
51
QT_USE_NAMESPACE_BLUETOOTH
 
52
 
 
53
typedef QMap<int,QVariant> tst_QBluetoothTransferRequest_QParameterMap;
 
54
Q_DECLARE_METATYPE(tst_QBluetoothTransferRequest_QParameterMap)
 
55
 
 
56
class tst_QBluetoothTransferRequest : public QObject
 
57
{
 
58
    Q_OBJECT
 
59
 
 
60
public:
 
61
    tst_QBluetoothTransferRequest();
 
62
    ~tst_QBluetoothTransferRequest();
 
63
 
 
64
private slots:
 
65
    void initTestCase();
 
66
 
 
67
    void tst_construction_data();
 
68
    void tst_construction();
 
69
 
 
70
    void tst_assignment_data();
 
71
    void tst_assignment();
 
72
};
 
73
 
 
74
tst_QBluetoothTransferRequest::tst_QBluetoothTransferRequest()
 
75
{
 
76
}
 
77
 
 
78
tst_QBluetoothTransferRequest::~tst_QBluetoothTransferRequest()
 
79
{
 
80
}
 
81
 
 
82
void tst_QBluetoothTransferRequest::initTestCase()
 
83
{
 
84
    // start Bluetooth if not started
 
85
    QBluetoothLocalDevice *device = new QBluetoothLocalDevice();
 
86
    device->powerOn();
 
87
    delete device;
 
88
}
 
89
 
 
90
void tst_QBluetoothTransferRequest::tst_construction_data()
 
91
{
 
92
    QTest::addColumn<QBluetoothAddress>("address");
 
93
    QTest::addColumn<QMap<int, QVariant> >("parameters");
 
94
 
 
95
    QMap<int, QVariant> inparameters;
 
96
    inparameters.insert((int)QBluetoothTransferRequest::DescriptionAttribute, "Desciption");
 
97
    inparameters.insert((int)QBluetoothTransferRequest::LengthAttribute, QVariant(1024));
 
98
    inparameters.insert((int)QBluetoothTransferRequest::TypeAttribute, "OPP");
 
99
 
 
100
    QTest::newRow("0x000000 COD") << QBluetoothAddress("000000000000") << inparameters;
 
101
    QTest::newRow("0x000100 COD") << QBluetoothAddress("000000000000") << inparameters;
 
102
    QTest::newRow("0x000104 COD") << QBluetoothAddress("000000000000") << inparameters;
 
103
    QTest::newRow("0x000118 COD") << QBluetoothAddress("000000000000") << inparameters;
 
104
    QTest::newRow("0x000200 COD") << QBluetoothAddress("000000000000") << inparameters;
 
105
}
 
106
 
 
107
void tst_QBluetoothTransferRequest::tst_construction()
 
108
{
 
109
    QFETCH(QBluetoothAddress, address);
 
110
    QFETCH(tst_QBluetoothTransferRequest_QParameterMap, parameters);
 
111
 
 
112
    QBluetoothTransferRequest transferRequest(address);
 
113
 
 
114
    foreach (int key, parameters.keys()) {
 
115
        transferRequest.setAttribute((QBluetoothTransferRequest::Attribute)key, parameters[key]);
 
116
        QCOMPARE(parameters[key], transferRequest.attribute((QBluetoothTransferRequest::Attribute)key));
 
117
    }
 
118
 
 
119
    QCOMPARE(transferRequest.address(), address);
 
120
 
 
121
    QBluetoothTransferRequest copyRequest(transferRequest);
 
122
 
 
123
    QCOMPARE(copyRequest.address(), address);
 
124
    QCOMPARE(transferRequest, copyRequest);
 
125
}
 
126
 
 
127
void tst_QBluetoothTransferRequest::tst_assignment_data()
 
128
{
 
129
    tst_construction_data();
 
130
}
 
131
 
 
132
void tst_QBluetoothTransferRequest::tst_assignment()
 
133
{
 
134
    QFETCH(QBluetoothAddress, address);
 
135
    QFETCH(tst_QBluetoothTransferRequest_QParameterMap, parameters);
 
136
 
 
137
    QBluetoothTransferRequest transferRequest(address);
 
138
 
 
139
    foreach (int key, parameters.keys()) {
 
140
        transferRequest.setAttribute((QBluetoothTransferRequest::Attribute)key, parameters[key]);
 
141
    }
 
142
 
 
143
    {
 
144
        QBluetoothTransferRequest copyRequest = transferRequest;
 
145
 
 
146
        QCOMPARE(copyRequest.address(), address);
 
147
        QCOMPARE(transferRequest, copyRequest);
 
148
    }
 
149
 
 
150
    {
 
151
        QBluetoothTransferRequest copyRequest(QBluetoothAddress("000000000001"));
 
152
 
 
153
        copyRequest = transferRequest;
 
154
 
 
155
        QCOMPARE(copyRequest.address(), address);
 
156
        QCOMPARE(transferRequest, copyRequest);
 
157
    }
 
158
 
 
159
    {
 
160
        QBluetoothTransferRequest copyRequest1(QBluetoothAddress("000000000001"));
 
161
        QBluetoothTransferRequest copyRequest2(QBluetoothAddress("000000000001"));
 
162
 
 
163
        copyRequest1 = copyRequest2 = transferRequest;
 
164
 
 
165
        QCOMPARE(copyRequest1.address(), address);
 
166
        QCOMPARE(copyRequest2.address(), address);
 
167
        QCOMPARE(transferRequest, copyRequest1);
 
168
        QCOMPARE(transferRequest, copyRequest2);
 
169
 
 
170
    }
 
171
}
 
172
 
 
173
QTEST_MAIN(tst_QBluetoothTransferRequest)
 
174
 
 
175
#include "tst_qbluetoothtransferrequest.moc"