/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Data Visualization module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL$ ** 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 or (at your option) any later version ** approved by the KDE Free Qt Foundation. The licenses are as published by ** the Free Software Foundation and appearing in the file LICENSE.GPL3 ** 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.0 import QtDataVisualization 1.2 import QtTest 1.0 Item { id: top height: 150 width: 150 ItemModelScatterDataProxy { id: initial } ItemModelScatterDataProxy { id: initialized itemModel: ListModel { objectName: "model1" } rotationRole: "rot" rotationRolePattern: /-/ rotationRoleReplace: "\\1" xPosRole: "x" xPosRolePattern: /^.*-(\d\d)$/ xPosRoleReplace: "\\1" yPosRole: "y" yPosRolePattern: /^(\d\d\d\d).*$/ yPosRoleReplace: "\\1" zPosRole: "z" zPosRolePattern: /-/ zPosRoleReplace: "\\1" } ItemModelScatterDataProxy { id: change } TestCase { name: "ItemModelScatterDataProxy Initial" function test_initial() { verify(!initial.itemModel) compare(initial.rotationRole, "") verify(initial.rotationRolePattern) compare(initial.rotationRoleReplace, "") compare(initial.xPosRole, "") verify(initial.xPosRolePattern) compare(initial.xPosRoleReplace, "") compare(initial.yPosRole, "") verify(initial.yPosRolePattern) compare(initial.yPosRoleReplace, "") compare(initial.zPosRole, "") verify(initial.zPosRolePattern) compare(initial.zPosRoleReplace, "") compare(initial.itemCount, 0) verify(!initial.series) compare(initial.type, AbstractDataProxy.DataTypeScatter) } } TestCase { name: "ItemModelScatterDataProxy Initialized" function test_initialized() { compare(initialized.itemModel.objectName, "model1") compare(initialized.rotationRole, "rot") compare(initialized.rotationRolePattern, /-/) compare(initialized.rotationRoleReplace, "\\1") compare(initialized.xPosRole, "x") compare(initialized.xPosRolePattern, /^.*-(\d\d)$/) compare(initialized.xPosRoleReplace, "\\1") compare(initialized.yPosRole, "y") compare(initialized.yPosRolePattern, /^(\d\d\d\d).*$/) compare(initialized.yPosRoleReplace, "\\1") compare(initialized.zPosRole, "z") compare(initialized.zPosRolePattern, /-/) compare(initialized.zPosRoleReplace, "\\1") } } TestCase { name: "ItemModelScatterDataProxy Change" ListModel { id: model1; objectName: "model1" } function test_change() { change.itemModel = model1 change.rotationRole = "rot" change.rotationRolePattern = /-/ change.rotationRoleReplace = "\\1" change.xPosRole = "x" change.xPosRolePattern = /^.*-(\d\d)$/ change.xPosRoleReplace = "\\1" change.yPosRole = "y" change.yPosRolePattern = /^(\d\d\d\d).*$/ change.yPosRoleReplace = "\\1" change.zPosRole = "z" change.zPosRolePattern = /-/ change.zPosRoleReplace = "\\1" compare(change.itemModel.objectName, "model1") compare(change.rotationRole, "rot") compare(change.rotationRolePattern, /-/) compare(change.rotationRoleReplace, "\\1") compare(change.xPosRole, "x") compare(change.xPosRolePattern, /^.*-(\d\d)$/) compare(change.xPosRoleReplace, "\\1") compare(change.yPosRole, "y") compare(change.yPosRolePattern, /^(\d\d\d\d).*$/) compare(change.yPosRoleReplace, "\\1") compare(change.zPosRole, "z") compare(change.zPosRolePattern, /-/) compare(change.zPosRoleReplace, "\\1") } } }