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
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** 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 The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QObject>
#include <QDebug>
#include <QTest>
#include <QtLocation/QGeoServiceProvider>
QT_USE_NAMESPACE
class tst_QGeoServiceProvider : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void tst_availableServiceProvider();
void tst_features_data();
void tst_features();
void tst_misc();
void tst_nokiaRename();
};
void tst_QGeoServiceProvider::initTestCase()
{
#if QT_CONFIG(library)
/*
* Set custom path since CI doesn't install test plugins
*/
#ifdef Q_OS_WIN
QCoreApplication::addLibraryPath(QCoreApplication::applicationDirPath() +
QStringLiteral("/../../../../plugins"));
#else
QCoreApplication::addLibraryPath(QCoreApplication::applicationDirPath()
+ QStringLiteral("/../../../plugins"));
#endif
#endif
}
void tst_QGeoServiceProvider::tst_availableServiceProvider()
{
const QStringList provider = QGeoServiceProvider::availableServiceProviders();
// Currently provided plugins
if (provider.count() != 8)
qWarning() << provider;
QVERIFY(provider.count() >= 8);
// these providers are deployed
QVERIFY(provider.contains(QStringLiteral("mapbox")));
QVERIFY(provider.contains(QStringLiteral("here")));
QVERIFY(provider.contains(QStringLiteral("osm")));
QVERIFY(provider.contains(QStringLiteral("esri")));
// these providers exist for unit tests only
QVERIFY(provider.contains(QStringLiteral("geocode.test.plugin")));
QVERIFY(provider.contains(QStringLiteral("georoute.test.plugin")));
QVERIFY(provider.contains(QStringLiteral("qmlgeo.test.plugin")));
QVERIFY(provider.contains(QStringLiteral("test.places.unsupported")));
}
Q_DECLARE_METATYPE(QGeoServiceProvider::MappingFeatures)
Q_DECLARE_METATYPE(QGeoServiceProvider::GeocodingFeatures)
Q_DECLARE_METATYPE(QGeoServiceProvider::RoutingFeatures)
Q_DECLARE_METATYPE(QGeoServiceProvider::PlacesFeatures)
void tst_QGeoServiceProvider::tst_features_data()
{
QTest::addColumn<QString>("providerName");
QTest::addColumn<QGeoServiceProvider::MappingFeatures>("mappingFeatures");
QTest::addColumn<QGeoServiceProvider::GeocodingFeatures>("codingFeatures");
QTest::addColumn<QGeoServiceProvider::RoutingFeatures>("routingFeatures");
QTest::addColumn<QGeoServiceProvider::PlacesFeatures>("placeFeatures");
QTest::newRow("invalid") << QString("non-existing-provider-name")
<< QGeoServiceProvider::MappingFeatures(QGeoServiceProvider::NoMappingFeatures)
<< QGeoServiceProvider::GeocodingFeatures(QGeoServiceProvider::NoGeocodingFeatures)
<< QGeoServiceProvider::RoutingFeatures(QGeoServiceProvider::NoRoutingFeatures)
<< QGeoServiceProvider::PlacesFeatures(QGeoServiceProvider::NoPlacesFeatures);
QTest::newRow("mapbox") << QString("mapbox")
<< QGeoServiceProvider::MappingFeatures(QGeoServiceProvider::OnlineMappingFeature)
<< QGeoServiceProvider::GeocodingFeatures(QGeoServiceProvider::OnlineGeocodingFeature
| QGeoServiceProvider::ReverseGeocodingFeature
| QGeoServiceProvider::LocalizedGeocodingFeature)
<< QGeoServiceProvider::RoutingFeatures(QGeoServiceProvider::OnlineRoutingFeature)
<< QGeoServiceProvider::PlacesFeatures(QGeoServiceProvider::OnlinePlacesFeature
| QGeoServiceProvider::PlaceRecommendationsFeature
| QGeoServiceProvider::SearchSuggestionsFeature
| QGeoServiceProvider::LocalizedPlacesFeature);
QTest::newRow("here") << QString("here")
<< QGeoServiceProvider::MappingFeatures(QGeoServiceProvider::OnlineMappingFeature)
<< QGeoServiceProvider::GeocodingFeatures(QGeoServiceProvider::OnlineGeocodingFeature
| QGeoServiceProvider::ReverseGeocodingFeature)
<< QGeoServiceProvider::RoutingFeatures(QGeoServiceProvider::OnlineRoutingFeature
| QGeoServiceProvider::RouteUpdatesFeature
| QGeoServiceProvider::AlternativeRoutesFeature
| QGeoServiceProvider::ExcludeAreasRoutingFeature)
<< QGeoServiceProvider::PlacesFeatures(QGeoServiceProvider::OnlinePlacesFeature
| QGeoServiceProvider::PlaceRecommendationsFeature
| QGeoServiceProvider::SearchSuggestionsFeature
| QGeoServiceProvider::LocalizedPlacesFeature);
QTest::newRow("osm") << QString("osm")
<< QGeoServiceProvider::MappingFeatures(QGeoServiceProvider::OnlineMappingFeature)
<< QGeoServiceProvider::GeocodingFeatures(QGeoServiceProvider::OnlineGeocodingFeature
| QGeoServiceProvider::ReverseGeocodingFeature)
<< QGeoServiceProvider::RoutingFeatures(QGeoServiceProvider::OnlineRoutingFeature)
<< QGeoServiceProvider::PlacesFeatures(QGeoServiceProvider::OnlinePlacesFeature);
QTest::newRow("esri") << QString("esri")
<< QGeoServiceProvider::MappingFeatures(QGeoServiceProvider::OnlineMappingFeature)
<< QGeoServiceProvider::GeocodingFeatures(QGeoServiceProvider::OnlineGeocodingFeature
| QGeoServiceProvider::ReverseGeocodingFeature)
<< QGeoServiceProvider::RoutingFeatures(QGeoServiceProvider::OnlineRoutingFeature)
<< QGeoServiceProvider::PlacesFeatures(QGeoServiceProvider::NoPlacesFeatures);
}
void tst_QGeoServiceProvider::tst_features()
{
QFETCH(QString, providerName);
QFETCH(QGeoServiceProvider::MappingFeatures, mappingFeatures);
QFETCH(QGeoServiceProvider::GeocodingFeatures, codingFeatures);
QFETCH(QGeoServiceProvider::RoutingFeatures, routingFeatures);
QFETCH(QGeoServiceProvider::PlacesFeatures, placeFeatures);
QGeoServiceProvider provider(providerName);
QCOMPARE(provider.mappingFeatures(), mappingFeatures);
QCOMPARE(provider.geocodingFeatures(), codingFeatures);
QCOMPARE(provider.routingFeatures(), routingFeatures);
QCOMPARE(provider.placesFeatures(), placeFeatures);
if (provider.mappingFeatures() == QGeoServiceProvider::NoMappingFeatures) {
QVERIFY(provider.mappingManager() == nullptr);
} else {
// some plugins require token/access parameter
// they return 0 but set QGeoServiceProvider::MissingRequiredParameterError
if (provider.mappingManager() != nullptr)
QCOMPARE(provider.error(), QGeoServiceProvider::NoError);
else
QCOMPARE(provider.error(), QGeoServiceProvider::MissingRequiredParameterError);
}
if (provider.geocodingFeatures() == QGeoServiceProvider::NoGeocodingFeatures) {
QVERIFY(provider.geocodingManager() == nullptr);
} else {
if (provider.geocodingManager() != nullptr)
QVERIFY(provider.geocodingManager() != nullptr); //pointless but we want a VERIFY here
else
QCOMPARE(provider.error(), QGeoServiceProvider::MissingRequiredParameterError);
}
if (provider.routingFeatures() == QGeoServiceProvider::NoRoutingFeatures) {
QVERIFY(provider.routingManager() == nullptr);
} else {
if (provider.routingManager() != nullptr)
QCOMPARE(provider.error(), QGeoServiceProvider::NoError);
else
QCOMPARE(provider.error(), QGeoServiceProvider::MissingRequiredParameterError);
}
if (provider.placesFeatures() == QGeoServiceProvider::NoPlacesFeatures) {
QVERIFY(provider.placeManager() == nullptr);
} else {
if (provider.placeManager() != nullptr)
QCOMPARE(provider.error(), QGeoServiceProvider::NoError);
else
QCOMPARE(provider.error(), QGeoServiceProvider::MissingRequiredParameterError);
}
}
void tst_QGeoServiceProvider::tst_misc()
{
const QStringList provider = QGeoServiceProvider::availableServiceProviders();
QVERIFY(provider.contains(QStringLiteral("osm")));
QVERIFY(provider.contains(QStringLiteral("geocode.test.plugin")));
QGeoServiceProvider test_experimental(
QStringLiteral("geocode.test.plugin"), QVariantMap(), true);
QGeoServiceProvider test_noexperimental(
QStringLiteral("geocode.test.plugin"), QVariantMap(), false);
QCOMPARE(test_experimental.error(), QGeoServiceProvider::NoError);
QCOMPARE(test_noexperimental.error(), QGeoServiceProvider::NotSupportedError);
QGeoServiceProvider osm_experimental(
QStringLiteral("osm"), QVariantMap(), true);
QGeoServiceProvider osm_noexperimental(
QStringLiteral("osm"), QVariantMap(), false);
QCOMPARE(osm_experimental.error(), QGeoServiceProvider::NoError);
QCOMPARE(osm_noexperimental.error(), QGeoServiceProvider::NoError);
}
void tst_QGeoServiceProvider::tst_nokiaRename()
{
// The "nokia" plugin was renamed to "here".
// It remains available under the name "nokia" for now
// but is not advertised via QGeoServiceProvider::availableServiceProviders()
QVERIFY(!QGeoServiceProvider::availableServiceProviders().contains("nokia"));
QGeoServiceProvider provider(QStringLiteral("nokia"));
QCOMPARE(provider.error(), QGeoServiceProvider::NoError);
}
QTEST_GUILESS_MAIN(tst_QGeoServiceProvider)
#include "tst_qgeoserviceprovider.moc"
|