/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ import QtQuick 2.0 import QtTest 1.0 import QtLocation 5.0 import "utils.js" as Utils TestCase { id: testCase name: "PlaceSearchSuggestionModel" PlaceSearchSuggestionModel { id: testModel } Plugin { id: testPlugin name: "qmlgeo.test.plugin" allowExperimental: true } Plugin { id: nonExistantPlugin name: "nonExistantName" } Plugin { id: uninitializedPlugin } function test_setAndGet_data() { var testSearchArea = QtLocation.circle(QtLocation.coordinate(10, 20), 5000); return [ { tag: "plugin", property: "plugin", signal: "pluginChanged", value: testPlugin }, { tag: "searchArea", property: "searchArea", signal: "searchAreaChanged", value: testSearchArea, reset: QtLocation.shape() }, { tag: "offset", property: "offset", signal: "offsetChanged", value: 10, reset: 0 }, { tag: "limit", property: "limit", signal: "limitChanged", value: 10, reset: -1 }, { tag: "searchTerm", property: "searchTerm", signal: "searchTermChanged", value: "Test term", reset: "" }, ]; } function test_setAndGet(data) { Utils.testObjectProperties(testCase, testModel, data); } function test_suggestions() { testModel.plugin = testPlugin; var statusChangedSpy = Qt.createQmlObject('import QtTest 1.0; SignalSpy {}', testCase, "SignalSpy"); statusChangedSpy.target = testModel; statusChangedSpy.signalName = "statusChanged"; var suggestionsChangedSpy = Qt.createQmlObject('import QtTest 1.0; SignalSpy {}', testCase, "SignalSpy"); suggestionsChangedSpy.target = testModel; suggestionsChangedSpy.signalName = "suggestionsChanged"; compare(testModel.status, PlaceSearchSuggestionModel.Null); testModel.searchTerm = "test"; testModel.update(); compare(testModel.status, PlaceSearchSuggestionModel.Loading); compare(statusChangedSpy.count, 1); tryCompare(testModel, "status", PlaceSearchSuggestionModel.Ready); compare(statusChangedSpy.count, 2); var expectedSuggestions = [ "test1", "test2", "test3" ]; compare(suggestionsChangedSpy.count, 1); compare(testModel.suggestions, expectedSuggestions); testModel.reset(); compare(statusChangedSpy.count, 3); compare(testModel.status, PlaceSearchSuggestionModel.Null); compare(suggestionsChangedSpy.count, 2); compare(testModel.suggestions, []); testModel.update(); compare(statusChangedSpy.count, 4); compare(testModel.status, PlaceSearchSuggestionModel.Loading); testModel.cancel(); compare(statusChangedSpy.count, 5); compare(testModel.status, PlaceSearchSuggestionModel.Ready); //chack that an encountering an error will cause the model //to clear its data testModel.plugin = null; testModel.update(); tryCompare(testModel.suggestions, "length", 0); compare(testModel.status, PlaceSearchSuggestionModel.Error); suggestionsChangedSpy.destroy(); statusChangedSpy.destroy(); } function test_error() { var testModel = Qt.createQmlObject('import QtLocation 5.0; PlaceSearchSuggestionModel {}', testCase, "PlaceSearchSuggestionModel"); var statusChangedSpy = Qt.createQmlObject('import QtTest 1.0; SignalSpy {}', testCase, "SignalSpy"); statusChangedSpy.target = testModel; statusChangedSpy.signalName = "statusChanged"; //try searching without a plugin instance testModel.update(); tryCompare(statusChangedSpy, "count", 2); compare(testModel.status, PlaceSearchSuggestionModel.Error); statusChangedSpy.clear(); //Aside: there is some difficulty in checking the transition to the Loading state //since the model transitions from Loading to Error before the next event loop //iteration. //try searching with an uninitialized plugin instance. testModel.plugin = uninitializedPlugin; testModel.update(); tryCompare(statusChangedSpy, "count", 2); compare(testModel.status, PlaceSearchSuggestionModel.Error); statusChangedSpy.clear(); //try searching with plugin a instance //that has been provided a non-existent name testModel.plugin = nonExistantPlugin; testModel.update(); tryCompare(statusChangedSpy, "count", 2); compare(testModel.status, PlaceSearchSuggestionModel.Error); } }