зеркало из https://github.com/mozilla/gecko-dev.git
Bug 790988 - Develop WebTelephony test to verify incoming call while have another call held, update manifest; r=jgriffin, DONTBUILD because NPOTB
This commit is contained in:
Родитель
e842bcc287
Коммит
fefbd4e648
|
@ -30,4 +30,5 @@ qemu = true
|
|||
[test_outgoing_already_held.js]
|
||||
[test_outgoing_answer_local_hangup.js]
|
||||
[test_outgoing_remote_hangup_held.js]
|
||||
[test_incoming_already_held.js]
|
||||
|
||||
|
|
|
@ -0,0 +1,237 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
MARIONETTE_TIMEOUT = 10000;
|
||||
|
||||
SpecialPowers.addPermission("telephony", true, document);
|
||||
|
||||
let telephony = window.navigator.mozTelephony;
|
||||
let outNumber = "5555551111";
|
||||
let inNumber = "5555552222";
|
||||
let outgoingCall;
|
||||
let incomingCall;
|
||||
let gotOriginalConnected = false;
|
||||
|
||||
function verifyInitialState() {
|
||||
log("Verifying initial state.");
|
||||
ok(telephony);
|
||||
is(telephony.active, null);
|
||||
ok(telephony.calls);
|
||||
is(telephony.calls.length, 0);
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Initial call list: " + result);
|
||||
is(result[0], "OK");
|
||||
dial();
|
||||
});
|
||||
}
|
||||
|
||||
function dial() {
|
||||
log("Make an outgoing call.");
|
||||
outgoingCall = telephony.dial(outNumber);
|
||||
ok(outgoingCall);
|
||||
is(outgoingCall.number, outNumber);
|
||||
is(outgoingCall.state, "dialing");
|
||||
|
||||
is(outgoingCall, telephony.active);
|
||||
is(telephony.calls.length, 1);
|
||||
is(telephony.calls[0], outgoingCall);
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Call list is now: " + result);
|
||||
is(result[0], "outbound to " + outNumber + " : unknown");
|
||||
is(result[1], "OK");
|
||||
answer();
|
||||
});
|
||||
}
|
||||
|
||||
function answer() {
|
||||
log("Answering the outgoing call.");
|
||||
|
||||
// We get no "connecting" event when the remote party answers the call.
|
||||
outgoingCall.onconnected = function onconnectedOut(event) {
|
||||
log("Received 'connected' call event for the original outgoing call.");
|
||||
|
||||
is(outgoingCall, event.call);
|
||||
is(outgoingCall.state, "connected");
|
||||
is(outgoingCall, telephony.active);
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Call list is now: " + result);
|
||||
is(result[0], "outbound to " + outNumber + " : active");
|
||||
is(result[1], "OK");
|
||||
|
||||
if(!gotOriginalConnected){
|
||||
gotOriginalConnected = true;
|
||||
holdCall();
|
||||
} else {
|
||||
// Received connected event for original call multiple times (fail)
|
||||
ok(false,
|
||||
"Received 'connected' event for original call multiple times");
|
||||
}
|
||||
});
|
||||
};
|
||||
runEmulatorCmd("gsm accept " + outNumber);
|
||||
}
|
||||
|
||||
function holdCall() {
|
||||
log("Putting the original (outgoing) call on hold.");
|
||||
|
||||
let gotHolding = false;
|
||||
outgoingCall.onholding = function onholding(event) {
|
||||
log("Received 'holding' call event");
|
||||
is(outgoingCall, event.call);
|
||||
is(outgoingCall.state, "holding");
|
||||
gotHolding = true;
|
||||
};
|
||||
|
||||
outgoingCall.onheld = function onheld(event) {
|
||||
log("Received 'held' call event");
|
||||
is(outgoingCall, event.call);
|
||||
is(outgoingCall.state, "held");
|
||||
ok(gotHolding);
|
||||
|
||||
is(telephony.active, null);
|
||||
is(telephony.calls.length, 1);
|
||||
is(telephony.calls[0], outgoingCall);
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Call list is now: " + result);
|
||||
is(result[0], "outbound to " + outNumber + " : held");
|
||||
is(result[1], "OK");
|
||||
simulateIncoming();
|
||||
});
|
||||
};
|
||||
outgoingCall.hold();
|
||||
}
|
||||
|
||||
// With one call on hold, simulate an incoming call
|
||||
function simulateIncoming() {
|
||||
log("Simulating an incoming call (with one call already held).");
|
||||
|
||||
telephony.onincoming = function onincoming(event) {
|
||||
log("Received 'incoming' call event.");
|
||||
incomingCall = event.call;
|
||||
ok(incomingCall);
|
||||
is(incomingCall.number, inNumber);
|
||||
is(incomingCall.state, "incoming");
|
||||
|
||||
// Should be two calls now
|
||||
is(telephony.calls.length, 2);
|
||||
is(telephony.calls[0], outgoingCall);
|
||||
is(telephony.calls[1], incomingCall);
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Call list is now: " + result);
|
||||
is(result[0], "outbound to " + outNumber + " : held");
|
||||
is(result[1], "inbound from " + inNumber + " : incoming");
|
||||
is(result[2], "OK");
|
||||
answerIncoming();
|
||||
});
|
||||
};
|
||||
runEmulatorCmd("gsm call " + inNumber);
|
||||
}
|
||||
|
||||
// Answer incoming call; original outgoing call should be held
|
||||
function answerIncoming() {
|
||||
log("Answering the incoming call.");
|
||||
|
||||
let gotConnecting = false;
|
||||
incomingCall.onconnecting = function onconnectingIn(event) {
|
||||
log("Received 'connecting' call event for incoming/2nd call.");
|
||||
is(incomingCall, event.call);
|
||||
is(incomingCall.state, "connecting");
|
||||
gotConnecting = true;
|
||||
};
|
||||
|
||||
incomingCall.onconnected = function onconnectedIn(event) {
|
||||
log("Received 'connected' call event for incoming/2nd call.");
|
||||
is(incomingCall, event.call);
|
||||
is(incomingCall.state, "connected");
|
||||
ok(gotConnecting);
|
||||
|
||||
is(incomingCall, telephony.active);
|
||||
is(outgoingCall.state, "held");
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Call list is now: " + result);
|
||||
is(result[0], "outbound to " + outNumber + " : held");
|
||||
is(result[1], "inbound from " + inNumber + " : active");
|
||||
is(result[2], "OK");
|
||||
hangUpOutgoing();
|
||||
});
|
||||
};
|
||||
incomingCall.answer();
|
||||
}
|
||||
|
||||
// Hang-up original outgoing (now held) call
|
||||
function hangUpOutgoing() {
|
||||
log("Hanging up the original outgoing (now held) call.");
|
||||
|
||||
let gotDisconnecting = false;
|
||||
outgoingCall.ondisconnecting = function ondisconnectingOut(event) {
|
||||
log("Received 'disconnecting' call event for original outgoing call.");
|
||||
is(outgoingCall, event.call);
|
||||
is(outgoingCall.state, "disconnecting");
|
||||
gotDisconnecting = true;
|
||||
};
|
||||
|
||||
outgoingCall.ondisconnected = function ondisconnectedOut(event) {
|
||||
log("Received 'disconnected' call event for original outgoing call.");
|
||||
is(outgoingCall, event.call);
|
||||
is(outgoingCall.state, "disconnected");
|
||||
ok(gotDisconnecting);
|
||||
|
||||
// Back to one call now
|
||||
is(telephony.calls.length, 1);
|
||||
is(incomingCall.state, "connected");
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Call list is now: " + result);
|
||||
is(result[0], "inbound from " + inNumber + " : active");
|
||||
is(result[1], "OK");
|
||||
hangUpIncoming();
|
||||
});
|
||||
};
|
||||
outgoingCall.hangUp();
|
||||
}
|
||||
|
||||
// Hang-up remaining (incoming) call
|
||||
function hangUpIncoming() {
|
||||
log("Hanging up the remaining (incoming) call.");
|
||||
|
||||
let gotDisconnecting = false;
|
||||
incomingCall.ondisconnecting = function ondisconnectingIn(event) {
|
||||
log("Received 'disconnecting' call event for remaining (incoming) call.");
|
||||
is(incomingCall, event.call);
|
||||
is(incomingCall.state, "disconnecting");
|
||||
gotDisconnecting = true;
|
||||
};
|
||||
|
||||
incomingCall.ondisconnected = function ondisconnectedIn(event) {
|
||||
log("Received 'disconnected' call event for remaining (incoming) call.");
|
||||
is(incomingCall, event.call);
|
||||
is(incomingCall.state, "disconnected");
|
||||
ok(gotDisconnecting);
|
||||
|
||||
// Zero calls left
|
||||
is(telephony.active, null);
|
||||
is(telephony.calls.length, 0);
|
||||
|
||||
runEmulatorCmd("gsm list", function(result) {
|
||||
log("Call list is now: " + result);
|
||||
is(result[0], "OK");
|
||||
cleanUp();
|
||||
});
|
||||
};
|
||||
incomingCall.hangUp();
|
||||
}
|
||||
|
||||
function cleanUp() {
|
||||
telephony.onincoming = null;
|
||||
SpecialPowers.removePermission("telephony", document);
|
||||
finish();
|
||||
}
|
||||
|
||||
// Start the test
|
||||
verifyInitialState();
|
Загрузка…
Ссылка в новой задаче