2012-05-29 17:39:46 -07:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
|
2013-04-09 09:02:51 -07:00
|
|
|
MARIONETTE_TIMEOUT = 60000;
|
2013-10-01 23:27:52 -07:00
|
|
|
MARIONETTE_HEAD_JS = 'head.js';
|
2012-05-29 17:39:46 -07:00
|
|
|
|
2012-08-06 20:01:18 -07:00
|
|
|
SpecialPowers.addPermission("telephony", true, document);
|
2012-05-29 17:39:46 -07:00
|
|
|
|
|
|
|
let telephony = window.navigator.mozTelephony;
|
|
|
|
let number = "5555552368";
|
|
|
|
let outgoing;
|
|
|
|
|
2013-04-26 07:44:26 -07:00
|
|
|
function getExistingCalls() {
|
2013-10-01 23:27:52 -07:00
|
|
|
emulator.run("gsm list", function(result) {
|
2013-04-26 07:44:26 -07:00
|
|
|
log("Initial call list: " + result);
|
|
|
|
if (result[0] == "OK") {
|
|
|
|
verifyInitialState(false);
|
|
|
|
} else {
|
|
|
|
cancelExistingCalls(result);
|
2013-10-01 23:27:52 -07:00
|
|
|
}
|
2013-04-26 07:44:26 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function cancelExistingCalls(callList) {
|
|
|
|
if (callList.length && callList[0] != "OK") {
|
|
|
|
// Existing calls remain; get rid of the next one in the list
|
2013-09-18 00:44:08 -07:00
|
|
|
nextCall = callList.shift().split(/\s+/)[2].trim();
|
2013-04-26 07:44:26 -07:00
|
|
|
log("Cancelling existing call '" + nextCall +"'");
|
2013-10-01 23:27:52 -07:00
|
|
|
emulator.run("gsm cancel " + nextCall, function(result) {
|
2013-04-26 07:44:26 -07:00
|
|
|
if (result[0] == "OK") {
|
|
|
|
cancelExistingCalls(callList);
|
|
|
|
} else {
|
|
|
|
log("Failed to cancel existing call");
|
|
|
|
cleanUp();
|
2013-10-01 23:27:52 -07:00
|
|
|
}
|
2013-04-26 07:44:26 -07:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// No more calls in the list; give time for emulator to catch up
|
|
|
|
waitFor(verifyInitialState, function() {
|
2013-10-01 23:27:52 -07:00
|
|
|
return (telephony.calls.length === 0);
|
2013-04-26 07:44:26 -07:00
|
|
|
});
|
2013-10-01 23:27:52 -07:00
|
|
|
}
|
2013-04-26 07:44:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function verifyInitialState(confirmNoCalls = true) {
|
2012-05-29 17:39:46 -07:00
|
|
|
log("Verifying initial state.");
|
|
|
|
ok(telephony);
|
|
|
|
is(telephony.active, null);
|
|
|
|
ok(telephony.calls);
|
|
|
|
is(telephony.calls.length, 0);
|
2013-04-26 07:44:26 -07:00
|
|
|
if (confirmNoCalls) {
|
2013-10-01 23:27:52 -07:00
|
|
|
emulator.run("gsm list", function(result) {
|
2012-05-29 17:39:46 -07:00
|
|
|
log("Initial call list: " + result);
|
2013-04-26 07:44:26 -07:00
|
|
|
is(result[0], "OK");
|
|
|
|
if (result[0] == "OK") {
|
|
|
|
dial();
|
|
|
|
} else {
|
|
|
|
log("Call exists from a previous test, failing out.");
|
|
|
|
cleanUp();
|
2013-10-01 23:27:52 -07:00
|
|
|
}
|
2013-04-26 07:44:26 -07:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
dial();
|
|
|
|
}
|
2012-05-29 17:39:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function dial() {
|
|
|
|
log("Make an outgoing call.");
|
|
|
|
|
|
|
|
outgoing = telephony.dial(number);
|
|
|
|
ok(outgoing);
|
|
|
|
is(outgoing.number, number);
|
|
|
|
is(outgoing.state, "dialing");
|
|
|
|
|
2013-02-21 21:17:00 -08:00
|
|
|
is(outgoing, telephony.active);
|
|
|
|
is(telephony.calls.length, 1);
|
|
|
|
is(telephony.calls[0], outgoing);
|
2012-05-29 17:39:46 -07:00
|
|
|
|
2013-02-21 21:17:00 -08:00
|
|
|
outgoing.onalerting = function onalerting(event) {
|
|
|
|
log("Received 'onalerting' call event.");
|
|
|
|
is(outgoing, event.call);
|
|
|
|
is(outgoing.state, "alerting");
|
2012-05-29 17:39:46 -07:00
|
|
|
|
2013-10-01 23:27:52 -07:00
|
|
|
emulator.run("gsm list", function(result) {
|
2013-02-21 21:17:00 -08:00
|
|
|
log("Call list is now: " + result);
|
|
|
|
is(result[0], "outbound to " + number + " : ringing");
|
|
|
|
is(result[1], "OK");
|
|
|
|
busy();
|
|
|
|
});
|
|
|
|
};
|
2012-05-29 17:39:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function busy() {
|
|
|
|
log("The receiver is busy.");
|
|
|
|
|
2013-07-15 05:54:38 -07:00
|
|
|
outgoing.onerror = function onerror(event) {
|
|
|
|
log("Received 'error' call event.");
|
2012-05-29 17:39:46 -07:00
|
|
|
is(outgoing, event.call);
|
2013-07-15 05:54:38 -07:00
|
|
|
is(event.call.error.name, "BusyError");
|
2012-05-29 17:39:46 -07:00
|
|
|
|
2013-10-01 23:27:52 -07:00
|
|
|
emulator.run("gsm list", function(result) {
|
2012-05-29 17:39:46 -07:00
|
|
|
log("Call list is now: " + result);
|
|
|
|
is(result[0], "OK");
|
|
|
|
cleanUp();
|
|
|
|
});
|
|
|
|
};
|
2013-07-15 05:54:38 -07:00
|
|
|
|
2013-10-01 23:27:52 -07:00
|
|
|
emulator.run("gsm busy " + number);
|
|
|
|
}
|
2012-05-29 17:39:46 -07:00
|
|
|
|
|
|
|
function cleanUp() {
|
2012-08-06 20:01:18 -07:00
|
|
|
SpecialPowers.removePermission("telephony", document);
|
2012-05-29 17:39:46 -07:00
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
2013-10-01 23:27:52 -07:00
|
|
|
startTest(function() {
|
|
|
|
getExistingCalls();
|
|
|
|
});
|