~chris.gagnon/+junk/qtpim-coverage

« back to all changes in this revision

Viewing changes to tests/auto/contacts/qmlcontacts/testcases/tst_contactrelationship.qml

  • Committer: chris.gagnon
  • Date: 2013-12-10 23:09:37 UTC
  • Revision ID: chris.gagnon@canonical.com-20131210230937-2akf1ft1edcttk87
first post

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the QtPim module of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
9
** Commercial License Usage
 
10
** Licensees holding valid commercial Qt licenses may use this file in
 
11
** accordance with the commercial license agreement provided with the
 
12
** Software or, alternatively, in accordance with the terms contained in
 
13
** a written agreement between you and Digia.  For licensing terms and
 
14
** conditions see http://qt.digia.com/licensing.  For further information
 
15
** use the contact form at http://qt.digia.com/contact-us.
 
16
**
 
17
** GNU Lesser General Public License Usage
 
18
** Alternatively, this file may be used under the terms of the GNU Lesser
 
19
** General Public License version 2.1 as published by the Free Software
 
20
** Foundation and appearing in the file LICENSE.LGPL included in the
 
21
** packaging of this file.  Please review the following information to
 
22
** ensure the GNU Lesser General Public License version 2.1 requirements
 
23
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
24
**
 
25
** In addition, as a special exception, Digia gives you certain additional
 
26
** rights.  These rights are described in the Digia Qt LGPL Exception
 
27
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
28
**
 
29
** GNU General Public License Usage
 
30
** Alternatively, this file may be used under the terms of the GNU
 
31
** General Public License version 3.0 as published by the Free Software
 
32
** Foundation and appearing in the file LICENSE.GPL included in the
 
33
** packaging of this file.  Please review the following information to
 
34
** ensure the GNU General Public License version 3.0 requirements will be
 
35
** met: http://www.gnu.org/copyleft/gpl.html.
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
import QtQuick 2.0
 
43
import QtTest 1.0
 
44
import QtContacts 5.0
 
45
 
 
46
TestCase {
 
47
 
 
48
    name: "ContactRelationship"
 
49
 
 
50
    Contact {
 
51
        id: contact1
 
52
        Name {
 
53
            id: contact1Name
 
54
            firstName: "contact1"
 
55
        }
 
56
    }
 
57
 
 
58
    Contact {
 
59
        id: contact2
 
60
        Name {
 
61
            id: contact2Name
 
62
            firstName: "contact2"
 
63
        }
 
64
    }
 
65
 
 
66
    function setAndVerifyRelationship(first, second, relationship) {
 
67
        relationship.first = first
 
68
        relationship.second = second
 
69
        compare(relationship.first.name.firstName, first.name.firstName)
 
70
        compare(relationship.second.name.firstName, second.name.firstName)
 
71
    }
 
72
 
 
73
    Relationship {
 
74
        id: relationshipHasMember
 
75
        type: Relationship.HasMember
 
76
    }
 
77
 
 
78
    Relationship {
 
79
        id: relationshipHasMemberTypeAsString
 
80
        type: "HasMember"
 
81
    }
 
82
 
 
83
    function test_hasMember() {
 
84
        compare(relationshipHasMember.type, "HasMember")
 
85
        compare(relationshipHasMemberTypeAsString.type, "HasMember")
 
86
 
 
87
        setAndVerifyRelationship(contact1, contact2, relationshipHasMember)
 
88
        setAndVerifyRelationship(contact1, contact2, relationshipHasMemberTypeAsString)
 
89
    }
 
90
 
 
91
    Relationship {
 
92
        id: relationshipAggregates
 
93
        type: Relationship.Aggregates
 
94
    }
 
95
 
 
96
    Relationship {
 
97
        id: relationshipAggregatesTypeAsString
 
98
        type: "Aggregates"
 
99
    }
 
100
 
 
101
    function test_aggregates() {
 
102
        compare(relationshipAggregates.type, "Aggregates")
 
103
        compare(relationshipAggregatesTypeAsString.type, "Aggregates")
 
104
 
 
105
        setAndVerifyRelationship(contact1, contact2, relationshipAggregates)
 
106
    }
 
107
 
 
108
    Relationship {
 
109
        id: relationshipIsSameAs
 
110
        type: Relationship.IsSameAs
 
111
    }
 
112
 
 
113
    Relationship {
 
114
        id: relationshipIsSameAsTypeAsString
 
115
        type: "IsSameAs"
 
116
    }
 
117
 
 
118
    function test_isSameAs() {
 
119
        compare(relationshipIsSameAs.type, "IsSameAs")
 
120
        compare(relationshipIsSameAsTypeAsString.type, "IsSameAs")
 
121
 
 
122
        setAndVerifyRelationship(contact1, contact2, relationshipIsSameAs)
 
123
    }
 
124
 
 
125
    Relationship {
 
126
        id: relationshipHasAssistant
 
127
        type: Relationship.HasAssistant
 
128
    }
 
129
 
 
130
    Relationship {
 
131
        id: relationshipHasAssistantTypeAsString
 
132
        type: "HasAssistant"
 
133
    }
 
134
 
 
135
    function test_hasAssistant() {
 
136
        compare(relationshipHasAssistant.type, "HasAssistant")
 
137
        compare(relationshipHasAssistantTypeAsString.type, "HasAssistant")
 
138
 
 
139
        setAndVerifyRelationship(contact1, contact2, relationshipHasAssistant)
 
140
    }
 
141
 
 
142
    Relationship {
 
143
        id: relationshipHasManager
 
144
        type: Relationship.HasManager
 
145
    }
 
146
 
 
147
    Relationship {
 
148
        id: relationshipHasManagerTypeAsString
 
149
        type: "HasManager"
 
150
    }
 
151
 
 
152
    function test_hasManager() {
 
153
        compare(relationshipHasManager.type, "HasManager")
 
154
        compare(relationshipHasManagerTypeAsString.type, "HasManager")
 
155
 
 
156
        setAndVerifyRelationship(contact1, contact2, relationshipHasManager)
 
157
    }
 
158
 
 
159
    Relationship {
 
160
        id: relationshipHasSpouse
 
161
        type: Relationship.HasSpouse
 
162
    }
 
163
 
 
164
    Relationship {
 
165
        id: relationshipHasSpouseTypeAsString
 
166
        type: "HasSpouse"
 
167
    }
 
168
 
 
169
    function test_hasSpouse() {
 
170
        compare(relationshipHasSpouse.type, "HasSpouse")
 
171
        compare(relationshipHasSpouseTypeAsString.type, "HasSpouse")
 
172
 
 
173
        setAndVerifyRelationship(contact1, contact2, relationshipHasSpouse)
 
174
    }
 
175
 
 
176
    Relationship {
 
177
        id: relationshipForNullContacts
 
178
        type: "HasSpouse"
 
179
    }
 
180
 
 
181
    function test_nullParticipants() {
 
182
        //just check we do not crash in these cases
 
183
        relationshipForNullContacts.first = null;
 
184
        relationshipForNullContacts.second = null;
 
185
        try {
 
186
            //next two lines will throw an exception, so we catch it)
 
187
            relationshipForNullContacts.second = undefined;
 
188
            relationshipForNullContacts.second = undefined;
 
189
        } catch(err) {
 
190
        }
 
191
    }
 
192
}