dom/telephony/test/marionette/test_outgoing_hold_resume.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 /* Any copyright is dedicated to the Public Domain.
michael@0 2 * http://creativecommons.org/publicdomain/zero/1.0/ */
michael@0 3
michael@0 4 MARIONETTE_TIMEOUT = 60000;
michael@0 5 MARIONETTE_HEAD_JS = 'head.js';
michael@0 6
michael@0 7 let number = "5555557777";
michael@0 8 let connectedCalls;
michael@0 9 let outgoingCall;
michael@0 10
michael@0 11 function dial() {
michael@0 12 log("Make an outgoing call.");
michael@0 13
michael@0 14 telephony.dial(number).then(call => {
michael@0 15 outgoingCall = call;
michael@0 16 ok(outgoingCall);
michael@0 17 is(outgoingCall.number, number);
michael@0 18 is(outgoingCall.state, "dialing");
michael@0 19
michael@0 20 is(outgoingCall, telephony.active);
michael@0 21 is(telephony.calls.length, 1);
michael@0 22 is(telephony.calls[0], outgoingCall);
michael@0 23
michael@0 24 outgoingCall.onalerting = function onalerting(event) {
michael@0 25 log("Received 'onalerting' call event.");
michael@0 26 is(outgoingCall, event.call);
michael@0 27 is(outgoingCall.state, "alerting");
michael@0 28
michael@0 29 emulator.run("gsm list", function(result) {
michael@0 30 log("Call list is now: " + result);
michael@0 31 is(result[0], "outbound to " + number + " : ringing");
michael@0 32 is(result[1], "OK");
michael@0 33 answer();
michael@0 34 });
michael@0 35 };
michael@0 36 });
michael@0 37 }
michael@0 38
michael@0 39 function answer() {
michael@0 40 log("Answering the outgoing call.");
michael@0 41
michael@0 42 // We get no "connecting" event when the remote party answers the call.
michael@0 43
michael@0 44 outgoingCall.onconnected = function onconnected(event) {
michael@0 45 log("Received 'connected' call event.");
michael@0 46 is(outgoingCall, event.call);
michael@0 47 is(outgoingCall.state, "connected");
michael@0 48
michael@0 49 is(outgoingCall, telephony.active);
michael@0 50
michael@0 51 emulator.run("gsm list", function(result) {
michael@0 52 log("Call list is now: " + result);
michael@0 53 is(result[0], "outbound to " + number + " : active");
michael@0 54 is(result[1], "OK");
michael@0 55 hold();
michael@0 56 });
michael@0 57 };
michael@0 58 emulator.run("gsm accept " + number);
michael@0 59 }
michael@0 60
michael@0 61 function hold() {
michael@0 62 log("Putting the call on hold.");
michael@0 63
michael@0 64 let gotHolding = false;
michael@0 65 outgoingCall.onholding = function onholding(event) {
michael@0 66 log("Received 'holding' call event");
michael@0 67 is(outgoingCall, event.call);
michael@0 68 is(outgoingCall.state, "holding");
michael@0 69 gotHolding = true;
michael@0 70 };
michael@0 71
michael@0 72 outgoingCall.onheld = function onheld(event) {
michael@0 73 log("Received 'held' call event");
michael@0 74 is(outgoingCall, event.call);
michael@0 75 is(outgoingCall.state, "held");
michael@0 76 ok(gotHolding);
michael@0 77
michael@0 78 is(telephony.active, null);
michael@0 79 is(telephony.calls.length, 1);
michael@0 80 is(telephony.calls[0], outgoingCall);
michael@0 81
michael@0 82 emulator.run("gsm list", function(result) {
michael@0 83 log("Call list is now: " + result);
michael@0 84 is(result[0], "outbound to " + number + " : held");
michael@0 85 is(result[1], "OK");
michael@0 86 // Bug 781604: emulator assertion if outgoing call kept on hold
michael@0 87 // Wait on hold for a couple of seconds
michael@0 88 //log("Pausing 2 seconds while on hold");
michael@0 89 //setTimeout(resume, 2000);
michael@0 90 resume();
michael@0 91 });
michael@0 92 };
michael@0 93 outgoingCall.hold();
michael@0 94 }
michael@0 95
michael@0 96 function resume() {
michael@0 97 log("Resuming the held call.");
michael@0 98
michael@0 99 let gotResuming = false;
michael@0 100 outgoingCall.onresuming = function onresuming(event) {
michael@0 101 log("Received 'resuming' call event");
michael@0 102 is(outgoingCall, event.call);
michael@0 103 is(outgoingCall.state, "resuming");
michael@0 104 gotResuming = true;
michael@0 105 };
michael@0 106
michael@0 107 outgoingCall.onconnected = function onconnected(event) {
michael@0 108 log("Received 'connected' call event");
michael@0 109 is(outgoingCall, event.call);
michael@0 110 is(outgoingCall.state, "connected");
michael@0 111 ok(gotResuming);
michael@0 112
michael@0 113 is(outgoingCall, telephony.active);
michael@0 114 is(telephony.calls.length, 1);
michael@0 115 is(telephony.calls[0], outgoingCall);
michael@0 116
michael@0 117 emulator.run("gsm list", function(result) {
michael@0 118 log("Call list is now: " + result);
michael@0 119 is(result[0], "outbound to " + number + " : active");
michael@0 120 is(result[1], "OK");
michael@0 121 hangUp();
michael@0 122 });
michael@0 123 };
michael@0 124 outgoingCall.resume();
michael@0 125 }
michael@0 126
michael@0 127 function hangUp() {
michael@0 128 log("Hanging up the outgoing call.");
michael@0 129
michael@0 130 let gotDisconnecting = false;
michael@0 131 outgoingCall.ondisconnecting = function ondisconnecting(event) {
michael@0 132 log("Received 'disconnecting' call event.");
michael@0 133 is(outgoingCall, event.call);
michael@0 134 is(outgoingCall.state, "disconnecting");
michael@0 135 gotDisconnecting = true;
michael@0 136 };
michael@0 137
michael@0 138 outgoingCall.ondisconnected = function ondisconnected(event) {
michael@0 139 log("Received 'disconnected' call event.");
michael@0 140 is(outgoingCall, event.call);
michael@0 141 is(outgoingCall.state, "disconnected");
michael@0 142 ok(gotDisconnecting);
michael@0 143
michael@0 144 is(telephony.active, null);
michael@0 145 is(telephony.calls.length, 0);
michael@0 146
michael@0 147 emulator.run("gsm list", function(result) {
michael@0 148 log("Call list is now: " + result);
michael@0 149 is(result[0], "OK");
michael@0 150 cleanUp();
michael@0 151 });
michael@0 152 };
michael@0 153 outgoingCall.hangUp();
michael@0 154 }
michael@0 155
michael@0 156 function cleanUp() {
michael@0 157 finish();
michael@0 158 }
michael@0 159
michael@0 160 startTest(function() {
michael@0 161 dial();
michael@0 162 });

mercurial