~gerboland/unity/8-refactor-wm-and-test

« back to all changes in this revision

Viewing changes to tests/qmltests/Panel/tst_SearchIndicator.qml

  • Committer: Michał Sawicz
  • Date: 2013-06-05 22:03:08 UTC
  • Revision ID: michal.sawicz@canonical.com-20130605220308-yny8fv3futtr04fg
Inital unity8 commit.

Previous history can be found at https://code.launchpad.net/~unity-team/unity/phablet

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 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 ".."
 
20
import "../../../Panel"
 
21
import Ubuntu.Components 0.1
 
22
import Unity.Test 0.1 as UT
 
23
 
 
24
Item {
 
25
    width: units.gu(9)
 
26
    height: units.gu(3)
 
27
 
 
28
    SignalSpy {
 
29
        id: clickedSpy
 
30
        target: searchIndicator
 
31
        signalName: "clicked"
 
32
    }
 
33
 
 
34
    SearchIndicator {
 
35
        id: searchIndicator
 
36
        anchors.fill: parent
 
37
    }
 
38
 
 
39
    UT.UnityTestCase {
 
40
        name: "SearchIndicator"
 
41
        when: windowShown
 
42
 
 
43
        function test_clickedSignal() {
 
44
            clickedSpy.clear()
 
45
            mouseClick(searchIndicator,
 
46
                       searchIndicator.width / 2, searchIndicator.height / 2);
 
47
            compare(clickedSpy.count, 1)
 
48
        }
 
49
 
 
50
        function test_hideUp() {
 
51
            var container = findChild(searchIndicator, "container")
 
52
            searchIndicator.state = "hiddenUp"
 
53
            tryCompare(container, "opacity", 0)
 
54
            tryCompare(container, "y", -container.height)
 
55
        }
 
56
 
 
57
        function test_show() {
 
58
            var container = findChild(searchIndicator, "container")
 
59
            searchIndicator.state = "visible"
 
60
            tryCompare(container, "opacity", 1)
 
61
            tryCompare(container, "y", 0)
 
62
        }
 
63
    }
 
64
}