1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the test suite of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ |
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 The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT |
21 | ** included in the packaging of this file. Please review the following |
22 | ** information to ensure the GNU General Public License requirements will |
23 | ** be met: https://www.gnu.org/licenses/gpl-3.0.html. |
24 | ** |
25 | ** $QT_END_LICENSE$ |
26 | ** |
27 | ****************************************************************************/ |
28 | |
29 | #include <QtCore/QString> |
30 | #include <QtTest/QtTest> |
31 | |
32 | #include <QtLocation/QPlaceReply> |
33 | |
34 | QT_USE_NAMESPACE |
35 | |
36 | class TestReply : public QPlaceReply |
37 | { |
38 | public: |
39 | TestReply(QObject *parent) : QPlaceReply(parent) {} |
40 | void setFinished(bool finished) { QPlaceReply::setFinished(finished); } |
41 | void setError(QPlaceReply::Error error, const QString &errorString) { |
42 | QPlaceReply::setError(error,errorString); |
43 | } |
44 | }; |
45 | |
46 | class tst_QPlaceReply : public QObject |
47 | { |
48 | Q_OBJECT |
49 | |
50 | public: |
51 | tst_QPlaceReply(); |
52 | |
53 | private Q_SLOTS: |
54 | void constructorTest(); |
55 | void typeTest(); |
56 | void finishedTest(); |
57 | void errorTest(); |
58 | }; |
59 | |
60 | tst_QPlaceReply::tst_QPlaceReply() |
61 | { |
62 | |
63 | } |
64 | |
65 | void tst_QPlaceReply::constructorTest() |
66 | { |
67 | TestReply *reply = new TestReply(this); |
68 | QCOMPARE(reply->parent(), this); |
69 | delete reply; |
70 | } |
71 | |
72 | void tst_QPlaceReply::typeTest() |
73 | { |
74 | TestReply *reply = new TestReply(this); |
75 | QCOMPARE(reply->type(), QPlaceReply::Reply); |
76 | |
77 | delete reply; |
78 | } |
79 | |
80 | void tst_QPlaceReply::finishedTest() |
81 | { |
82 | TestReply *reply = new TestReply(this); |
83 | QCOMPARE(reply->isFinished(), false); |
84 | reply->setFinished(true); |
85 | QCOMPARE(reply->isFinished(), true); |
86 | |
87 | delete reply; |
88 | } |
89 | |
90 | void tst_QPlaceReply::errorTest() |
91 | { |
92 | TestReply *reply = new TestReply(this); |
93 | QCOMPARE(reply->error(), QPlaceReply::NoError); |
94 | QCOMPARE(reply->errorString(), QString()); |
95 | |
96 | reply->setError(error: QPlaceReply::CommunicationError, QStringLiteral("Could not connect to server" )); |
97 | QCOMPARE(reply->error(), QPlaceReply::CommunicationError); |
98 | QCOMPARE(reply->errorString(), QStringLiteral("Could not connect to server" )); |
99 | |
100 | reply->setError(error: QPlaceReply::NoError, errorString: QString()); |
101 | QCOMPARE(reply->error(), QPlaceReply::NoError); |
102 | QCOMPARE(reply->errorString(), QString()); |
103 | |
104 | delete reply; |
105 | } |
106 | |
107 | QTEST_APPLESS_MAIN(tst_QPlaceReply) |
108 | |
109 | #include "tst_qplacereply.moc" |
110 | |