~unity-team/unity8/ota9.5

« back to all changes in this revision

Viewing changes to tests/qmltests/utils/Unity/Test/tst_UnityTest.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 (C) 2012, 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
 
 
18
import QtQuick 2.0
 
19
import QtTest 1.0
 
20
import Unity.Test 0.1
 
21
 
 
22
TestCase {
 
23
    Rectangle {
 
24
        id: rect
 
25
    }
 
26
 
 
27
    MockObjectForInstanceOfTestChild {
 
28
        id: testObject
 
29
    }
 
30
 
 
31
    // Singletons need to be bound to a property and not-named-imported
 
32
    // for them to be able to be properly passed back to C++.
 
33
    // See https://bugreports.qt-project.org/browse/QTBUG-30730
 
34
    property var util: Util
 
35
 
 
36
    function test_direct() {
 
37
        compare(Util.isInstanceOf(rect, "QQuickRectangle"), true, "rect should be an instance of QQuickRectangle");
 
38
        compare(Util.isInstanceOf(util, "TestUtil"), true, "Util should be an instance of TestUtil");
 
39
        compare(Util.isInstanceOf(testObject, "MockObjectForInstanceOfTestChild"), true, "testObject should be an instance of MockObjectForInstanceOfTestChild");
 
40
    }
 
41
 
 
42
    function test_inherited() {
 
43
        compare(Util.isInstanceOf(rect, "QQuickItem"), true, "rect should be an instance of QQuickItem");
 
44
        compare(Util.isInstanceOf(rect, "QObject"), true, "rect should be an instance of QObject");
 
45
        compare(Util.isInstanceOf(util, "QObject"), true, "Util should be an instance of QObject");
 
46
        compare(Util.isInstanceOf(testObject, "MockObjectForInstanceOfTest"), true, "testObject should be an instance of MockObjectForInstanceOfTest");
 
47
        compare(Util.isInstanceOf(testObject, "QQuickRectangle"), true, "testObject should be an instance of QQuickRectangle");
 
48
    }
 
49
 
 
50
    function test_negative() {
 
51
        compare(Util.isInstanceOf(rect, "QQuickMouseArea"), false, "rect should not be an instance of MouseArea");
 
52
        compare(Util.isInstanceOf(util, "QQuickItem"), false, "Util should not be an instance of QQuickItem");
 
53
    }
 
54
 
 
55
    function test_undefined() {
 
56
        compare(Util.isInstanceOf(undefined, "QObject"), false, "passing undefined should fail");
 
57
    }
 
58
}