/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** 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 http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/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 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** As a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ import QtQuick 2.0 import QtTest 1.0 import QtLocation 5.3 import "utils.js" as Utils TestCase { id: testCase name: "ReviewModel" Plugin { id: testPlugin name: "qmlgeo.test.plugin" allowExperimental: true parameters: [ PluginParameter { name: "initializePlaceData" value: true } ] } ReviewModel { id: testModel } Place { id: testPlace name: "Test Place" } Place { id: parkViewHotel placeId: "4dcc74ce-fdeb-443e-827c-367438017cf1" plugin: testPlugin } Place { id: seaViewHotel placeId: "8f72057a-54b2-4e95-a7bb-97b4d2b5721e" plugin: testPlugin } function test_setAndGet_data() { return [ { tag: "place", property: "place", signal: "placeChanged", value: testPlace }, { tag: "batchSize", property: "batchSize", signal: "batchSizeChanged", value: 10, reset: 1 }, ]; } function test_setAndGet(data) { Utils.testObjectProperties(testCase, testModel, data); } function test_consecutive_fetch_data() { return [ { tag: "batchSize 1", batchSize: 1 }, { tag: "batchSize 2", batchSize: 2 }, { tag: "batchSize 5", batchSize: 5 }, { tag: "batchSize 10", batchSize: 10 }, ]; } function test_consecutive_fetch(data) { //Note: in javascript the months go from 0(Jan) to 11(Dec) var expectedReviews = [ { "title": "Park View Review 1", "text": "Park View Review 1 Text", "dateTime": new Date(2004, 8, 22, 13, 1), "language": "en", "rating": 3.5, "reviewId": "0001" }, { "title": "Park View Review 2", "text": "Park View Review 2 Text", "dateTime": new Date(2005, 8, 14, 4, 17), "language": "en", "rating": 1, "reviewId": "0002" }, { "title": "Park View Review 3", "text": "Park View Review 3 Text", "dateTime": new Date(2005, 9, 14, 4, 12), "language": "en", "rating": 5, "reviewId": "0003" }, { "title": "", "text": "", "dateTime": new Date(""), "language": "", "rating": 0, "reviewId": "" }, { "title": "Park View Review 5", "text": "Park View Review 5 Text", "dateTime": new Date(2005, 10, 20, 14, 53), "language": "en", "rating": 2.3, "reviewId": "0005" } ] var model = createModel(); Utils.testConsecutiveFetch(testCase, model, parkViewHotel, expectedReviews, data); model.destroy(); } function test_reset() { var model = createModel(); Utils.testReset(testCase, model, parkViewHotel); model.destroy(); } function test_fetch_data() { return [ { tag: "fetch all reviews in a single batch", model: createModel(), batchSize: 10, place: parkViewHotel, expectedTotalCount: 5, expectedCount: 5 }, { tag: "fetch from a place with no reviews", model: createModel(), batchSize: 1, place: seaViewHotel, expectedTotalCount: 0, expectedCount: 0 }, { tag: "fetch with batch size one less than the total", model: createModel(), batchSize: 4, place: parkViewHotel, expectedTotalCount: 5, expectedCount: 4 }, { tag: "fetch with batch size equal to the total", model: createModel(), batchSize: 5, place: parkViewHotel, expectedTotalCount: 5, expectedCount: 5 }, { tag: "fetch with batch size larger than the total", model: createModel(), batchSize: 6, place: parkViewHotel, expectedTotalCount: 5, expectedCount: 5 } ] } function test_fetch(data) { Utils.testFetch(testCase, data); data.model.destroy(); } function createModel() { return Qt.createQmlObject('import QtLocation 5.3; ReviewModel {}', testCase, "reviewModel"); } }