summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaolo Angelelli <paolo.angelelli@qt.io>2018-06-01 23:15:51 +0200
committerPaolo Angelelli <paolo.angelelli@qt.io>2018-06-26 14:28:28 +0000
commit8e6ec8c3075d403065e3bf874fd6680945126298 (patch)
tree998d73165dae586240bb2b4867e27a9765df995a /tests
parent9cdf0e046cbe1c850ce73a4590c50d85d050b4ec (diff)
downloadqtlocation-8e6ec8c3075d403065e3bf874fd6680945126298.tar.gz
Add QDeclarativeGeoRoute::equals
So that deep comparisons can be performed in QML too Change-Id: I484644d4ddf3334c16321e5fc361504e9de105b2 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/declarative_core/tst_routing.qml12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/auto/declarative_core/tst_routing.qml b/tests/auto/declarative_core/tst_routing.qml
index 5198d87e..f5204f26 100644
--- a/tests/auto/declarative_core/tst_routing.qml
+++ b/tests/auto/declarative_core/tst_routing.qml
@@ -28,8 +28,8 @@
import QtQuick 2.0
import QtTest 1.0
-import QtLocation 5.11
-import QtPositioning 5.2
+import QtLocation 5.12
+import QtPositioning 5.12
Item {
id: root
@@ -608,6 +608,8 @@ Item {
SignalSpy {id: testErrorSlackSpy; target: routeModelSlack; signalName: "errorChanged"}
SignalSpy {id: testPluginSlackSpy; target: routeModelSlack; signalName: "pluginChanged"}
+ RouteModel {id: routeModelEquals; plugin: testPlugin_immediate; query: routeQuery }
+
TestCase {
name: "Routing"
function clear_immediate_model() {
@@ -722,6 +724,7 @@ Item {
compare (routeQuery.waypoints.length, 5)
routeQuery.numberAlternativeRoutes = 1 // how many routes to get back, > 70 indicates error
routeModel.update()
+ routeModelEquals.update()
tryCompare (testRoutesSpy, "count", 1) // 5 sec
tryCompare (testCountSpy, "count", 1)
compare (routeModel.count, 1)
@@ -729,6 +732,11 @@ Item {
compare (routeQuery.waypoints.length, 5)
compare (routeModel.get(0).path.length, 5)
compare (routeModel.get(0).path[0].latitude, routeQuery.waypoints[0].latitude)
+ // test Route.equals
+ var route1 = routeModel.get(0)
+ var route2 = routeModelEquals.get(0)
+ verify(route1 !== route2)
+ verify(route1.equals(route2))
// check reset() functionality
routeModel.reset()
tryCompare (testRoutesSpy, "count", 2) // 5 sec