~nick-dedekind/unity8/indicators.hint-interval

« back to all changes in this revision

Viewing changes to tests/qmltests/Dash/Previews/tst_PreviewVideoPlayback.qml

  • Committer: Nick Dedekind
  • Date: 2014-03-07 15:54:57 UTC
  • mfrom: (638.1.118 unity8)
  • Revision ID: nicholas.dedekind@gmail.com-20140307155457-f0s1zu5ll2czt3rq
merged with trunk

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/Dash/Previews"
 
20
import Unity.Test 0.1 as UT
 
21
 
 
22
Rectangle {
 
23
    id: root
 
24
    width: units.gu(40)
 
25
    height: units.gu(80)
 
26
    color: "lightgrey"
 
27
 
 
28
    property var widgetData0: {
 
29
        "source": "",
 
30
        "screenshot": ""
 
31
    }
 
32
 
 
33
    property var widgetData1: {
 
34
        "source": "",
 
35
        "screenshot": "../../../tests/qmltests/Components/tst_LazyImage/square.png"
 
36
    }
 
37
 
 
38
    property var widgetData2: {
 
39
        "source": "file:///path/to/local/file",
 
40
        "screenshot": ""
 
41
    }
 
42
 
 
43
    PreviewVideoPlayback {
 
44
        id: videoPlayback
 
45
        width: parent.width
 
46
        widgetData: widgetData1
 
47
    }
 
48
 
 
49
    UT.UnityTestCase {
 
50
        name: "PreviewVideoPlaybackTest"
 
51
        when: windowShown
 
52
 
 
53
        function test_loadScreenshot() {
 
54
            var screenshot = findChild(videoPlayback, "screenshot");
 
55
 
 
56
            videoPlayback.widgetData = widgetData0;
 
57
            tryCompare(screenshot.visible, false);
 
58
 
 
59
            videoPlayback.widgetData = widgetData1;
 
60
            tryCompare(screenshot.visible, true);
 
61
 
 
62
            videoPlayback.widgetData = widgetData2;
 
63
            var screenshotSource = screenshot.source
 
64
            verify(screenshotSource.toString().indexOf("image://thumbnailer/") === 0)
 
65
        }
 
66
    }
 
67
}