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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
|
/****************************************************************************
**
** 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$
**
****************************************************************************/
import QtQuick 2.5
import QtTest 1.0
import QtLocation 5.5
import QtPositioning 5.5
import QtLocation.Test 5.5
Item {
// General-purpose elements for the test:
id: page
width: 100
height: 100
Plugin { id: testPlugin; name: "qmlgeo.test.plugin"; allowExperimental: true }
property variant coordinate: QtPositioning.coordinate(10, 11)
// From QtLocationTest plugin
PinchGenerator {
id: pinchGenerator
anchors.fill: parent
target: page
enabled: false
}
MouseArea {
id: mouseAreaBottom
anchors.fill: parent
visible: false
}
Map {
id: map
plugin: testPlugin
center: coordinate;
zoomLevel: 9;
anchors.fill: page
x:0; y:0
property variant lastPinchEvent: null
property point startPinchPoint1: Qt.point(0,0)
property point startPinchPoint2: Qt.point(0,0)
property point endPinchPoint1: Qt.point(0,0)
property point endPinchPoint2: Qt.point(0,0)
property bool rejectPinch: false
gesture.onPinchStarted: {
map.lastPinchEvent = pinch;
map.startPinchPoint1= pinch.point1;
map.startPinchPoint2= pinch.point2;
if (rejectPinch)
pinch.accepted = false;
}
gesture.onPinchUpdated: map.lastPinchEvent = pinch;
gesture.onPinchFinished: {
map.lastPinchEvent = pinch;
map.endPinchPoint1 = pinch.point1;
map.endPinchPoint2 = pinch.point2;
}
MouseArea {
id: mouseAreaTop
anchors.fill: parent
visible: false
}
}
SignalSpy {id: centerSpy; target: map; signalName: 'centerChanged'}
SignalSpy {id: pinchStartedSpy; target: map.gesture; signalName: 'pinchStarted'}
SignalSpy {id: pinchUpdatedSpy; target: map.gesture; signalName: 'pinchUpdated'}
SignalSpy {id: pinchFinishedSpy; target: map.gesture; signalName: 'pinchFinished'}
SignalSpy {id: pinchMaximumZoomLevelChangeSpy; target: map.gesture; signalName: 'maximumZoomLevelChangeChanged'}
SignalSpy {id: gestureEnabledSpy; target: map.gesture; signalName: 'enabledChanged'}
SignalSpy {id: pinchActiveSpy; target: map.gesture; signalName: 'pinchActiveChanged'}
SignalSpy {id: pinchActiveGesturesSpy; target: map.gesture; signalName: 'activeGesturesChanged'}
SignalSpy {id: mapZoomLevelSpy; target: map; signalName: 'zoomLevelChanged'}
SignalSpy {id: mouseAreaTopSpy; target: mouseAreaTop; signalName: 'onPressed'}
SignalSpy {id: mouseAreaBottomSpy; target: mouseAreaBottom; signalName: 'onPressed'}
TestCase {
when: windowShown && map.mapReady
name: "MapPinch"
function init()
{
map.gesture.activeGestures = MapGestureArea.ZoomGesture
map.gesture.enabled = true
map.rejectPinch = false
map.center = coordinate
map.minimumZoomLevel = 0
map.maximumZoomLevel = 20
mouseRelease(mouseAreaTop,0,0) //Fixme: mouse area state gets broken across the tests
mouseAreaBottom.visible = false
mouseAreaTop.visible = false
pinchGenerator.clear()
centerSpy.clear()
pinchStartedSpy.clear()
pinchUpdatedSpy.clear()
pinchFinishedSpy.clear()
pinchMaximumZoomLevelChangeSpy.clear()
gestureEnabledSpy.clear()
pinchActiveSpy.clear()
pinchActiveGesturesSpy.clear()
mapZoomLevelSpy.clear()
mouseAreaTopSpy.clear()
mouseAreaBottomSpy.clear()
}
//see QDeclarativeGeoMapGestureArea::updatePinch()
function calculateZoom(startPinchPoint1,startPinchPoint2,endPinchPoint1,endPinchPoint2,
width,height, maximumZoomLevelChange, startZoomLevel)
{
var startDistance = Math.sqrt(Math.pow(startPinchPoint2.x - startPinchPoint1.x,2) +
+ Math.pow(startPinchPoint2.y - startPinchPoint1.y,2))
var endDistance = Math.sqrt(Math.pow(endPinchPoint2.x - endPinchPoint1.x,2) +
+ Math.pow(endPinchPoint2.y - endPinchPoint1.y,2))
return 2 * (endDistance - startDistance) * maximumZoomLevelChange /
(width + height) + startZoomLevel;
}
function initTestCase()
{
//test default properties
compare(map.gesture.enabled, true)
map.gesture.enabled = false
compare(gestureEnabledSpy.count, 1)
compare(map.gesture.enabled, false)
map.gesture.enabled = false
compare(gestureEnabledSpy.count, 1)
compare(map.gesture.enabled, false)
map.gesture.enabled = true
compare(gestureEnabledSpy.count, 2)
compare(map.gesture.enabled, true)
compare(map.gesture.isPinchActive, false)
verify(map.gesture.activeGestures & MapGestureArea.ZoomGesture)
map.gesture.activeGestures = MapGestureArea.NoGesture
compare(map.gesture.activeGestures, MapGestureArea.NoGesture)
compare(pinchActiveGesturesSpy.count, 1)
map.gesture.activeGestures = MapGestureArea.NoGesture
compare(map.gesture.activeGestures, MapGestureArea.NoGesture)
compare(pinchActiveGesturesSpy.count, 1)
map.gesture.activeGestures = MapGestureArea.ZoomGesture | MapGestureArea.PanGesture
compare(map.gesture.activeGestures, MapGestureArea.ZoomGesture | MapGestureArea.PanGesture)
compare(pinchActiveGesturesSpy.count, 2)
map.gesture.activeGestures = MapGestureArea.PanGesture
compare(map.gesture.activeGestures, MapGestureArea.PanGesture)
compare(pinchActiveGesturesSpy.count, 3)
map.gesture.activeGestures = MapGestureArea.ZoomGesture
compare(map.gesture.activeGestures, MapGestureArea.ZoomGesture)
compare(pinchActiveGesturesSpy.count, 4)
compare(map.gesture.maximumZoomLevelChange, 4)
map.gesture.maximumZoomLevelChange = 8
compare(pinchMaximumZoomLevelChangeSpy.count, 1)
compare (map.gesture.maximumZoomLevelChange, 8)
map.gesture.maximumZoomLevelChange = 8
compare(pinchMaximumZoomLevelChangeSpy.count, 1)
compare (map.gesture.maximumZoomLevelChange, 8)
map.gesture.maximumZoomLevelChange = 11 // too big
map.gesture.maximumZoomLevelChange = 0.01 // too small
map.gesture.maximumZoomLevelChange = -1 // too small
compare(pinchMaximumZoomLevelChangeSpy.count, 1)
compare (map.gesture.maximumZoomLevelChange, 8)
map.gesture.maximumZoomLevelChange = 2
compare(pinchMaximumZoomLevelChangeSpy.count, 2)
compare (map.gesture.maximumZoomLevelChange, 2)
}
function zoom_in()
{
var startZoomLevel = 9
map.zoomLevel = startZoomLevel
mapZoomLevelSpy.clear()
map.gesture.maximumZoomLevelChange = 2
compare(map.gesture.isPinchActive, false)
pinchGenerator.pinch(
Qt.point(0,50), // point1From
Qt.point(50,50), // point1To
Qt.point(100,50), // point2From
Qt.point(50,50), // point2To
40, // interval between touch events (swipe1), default 20ms
40, // interval between touch events (swipe2), default 20ms
10, // number of touchevents in point1from -> point1to, default 10
10); // number of touchevents in point2from -> point2to, default 10
tryCompare(pinchStartedSpy, "count", 1);
// check the pinch event data for pinchStarted
compare(map.lastPinchEvent.center.x, 50)
compare(map.lastPinchEvent.center.y, 50)
compare(map.lastPinchEvent.angle, 0)
verify((map.lastPinchEvent.point1.x > pinchGenerator.startDragDistance())
&& (map.lastPinchEvent.point1.x < 25))
compare(map.lastPinchEvent.point1.y, 50)
verify((map.lastPinchEvent.point2.x > 75)
&& (map.lastPinchEvent.point2.x < 100 - pinchGenerator.startDragDistance()))
compare(map.lastPinchEvent.point2.y, 50)
compare(map.lastPinchEvent.accepted, true)
compare(map.lastPinchEvent.pointCount, 2)
tryCompare(pinchActiveSpy, "count", 2) // check that pinch is active
compare(map.gesture.isPinchActive, true)
wait(200) // five points, each 40ms
// check the pinch event data for pinchUpdated
compare(map.lastPinchEvent.center.x, 50)
compare(map.lastPinchEvent.center.y, 50)
compare(map.lastPinchEvent.angle, 0)
verify((map.lastPinchEvent.point1.x) > 25 && (map.lastPinchEvent.point1.x <= 50))
compare(map.lastPinchEvent.point1.y, 50)
verify((map.lastPinchEvent.point2.x) >= 50 && (map.lastPinchEvent.point2.x < 85))
compare(map.lastPinchEvent.point2.y, 50)
compare(map.lastPinchEvent.accepted, true)
compare(map.lastPinchEvent.pointCount, 2)
tryCompare(pinchFinishedSpy, "count", 1);
compare(map.gesture.isPinchActive, false)
// check the pinch event data for pinchFinished
compare(map.lastPinchEvent.center.x, 50)
compare(map.lastPinchEvent.center.y, 50)
compare(map.lastPinchEvent.angle, 0)
verify((map.lastPinchEvent.point1.x) > 35 && (map.lastPinchEvent.point1.x <= 50))
compare(map.lastPinchEvent.point1.y, 50)
verify((map.lastPinchEvent.point2.x) >= 50 && (map.lastPinchEvent.point2.x < 65))
compare(map.lastPinchEvent.point2.y, 50)
compare(map.lastPinchEvent.accepted, true)
compare(map.lastPinchEvent.pointCount, 0)
verify(pinchUpdatedSpy.count >= 5); // verify 'sane' number of updates received
compare(pinchActiveSpy.count,3)
compare(map.gesture.isPinchActive, false)
compare(mapZoomLevelSpy.count, pinchUpdatedSpy.count)
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel)
}
function test_zoom_in()
{
zoom_in()
}
function test_zoom_in_with_top_filtering()
{
mouseAreaTop.visible = true
zoom_in()
tryCompare(mouseAreaTopSpy, "count", 1)
}
function test_zoom_in_with_below_filtering()
{
mouseAreaBottom.visible=true
zoom_in()
tryCompare(mouseAreaBottomSpy, "count",0)
}
function zoom_out()
{
var startZoomLevel = 7.8
map.zoomLevel = startZoomLevel
map.gesture.maximumZoomLevelChange = 2
compare (map.gesture.maximumZoomLevelChange, 2)
mapZoomLevelSpy.clear()
pinchGenerator.pinch(Qt.point(45,50), Qt.point(0,50),
Qt.point(55,50), Qt.point(100,50),
40, 40, 10, 10);
tryCompare(pinchStartedSpy, "count", 1);
tryCompare(pinchFinishedSpy, "count", 1);
compare(map.gesture.isPinchActive, false)
verify(pinchUpdatedSpy.count >= 5); // verify 'sane' number of updates received
compare(mapZoomLevelSpy.count, pinchUpdatedSpy.count)
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel)
}
function test_zoom_out()
{
zoom_out()
}
function test_zoom_out_with_top_filtering()
{
mouseAreaTop.visible=true
zoom_out()
tryCompare(mouseAreaTopSpy, "count", 1)
}
function test_zoom_out_with_below_filtering()
{
mouseAreaBottom.visible=true
zoom_out()
tryCompare(mouseAreaBottomSpy, "count",0)
}
function test_zoom_in_and_back_out()
{
// direction change during same pinch
var startZoomLevel = 7.8
map.gesture.maximumZoomLevelChange = 2
map.zoomLevel = startZoomLevel
pinchGenerator.pinch(Qt.point(0,50), Qt.point(100,50),
Qt.point(100,50),Qt.point(0,50),
40, 40, 10, 10);
tryCompare(pinchStartedSpy, "count", 1);
tryCompare(pinchFinishedSpy, "count", 1);
verify(pinchUpdatedSpy.count >= 5); // verify 'sane' number of updates received
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel) // should remain the same
}
function test_zoom_in_with_different_change_level()
{
var startZoomLevel = 8
map.zoomLevel = startZoomLevel
map.gesture.maximumZoomLevelChange = 4
compare (map.gesture.maximumZoomLevelChange, 4)
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),
Qt.point(100,50),Qt.point(50,50),
40, 40, 10, 10);
tryCompare(pinchFinishedSpy, "count", 1);
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel)
}
function test_zoom_out_with_different_change_level()
{
var startZoomLevel = 8
map.gesture.maximumZoomLevelChange = 1
map.zoomLevel = startZoomLevel
compare (map.gesture.maximumZoomLevelChange, 1)
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),
Qt.point(50,50), Qt.point(100,50),
40, 40, 10, 10);
tryCompare(pinchFinishedSpy, "count", 1);
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel)
}
function test_zoom_in_below_minimum_zoom_level()
{
map.zoomLevel = 8
map.gesture.maximumZoomLevelChange = 4
map.minimumZoomLevel = 7
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),Qt.point(100,50),Qt.point(50,50));
wait(250);
tryCompare(pinchFinishedSpy, "count", 1);
compare(map.zoomLevel, 7)
}
function test_zoom_out_above_maximum_zoom_level()
{
map.gesture.maximumZoomLevelChange = 4
map.maximumZoomLevel = 8
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),Qt.point(50,50), Qt.point(100,50));
tryCompare(pinchFinishedSpy, "count", 1);
compare(map.zoomLevel, 8)
}
function test_pinch_when_max_and_min_are_same()
{
map.maximumZoomLevel = 8
map.minimumZoomLevel = 8
compare(map.maximumZoomLevel, 8)
compare(map.minimumZoomLevel, 8)
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),Qt.point(100,50),Qt.point(50,50));
tryCompare(pinchFinishedSpy, "count", 1);
compare(map.zoomLevel, 8)
map.minimumZoomLevel = 1
map.maximumZoomLevel = 20
}
function test_pinch_when_max_min_is_not_where_map_zoomLevel_currently_is()
{
map.gesture.maximumZoomLevelChange = 4
map.minimumZoomLevel = 4
map.maximumZoomLevel = 6
// first when above the zoom range
map.zoomLevel = 5
pinchGenerator.pinch(Qt.point(50,50),Qt.point(0,50),Qt.point(50,50),Qt.point(100,50)); // zoom out
tryCompare(pinchFinishedSpy, "count", 1);
compare(map.zoomLevel, 6)
map.zoomLevel = 5
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),Qt.point(100,50),Qt.point(50,50)); // zoom in
tryCompare(pinchFinishedSpy, "count", 2);
compare(map.zoomLevel, 4)
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),Qt.point(100,50),Qt.point(50,50)); // zoom in
tryCompare(pinchFinishedSpy, "count", 3);
compare(map.zoomLevel, 4)
map.minimumZoomLevel = 1
map.maximumZoomLevel = 20
}
function test_pinch_while_pinch_area_is_disabled()
{
map.zoomLevel = 7.5
map.gesture.enabled = false
map.gesture.maximumZoomLevelChange = 2
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),
Qt.point(50,50), Qt.point(100,50),
40, 40, 10, 10);
wait(200);
compare(pinchActiveSpy.count, 0)
compare(map.gesture.isPinchActive, false)
compare(pinchStartedSpy.count, 0)
compare(pinchUpdatedSpy.count, 0);
compare(pinchFinishedSpy.count, 0);
compare(map.zoomLevel, 7.5)
pinchGenerator.stop()
}
function test_pinch_disabling_during_pinching()
{
var startZoomLevel = 7.5
map.zoomLevel = startZoomLevel
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),
Qt.point(50,50), Qt.point(100,50),
40, 40, 10, 10);
tryCompare(pinchStartedSpy, "count", 1);
// check that pinch is active. then disable the pinch. pinch area should still process
// as long as it is active
compare(pinchActiveSpy.count,2)
compare(map.gesture.isPinchActive, true)
map.gesture.enabled = false
tryCompare(pinchFinishedSpy, "count", 1)
var pinchupdates = pinchUpdatedSpy.count
verify(pinchupdates > 0)
compare(pinchActiveSpy.count,3)
compare(map.gesture.isPinchActive, false)
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel)
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),
Qt.point(50,50), Qt.point(100,50),
40, 40, 10, 10);
compare(map.zoomLevel, endZoomLevel)
}
function test_check_no_active_gestures()
{
map.zoomLevel = 8.5
map.gesture.activeGestures = MapGestureArea.NoGesture
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),
Qt.point(50,50), Qt.point(100,50),
40, 40, 10, 10);
tryCompare(pinchStartedSpy, "count", 0);
wait(300);
compare(pinchUpdatedSpy.count, 0);
compare(pinchStartedSpy.count, 0);
compare(map.zoomLevel, 8.5)
pinchGenerator.stop()
}
function test_changing_zoom_level_during_active_pinch_zoom()
{
var startZoomLevel = 8.5
map.zoomLevel = startZoomLevel
map.gesture.maximumZoomLevelChange = 2
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),
Qt.point(50,50), Qt.point(100,50),
40, 40, 10, 10);
tryCompare(pinchStartedSpy, "count", 1);
tryCompare(pinchActiveSpy, "count", 2)
compare(map.gesture.isPinchActive, true)
map.zoomLevel = 3 // will get overridden by pinch
tryCompare(pinchFinishedSpy, "count", 1);
verify(pinchUpdatedSpy.count >= 5); // verify 'sane' number of updates received
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel)
}
function test_zoom_below_and_above_plugin_support()
{
map.gesture.maximumZoomLevelChange = 4
map.zoomLevel = map.minimumZoomLevel + 0.5
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),
Qt.point(100,50),Qt.point(50,50),
40, 40, 10, 10);
tryCompare(pinchFinishedSpy, "count", 1);
compare(map.zoomLevel, map.minimumZoomLevel)
map.zoomLevel = map.maximumZoomLevel - 0.5
pinchGenerator.pinch(Qt.point(50,50), Qt.point(0,50),Qt.point(50,50), Qt.point(100,50));
tryCompare(pinchFinishedSpy, "count", 2);
compare(map.zoomLevel, map.maximumZoomLevel)
}
function test_check_pinch_accepted()
{
map.zoomLevel = 10
map.rejectPinch = true
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),
Qt.point(100,50),Qt.point(50,50),
40, 40, 10, 10);
wait(300)
compare(pinchUpdatedSpy.count, 0)
compare(pinchFinishedSpy.count, 0)
compare(map.gesture.isPinchActive, false)
compare(map.zoomLevel, 10)
var startZoomLevel = 10
map.rejectPinch = false
wait(500)
pinchGenerator.pinch(Qt.point(0,50),Qt.point(50,50),Qt.point(100,50),Qt.point(50,50),40, 40, 10, 10);
tryCompare(pinchFinishedSpy, "count", 1)
var endZoomLevel = calculateZoom( map.startPinchPoint1, map.startPinchPoint2,
map.endPinchPoint1, map.endPinchPoint2,
map.width,map.height,
map.gesture.maximumZoomLevelChange,startZoomLevel)
compare(map.zoomLevel, endZoomLevel)
compare(map.lastPinchEvent.accepted, true)
}
function test_moving_center()
{
pinchGenerator.pinch(Qt.point(0, 50), Qt.point(50,100), Qt.point(50,0), Qt.point(100, 50))
tryCompare(pinchStartedSpy, "count", 1)
compare(map.lastPinchEvent.center.x, (map.lastPinchEvent.point1.x + map.lastPinchEvent.point2.x) /2)
compare(map.lastPinchEvent.center.x, (map.lastPinchEvent.point1.y + map.lastPinchEvent.point2.y) /2)
tryCompare(pinchFinishedSpy, "count", 1)
compare(map.lastPinchEvent.center.x, (map.lastPinchEvent.point1.x + map.lastPinchEvent.point2.x) /2)
compare(map.lastPinchEvent.center.x, (map.lastPinchEvent.point1.y + map.lastPinchEvent.point2.y) /2)
// sanity check that we are not comparing wrong (points) with wrong (center) and calling it a success
verify((map.lastPinchEvent.center.x > 50) && (map.lastPinchEvent.center.x < 100))
verify((map.lastPinchEvent.center.y > 50) && (map.lastPinchEvent.center.y < 100))
}
function test_angle_between_points()
{
// todo calculate the angle from points for comparison
pinchGenerator.pinch(Qt.point(0,0), Qt.point(0,100), Qt.point(100,100), Qt.point(100,0))
tryCompare(pinchStartedSpy, "count", 1)
verify(map.lastPinchEvent.angle >= -45 && map.lastPinchEvent.angle < -20)
tryCompare(pinchFinishedSpy, "count", 1)
verify(map.lastPinchEvent.angle >= 20 && map.lastPinchEvent.angle <= 45)
}
}
}
|