summaryrefslogtreecommitdiff
path: root/tests/auto/qplacesearchresult
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2011-09-16 13:38:27 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-27 08:32:57 +0200
commitd4d61094159afe9599cd982740a74536c587a378 (patch)
tree9f9e62e145f9fb0c4b87deec4116e16d40903bb3 /tests/auto/qplacesearchresult
parentb94be454bbf40304a6f4eaec170313047cdba951 (diff)
downloadqtlocation-d4d61094159afe9599cd982740a74536c587a378.tar.gz
Add QPlaceSearchResult unit test.
Change-Id: If225a4b8834945130c89829190baeb78d8bc5153 Reviewed-on: http://codereview.qt-project.org/5276 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'tests/auto/qplacesearchresult')
-rw-r--r--tests/auto/qplacesearchresult/qplacesearchresult.pro7
-rw-r--r--tests/auto/qplacesearchresult/tst_qplacesearchresult.cpp108
2 files changed, 115 insertions, 0 deletions
diff --git a/tests/auto/qplacesearchresult/qplacesearchresult.pro b/tests/auto/qplacesearchresult/qplacesearchresult.pro
new file mode 100644
index 00000000..935819a6
--- /dev/null
+++ b/tests/auto/qplacesearchresult/qplacesearchresult.pro
@@ -0,0 +1,7 @@
+TEMPLATE = app
+CONFIG += testcase
+TARGET = tst_qplacesearchresult
+
+SOURCES += tst_qplacesearchresult.cpp
+
+QT += location testlib
diff --git a/tests/auto/qplacesearchresult/tst_qplacesearchresult.cpp b/tests/auto/qplacesearchresult/tst_qplacesearchresult.cpp
new file mode 100644
index 00000000..91dd45dd
--- /dev/null
+++ b/tests/auto/qplacesearchresult/tst_qplacesearchresult.cpp
@@ -0,0 +1,108 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia 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.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtCore/QString>
+#include <QtTest/QtTest>
+#include <QtLocation/QPlaceSearchResult>
+
+QT_USE_NAMESPACE
+
+class tst_QPlaceSearchResult : public QObject
+{
+ Q_OBJECT
+
+private Q_SLOTS:
+ void test();
+};
+
+void tst_QPlaceSearchResult::test()
+{
+ QPlaceSearchResult result;
+
+ QCOMPARE(result.type(), QPlaceSearchResult::UnknownSearchResult);
+ QCOMPARE(result.relevance(), 0.0);
+ QCOMPARE(result.distance(), 0.0);
+ QCOMPARE(result.heading(), 0.0);
+ QVERIFY(result.additionalData().isEmpty());
+ QCOMPARE(result.place(), QPlace());
+ QVERIFY(result.didYouMeanSuggestion().isEmpty());
+
+ result.setType(QPlaceSearchResult::Place);
+ result.setRelevance(1.0);
+ result.setDistance(2.0);
+ result.setHeading(3.0);
+ QVariantHash additionalData;
+ additionalData.insert(QLatin1String("key"), 4);
+ result.setAdditionalData(additionalData);
+ result.setPlace(QPlace());
+ result.setDidYouMeanSuggestion(QLatin1String("suggestion"));
+
+ QCOMPARE(result.type(), QPlaceSearchResult::Place);
+ QCOMPARE(result.relevance(), 1.0);
+ QCOMPARE(result.distance(), 2.0);
+ QCOMPARE(result.heading(), 3.0);
+ QCOMPARE(result.additionalData(), additionalData);
+ QCOMPARE(result.place(), QPlace());
+ QCOMPARE(result.didYouMeanSuggestion(), QLatin1String("suggestion"));
+
+ QPlaceSearchResult result2(result);
+
+ QCOMPARE(result2, result);
+
+ result2.setType(QPlaceSearchResult::DidYouMeanSuggestion);
+
+ QCOMPARE(result2.type(), QPlaceSearchResult::DidYouMeanSuggestion);
+
+ QVERIFY(result2 != result);
+
+ QPlaceSearchResult result3;
+
+ QCOMPARE(result3.type(), QPlaceSearchResult::UnknownSearchResult);
+
+ result3 = result;
+
+ QCOMPARE(result3, result);
+ QCOMPARE(result3.type(), QPlaceSearchResult::Place);
+}
+
+QTEST_APPLESS_MAIN(tst_QPlaceSearchResult);
+
+#include "tst_qplacesearchresult.moc"