|
1 /* Any copyright is dedicated to the Public Domain. |
|
2 * http://creativecommons.org/publicdomain/zero/1.0/ */ |
|
3 |
|
4 MARIONETTE_TIMEOUT = 60000; |
|
5 MARIONETTE_HEAD_JS = 'head.js'; |
|
6 |
|
7 let inNumber = "5555551111"; |
|
8 let incomingCall; |
|
9 |
|
10 function simulateIncoming() { |
|
11 log("Simulating an incoming call."); |
|
12 |
|
13 telephony.onincoming = function onincoming(event) { |
|
14 log("Received 'incoming' call event."); |
|
15 incomingCall = event.call; |
|
16 ok(incomingCall); |
|
17 is(incomingCall.number, inNumber); |
|
18 is(incomingCall.state, "incoming"); |
|
19 |
|
20 is(telephony.calls.length, 1); |
|
21 is(telephony.calls[0], incomingCall); |
|
22 |
|
23 emulator.run("gsm list", function(result) { |
|
24 log("Call list is now: " + result); |
|
25 is(result[0], "inbound from " + inNumber + " : incoming"); |
|
26 is(result[1], "OK"); |
|
27 answerIncoming(); |
|
28 }); |
|
29 }; |
|
30 emulator.run("gsm call " + inNumber); |
|
31 } |
|
32 |
|
33 function answerIncoming() { |
|
34 log("Answering the incoming call."); |
|
35 |
|
36 let gotConnecting = false; |
|
37 incomingCall.onconnecting = function onconnectingIn(event) { |
|
38 log("Received 'connecting' call event for incoming call."); |
|
39 is(incomingCall, event.call); |
|
40 is(incomingCall.state, "connecting"); |
|
41 gotConnecting = true; |
|
42 }; |
|
43 |
|
44 incomingCall.onconnected = function onconnectedIn(event) { |
|
45 log("Received 'connected' call event for incoming call."); |
|
46 is(incomingCall, event.call); |
|
47 is(incomingCall.state, "connected"); |
|
48 ok(gotConnecting); |
|
49 |
|
50 is(incomingCall, telephony.active); |
|
51 |
|
52 emulator.run("gsm list", function(result) { |
|
53 log("Call list is now: " + result); |
|
54 is(result[0], "inbound from " + inNumber + " : active"); |
|
55 is(result[1], "OK"); |
|
56 hold(); |
|
57 }); |
|
58 }; |
|
59 incomingCall.answer(); |
|
60 } |
|
61 |
|
62 function hold() { |
|
63 log("Putting the call on hold."); |
|
64 |
|
65 let gotHolding = false; |
|
66 incomingCall.onholding = function onholding(event) { |
|
67 log("Received 'holding' call event"); |
|
68 is(incomingCall, event.call); |
|
69 is(incomingCall.state, "holding"); |
|
70 gotHolding = true; |
|
71 }; |
|
72 |
|
73 incomingCall.onheld = function onheld(event) { |
|
74 log("Received 'held' call event"); |
|
75 is(incomingCall, event.call); |
|
76 is(incomingCall.state, "held"); |
|
77 ok(gotHolding); |
|
78 |
|
79 is(telephony.active, null); |
|
80 is(telephony.calls.length, 1); |
|
81 is(telephony.calls[0], incomingCall); |
|
82 |
|
83 emulator.run("gsm list", function(result) { |
|
84 log("Call list is now: " + result); |
|
85 is(result[0], "inbound from " + inNumber + " : held"); |
|
86 is(result[1], "OK"); |
|
87 hangUp(); |
|
88 }); |
|
89 }; |
|
90 incomingCall.hold(); |
|
91 } |
|
92 |
|
93 function hangUp() { |
|
94 log("Hanging up the held call (remotely)."); |
|
95 |
|
96 // We get no 'disconnecting' event when remote party hangs-up the call |
|
97 |
|
98 incomingCall.ondisconnected = function ondisconnected(event) { |
|
99 log("Received 'disconnected' call event."); |
|
100 is(incomingCall, event.call); |
|
101 is(incomingCall.state, "disconnected"); |
|
102 |
|
103 is(telephony.active, null); |
|
104 is(telephony.calls.length, 0); |
|
105 |
|
106 emulator.run("gsm list", function(result) { |
|
107 log("Call list is now: " + result); |
|
108 is(result[0], "OK"); |
|
109 cleanUp(); |
|
110 }); |
|
111 }; |
|
112 emulator.run("gsm cancel " + inNumber); |
|
113 } |
|
114 |
|
115 function cleanUp() { |
|
116 telephony.onincoming = null; |
|
117 finish(); |
|
118 } |
|
119 |
|
120 startTest(function() { |
|
121 simulateIncoming(); |
|
122 }); |