summaryrefslogtreecommitdiff
path: root/tests/auto/qgeocodingmanager/tst_qgeocodingmanager.h
blob: 2864ec1f79535f826bee25d2fc06383f6b1ba540 (plain)
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

//TESTED_COMPONENT=src/location

#ifndef TST_QGEOCODINGMANAGER_H
#define TST_QGEOCODINGMANAGER_H

#include <QLocale>
#include <QtTest/QtTest>
#include <QSignalSpy>

#include <qgeoserviceprovider.h>
#include <qgeocodingmanager.h>
#include <qgeocodereply.h>
#include <QtPositioning/QGeoRectangle>
#include <qgeoaddress.h>
#include <qgeocoordinate.h>


QT_USE_NAMESPACE

class tst_QGeoCodingManager: public QObject
{
    Q_OBJECT

private Q_SLOTS:
    void initTestCase();
    void cleanupTestCase();
    void init();
    void cleanup();
    void locale();
    void name();
    void version();
    void search();
    void geocode();
    void reverseGeocode();

private:
    QGeoServiceProvider *qgeoserviceprovider;
    QGeoCodingManager *qgeocodingmanager;
    QSignalSpy *signalerror;
    QSignalSpy *signalfinished;
    void loadGeocodingManager();

};
Q_DECLARE_METATYPE(QGeoCodeReply*);
Q_DECLARE_METATYPE(QGeoCodeReply::Error);

#endif