summaryrefslogtreecommitdiff
path: root/tests/auto/declarative_location_core/tst_plugin_error.qml
blob: a636ed68b79a5c50368026bcbf4f4eb15eec25a1 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick
import QtTest
import QtLocation

Item {

    Plugin { id: testPlugin;
            name: "qmlgeo.test.plugin"
            allowExperimental: true
            parameters: [
                // Parms to guide the test plugin
                PluginParameter { name: "error"; value: "1"},
                PluginParameter { name: "errorString"; value: "This error was expected. No worries !"}
            ]
        }

    Map {
        id: map
    }

    SignalSpy {id: errorSpy; target: map; signalName: "errorChanged"}

    TestCase {
        name: "MappingManagerError"
        function test_error() {
            verify (map.error === Map.NoError);
            map.plugin = testPlugin;
            verify (map.error === Map.NotSupportedError);
            verify (map.errorString == "This error was expected. No worries !");
            compare(errorSpy.count, 1);
        }
    }
}