File: tst_BottomEdgeIndicators.qml

package info (click to toggle)
lomiri-camera-app 4.0.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,092 kB
  • sloc: cpp: 1,671; javascript: 27; makefile: 16; sh: 12
file content (121 lines) | stat: -rw-r--r-- 3,994 bytes parent folder | download | duplicates (3)
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
/*
 * Copyright 2015 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

import QtQuick 2.12
import QtTest 1.0
import "../../"
import "../../.." //Needed for out of source build

TestCase {
    name: "BottomEdgeIndicators"
    when: windowShown
    visible: true

    property list<ListModel> noOptions
    property list<ListModel> noVisibleOptions: [
        ListModel {
            property string settingsProperty: "invisibleOption"
            property string icon
            property string label: ""
            property bool isToggle: true
            property int selectedIndex
            property bool available: true
            property bool visible: true
            property bool showInIndicators: false

            ListElement {
                icon: ""
                label: QT_TR_NOOP("On")
                value: true
            }
            ListElement {
                icon: ""
                label: QT_TR_NOOP("Off")
                value: false
            }
        }
    ]
    property list<ListModel> someVisibleOptions: [
        ListModel {
            property string settingsProperty: "invisibleOption"
            property string icon
            property string label: ""
            property bool isToggle: true
            property int selectedIndex
            property bool available: true
            property bool visible: true
            property bool showInIndicators: false

            ListElement {
                icon: ""
                label: QT_TR_NOOP("On")
                value: true
            }
            ListElement {
                icon: ""
                label: QT_TR_NOOP("Off")
                value: false
            }
        },
        ListModel {
            property string settingsProperty: "visibleOption"
            property string icon
            property string label: ""
            property bool isToggle: true
            property int selectedIndex
            property bool available: true
            property bool visible: true
            property bool showInIndicators: true

            ListElement {
                icon: ""
                label: QT_TR_NOOP("On")
                value: true
            }
            ListElement {
                icon: ""
                label: QT_TR_NOOP("Off")
                value: false
            }
        }
    ]

    function test_options_data() {
        return [
            {tag: "no options", options: noOptions, visibleChildren: 1, hintVisible: true },
            {tag: "no visible options", options: noVisibleOptions, visibleChildren: 1, hintVisible: true },
            {tag: "some visible options", options: someVisibleOptions, visibleChildren: 2, hintVisible: false },
        ]
    }

    function test_options(data) {
        try {
            Qt.createQmlObject("import QtQuick 2.12; Item {}", indicators);
        } catch (e) {
            skip("This test requires Qt 5.4");
        }
        indicators.options = data.options;
        var emptyIndicatorsHint = findChild(indicators, "emptyIndicatorsHint");
        var indicatorsRow = findChild(indicators, "indicatorsRow");
        compare(indicatorsRow.visibleChildren.length, data.visibleChildren, "Incorrect number of visible children in indicatorsRow");
        compare(emptyIndicatorsHint.visible, data.hintVisible, "Incorrect emptyIndicatorsHint's visibility");
    }

    BottomEdgeIndicators {
        id: indicators
    }
}