~renatofilho/messaging-app/fix-1489330

« back to all changes in this revision

Viewing changes to tests/qml/tst_SingleSim.qml

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2016-05-16 15:53:28 UTC
  • mfrom: (458.1.101 messaging-app)
  • Revision ID: renato.filho@canonical.com-20160516155328-3lkc6f6cob6jgi8k
Trunk merged.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2016 Canonical Ltd.
 
3
 *
 
4
 * This file is part of messaging-app.
 
5
 *
 
6
 * messaging-app is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * messaging-app is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
import QtQuick 2.2
 
20
import QtTest 1.0
 
21
import Ubuntu.Test 0.1
 
22
import Ubuntu.Telephony 0.1
 
23
import Ubuntu.History 0.1
 
24
 
 
25
Item {
 
26
    id: root
 
27
 
 
28
    width: units.gu(40)
 
29
    height: units.gu(70)
 
30
 
 
31
 
 
32
    Item {
 
33
        id: application
 
34
        function findMessagingChild(name)
 
35
        {
 
36
            return null
 
37
        }
 
38
    }
 
39
 
 
40
    QtObject {
 
41
        id: testAccount
 
42
        property string accountId: "ofono/ofono/account0"
 
43
        property var emergencyNumbers: [ "444", "555"]
 
44
        property int type: AccountEntry.PhoneAccount
 
45
        property string displayName: "SIM 1"
 
46
        property bool connected: true
 
47
        property bool emergencyCallsAvailable: true
 
48
        property bool active: true
 
49
        property string networkName: "Network name"
 
50
        property bool simLocked: false
 
51
        property var addressableVCardFields: ["tel"]
 
52
    }
 
53
 
 
54
    Item {
 
55
        id: telepathyHelper
 
56
        property var activeAccounts: [testAccount]
 
57
        property alias accounts: telepathyHelper.activeAccounts
 
58
        property QtObject defaultMessagingAccount: null
 
59
        function registerChannelObserver() {}
 
60
        function unregisterChannelObserver() {}
 
61
        function accountForId(accountId) {
 
62
            for (var i in accounts) {
 
63
               if (accounts[i].accountId == accountId) {
 
64
                  return accounts[i]
 
65
               }
 
66
            }
 
67
            return null
 
68
        }
 
69
    }
 
70
 
 
71
    Item {
 
72
        id: chatManager
 
73
        signal messageSent(string accountId, var participantIds, string text, var attachments, var properties)
 
74
        function acknowledgeMessage(recipients, messageId, accountId) {
 
75
            chatManager.messageAcknowledged(recipients, messageId, accountId)
 
76
        }
 
77
        function sendMessage(accountId, participantIds, text, attachments, properties) {
 
78
           chatManager.messageSent(accountId, participantIds, text, attachments, properties)
 
79
           return accountId
 
80
        }
 
81
        function chatEntryForParticipants(accountId, participantIds) {
 
82
            return null
 
83
        }
 
84
    }
 
85
 
 
86
    Loader {
 
87
        id: mainViewLoader
 
88
        active: false
 
89
        property string i18nDirectory: ""
 
90
        source: '../../src/qml/messaging-app.qml'
 
91
    }
 
92
 
 
93
    SignalSpy {
 
94
       id: messageSentSpy
 
95
       target: chatManager
 
96
       signalName: "messageSent"
 
97
    }
 
98
 
 
99
    UbuntuTestCase {
 
100
        id: singleSim
 
101
        name: 'singleSim'
 
102
 
 
103
        when: windowShown
 
104
 
 
105
        // we reimplement the function here and add a special
 
106
        // case to deal with a null child without failing
 
107
        function findChild(obj,objectName) {
 
108
            var childs = new Array(0);
 
109
            childs.push(obj)
 
110
            while (childs.length > 0) {
 
111
                // this is the special case
 
112
                if (!childs[0]) {
 
113
                    childs.splice(0, 1);
 
114
                    continue
 
115
                }
 
116
                if (childs[0].objectName == objectName) {
 
117
                    return childs[0]
 
118
                }
 
119
                for (var i in childs[0].children) {
 
120
                    childs.push(childs[0].children[i])
 
121
                }
 
122
                childs.splice(0, 1);
 
123
            }
 
124
            return null;
 
125
        }
 
126
 
 
127
        function init() {
 
128
        }
 
129
 
 
130
        function cleanup() {
 
131
        }
 
132
 
 
133
        function test_messageSentViaOnlySim() {
 
134
            mainViewLoader.active = false
 
135
            mainViewLoader.active = true
 
136
 
 
137
            tryCompare(mainViewLoader.item, 'applicationActive', true)
 
138
 
 
139
            mainViewLoader.item.startNewMessage()
 
140
            waitForRendering(mainViewLoader.item)
 
141
 
 
142
            var messagesView = findChild(mainViewLoader, "messagesPage")
 
143
            var textArea = findChild(messagesView, "messageTextArea")
 
144
            var contactSearchInput = findChild(messagesView, "contactSearchInput")
 
145
            var sendButton = findChild(messagesView, "sendButton")
 
146
            contactSearchInput.text = "123"
 
147
            textArea.text = "test text"
 
148
            // on vivid mouseClick() does not work here
 
149
            sendButton.clicked()
 
150
            tryCompare(messageSentSpy, 'count', 1)
 
151
            tryCompare(testAccount, 'accountId', messageSentSpy.signalArguments[0][0])
 
152
        }
 
153
    }
 
154
}