mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
141 lines
3.7 KiB
JavaScript
141 lines
3.7 KiB
JavaScript
/* 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 number = "5555552368";
|
|
let incoming;
|
|
let calls;
|
|
|
|
function verifyInitialState() {
|
|
log("Verifying initial state.");
|
|
ok(telephony);
|
|
is(telephony.active, null);
|
|
ok(telephony.calls);
|
|
is(telephony.calls.length, 0);
|
|
calls = telephony.calls;
|
|
|
|
runEmulatorCmd("gsm list", function(result) {
|
|
log("Initial call list: " + result);
|
|
is(result[0], "OK");
|
|
if (result[0] == "OK") {
|
|
simulateIncoming();
|
|
} else {
|
|
log("Call exists from a previous test, failing out.");
|
|
cleanUp();
|
|
}
|
|
});
|
|
}
|
|
|
|
function simulateIncoming() {
|
|
log("Simulating an incoming call.");
|
|
|
|
telephony.oncallschanged = function oncallschanged(event) {
|
|
log("Received 'callschanged' event.");
|
|
|
|
let expected_states = ["incoming", "disconnected"];
|
|
ok(expected_states.indexOf(event.call.state) != -1,
|
|
"Unexpected call state: " + event.call.state);
|
|
|
|
if (event.call.state == "incoming") {
|
|
log("Received 'callschanged' event for an incoming call.");
|
|
incoming = event.call;
|
|
ok(incoming);
|
|
is(incoming.number, number);
|
|
|
|
//ok(telephony.calls === calls); // bug 717414
|
|
is(telephony.calls.length, 1);
|
|
is(telephony.calls[0], incoming);
|
|
|
|
runEmulatorCmd("gsm list", function(result) {
|
|
log("Call list is now: " + result);
|
|
is(result[0], "inbound from " + number + " : incoming");
|
|
is(result[1], "OK");
|
|
answer();
|
|
});
|
|
}
|
|
|
|
if (event.call.state == "disconnected") {
|
|
log("Received 'callschanged' event for a disconnected call.");
|
|
is(event.call, incoming);
|
|
is(incoming.state, "disconnected");
|
|
is(telephony.active, null);
|
|
is(telephony.calls.length, 0);
|
|
cleanUp();
|
|
}
|
|
};
|
|
|
|
runEmulatorCmd("gsm call " + number);
|
|
}
|
|
|
|
function answer() {
|
|
log("Answering the incoming call.");
|
|
|
|
let gotConnecting = false;
|
|
incoming.onconnecting = function onconnecting(event) {
|
|
log("Received 'connecting' call event.");
|
|
is(incoming, event.call);
|
|
is(incoming.state, "connecting");
|
|
|
|
// Incoming call is not 'active' until its state becomes 'connected'.
|
|
isnot(incoming, telephony.active);
|
|
gotConnecting = true;
|
|
};
|
|
|
|
incoming.onconnected = function onconnected(event) {
|
|
log("Received 'connected' call event.");
|
|
is(incoming, event.call);
|
|
is(incoming.state, "connected");
|
|
ok(gotConnecting);
|
|
|
|
is(incoming, telephony.active);
|
|
|
|
runEmulatorCmd("gsm list", function(result) {
|
|
log("Call list is now: " + result);
|
|
is(result[0], "inbound from " + number + " : active");
|
|
is(result[1], "OK");
|
|
hangUp();
|
|
});
|
|
};
|
|
incoming.answer();
|
|
};
|
|
|
|
function hangUp() {
|
|
log("Hanging up the incoming call.");
|
|
|
|
let gotDisconnecting = false;
|
|
incoming.ondisconnecting = function ondisconnecting(event) {
|
|
log("Received 'disconnecting' call event.");
|
|
is(incoming, event.call);
|
|
is(incoming.state, "disconnecting");
|
|
gotDisconnecting = true;
|
|
};
|
|
|
|
incoming.ondisconnected = function ondisconnected(event) {
|
|
log("Received 'disconnected' call event.");
|
|
is(incoming, event.call);
|
|
is(incoming.state, "disconnected");
|
|
ok(gotDisconnecting);
|
|
|
|
is(telephony.active, null);
|
|
is(telephony.calls.length, 0);
|
|
|
|
runEmulatorCmd("gsm list", function(result) {
|
|
log("Call list is now: " + result);
|
|
is(result[0], "OK");
|
|
});
|
|
};
|
|
incoming.hangUp();
|
|
}
|
|
|
|
function cleanUp() {
|
|
telephony.oncallschanged = null;
|
|
SpecialPowers.removePermission("telephony", document);
|
|
finish();
|
|
}
|
|
|
|
verifyInitialState();
|