summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/custom3d/tst_customlabel.qml
blob: b55ce8017b73b46353153229278e020cec1b6cd1 (plain)
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
/******************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Data Visualization module.
**
** $QT_BEGIN_LICENSE:COMM$
**
** 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.
**
** $QT_END_LICENSE$
**
******************************************************************************/

import QtQuick 2.0
import QtDataVisualization 1.2
import QtTest 1.0

Item {
    id: top
    width: 150
    height: 150

    Custom3DLabel {
        id: initial
    }

    Custom3DLabel {
        id: initialized
        backgroundColor: "red"
        backgroundEnabled: false
        borderEnabled: false
        facingCamera: true
        font.family: "Times New Roman"
        text: "test label"
        textColor: "blue"

        position: Qt.vector3d(1.0, 0.5, 1.0)
        positionAbsolute: true
        rotation: Qt.quaternion(1, 0.5, 0, 0)
        scaling: Qt.vector3d(0.2, 0.2, 0.2)
        shadowCasting: true
        visible: false
    }

    Custom3DLabel {
        id: change
    }

    TestCase {
        name: "Custom3DLabel Initial"

        function test_initial() {
            compare(initial.backgroundColor, "#a0a0a4")
            compare(initial.backgroundEnabled, true)
            compare(initial.borderEnabled, true)
            compare(initial.facingCamera, false)
            compare(initial.font.family, "Arial")
            compare(initial.text, "")
            compare(initial.textColor, "#ffffff")

            compare(initial.meshFile, ":/defaultMeshes/plane")
            compare(initial.position, Qt.vector3d(0.0, 0.0, 0.0))
            compare(initial.positionAbsolute, false)
            compare(initial.rotation, Qt.quaternion(0, 0, 0, 0))
            compare(initial.scaling, Qt.vector3d(0.1, 0.1, 0.1))
            compare(initial.scalingAbsolute, true)
            compare(initial.shadowCasting, false)
            compare(initial.textureFile, "")
            compare(initial.visible, true)
        }
    }

    TestCase {
        name: "Custom3DLabel Initialized"

        function test_initialized() {
            compare(initialized.backgroundColor, "#ff0000")
            compare(initialized.backgroundEnabled, false)
            compare(initialized.borderEnabled, false)
            compare(initialized.facingCamera, true)
            compare(initialized.font.family, "Times New Roman")
            compare(initialized.text, "test label")
            compare(initialized.textColor, "#0000ff")

            compare(initialized.position, Qt.vector3d(1.0, 0.5, 1.0))
            compare(initialized.positionAbsolute, true)
            compare(initialized.rotation, Qt.quaternion(1, 0.5, 0, 0))
            compare(initialized.scaling, Qt.vector3d(0.2, 0.2, 0.2))
            compare(initialized.shadowCasting, true)
            compare(initialized.visible, false)
        }
    }

    TestCase {
        name: "Custom3DLabel Change"

        function test_change() {
            change.backgroundColor = "red"
            change.backgroundEnabled = false
            change.borderEnabled = false
            change.facingCamera = true
            change.font.family = "Times New Roman"
            change.text = "test label"
            change.textColor = "blue"

            change.position = Qt.vector3d(1.0, 0.5, 1.0)
            change.positionAbsolute = true
            change.rotation = Qt.quaternion(1, 0.5, 0, 0)
            change.scaling = Qt.vector3d(0.2, 0.2, 0.2)
            change.shadowCasting = true
            change.visible = false

            compare(change.backgroundColor, "#ff0000")
            compare(change.backgroundEnabled, false)
            compare(change.borderEnabled, false)
            compare(change.facingCamera, true)
            compare(change.font.family, "Times New Roman")
            compare(change.text, "test label")
            compare(change.textColor, "#0000ff")

            compare(change.position, Qt.vector3d(1.0, 0.5, 1.0))
            compare(change.positionAbsolute, true)
            compare(change.rotation, Qt.quaternion(1, 0.5, 0, 0))
            compare(change.scaling, Qt.vector3d(0.2, 0.2, 0.2))
            compare(change.shadowCasting, true)
            compare(change.visible, false)
        }
    }
}