~mzanetti/unity8/modeswitchwarning

« back to all changes in this revision

Viewing changes to tests/qmltests/Components/tst_ModeSwitchWarningDialog.qml

  • Committer: Michael Zanetti
  • Date: 2015-10-09 09:57:09 UTC
  • Revision ID: michael.zanetti@canonical.com-20151009095709-ys1oyiur58m5locd
added a filter model for apps

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
import QtQuick 2.0
 
18
import QtTest 1.0
 
19
import "../../../qml/Components"
 
20
import Unity.Test 0.1 as UT
 
21
import Ubuntu.Components 1.2
 
22
import Ubuntu.Components.Popups 1.2
 
23
 
 
24
Rectangle {
 
25
    id: root
 
26
    width: units.gu(40)
 
27
    height: units.gu(70)
 
28
    color: "lightgrey"
 
29
 
 
30
    ListModel {
 
31
        id: fakeModel
 
32
        ListElement { icon: "../graphics/applicationIcons/facebook.png"; name: "Facebook" }
 
33
        ListElement { icon: "../graphics/applicationIcons/gmail.png"; name: "Mail" }
 
34
    }
 
35
 
 
36
    function openWarning() {
 
37
        return PopupUtils.open(Qt.resolvedUrl("../../../qml/Components/ModeSwitchWarningDialog.qml"), root, { model: fakeModel })
 
38
    }
 
39
 
 
40
    Button {
 
41
        anchors.centerIn: parent
 
42
        text: "trigger warning"
 
43
        onClicked: {
 
44
            openWarning();
 
45
        }
 
46
    }
 
47
 
 
48
    SignalSpy {
 
49
        id: spy
 
50
        signalName: "forceClose"
 
51
    }
 
52
 
 
53
    UT.UnityTestCase {
 
54
        name: "ModeSwitchWarning"
 
55
        when: windowShown
 
56
 
 
57
        function test_labelChangesOnClick() {
 
58
            var popup = openWarning();
 
59
            var reconnectLabel = findChild(popup, "reconnectLabel");
 
60
            tryCompare(reconnectLabel, "text", reconnectLabel.notClickedText)
 
61
            mouseClick(reconnectLabel, reconnectLabel.width / 2, reconnectLabel.height / 2)
 
62
            tryCompare(reconnectLabel, "text", reconnectLabel.clickedText)
 
63
        }
 
64
 
 
65
        function test_closeButtonEmitsSignal() {
 
66
            var popup = openWarning();
 
67
            spy.target = popup;
 
68
            spy.clear();
 
69
            var closeButton = findChild(popup, "forceCloseButton");
 
70
            mouseClick(closeButton, closeButton.width / 2, closeButton.height / 2)
 
71
            tryCompare(spy, "count", 1)
 
72
 
 
73
        }
 
74
    }
 
75
}