gecko/dom/telephony/test/marionette/test_conference_three_remove_one.js
Hsin-Yi Tsai bc06b6fedb Bug 989728 - [B2G] [RIL] split test_conference.js into smaller pieces to avoid timeout failure. r=vicamo
* * *
split test_conference.js - p4 - split test_conference
2014-04-08 14:10:06 +08:00

42 lines
1.3 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
MARIONETTE_TIMEOUT = 60000;
MARIONETTE_HEAD_JS = 'head.js';
function testConferenceThreeAndRemoveOne() {
log('= testConferenceThreeAndRemoveOne =');
let outCall;
let inCall;
let inCall2;
let outNumber = "5555550101";
let inNumber = "5555550201";
let inNumber2 = "5555550202";
let outInfo = gOutCallStrPool(outNumber);
let inInfo = gInCallStrPool(inNumber);
let inInfo2 = gInCallStrPool(inNumber2);
return Promise.resolve()
.then(() => gSetupConferenceThreeCalls(outNumber, inNumber, inNumber2))
.then(calls => {
[outCall, inCall, inCall2] = calls;
})
.then(() => gRemoveCallInConference(outCall, [], [inCall, inCall2],
function() {
gCheckState(outCall, [outCall], 'held', [inCall, inCall2]);
}))
.then(() => gCheckAll(outCall, [outCall], 'held', [inCall, inCall2],
[outInfo.active, inInfo.held, inInfo2.held]))
.then(() => gRemoteHangUpCalls([outCall, inCall, inCall2]));
}
// Start the test
startTest(function() {
testConferenceThreeAndRemoveOne()
.then(null, error => {
ok(false, 'promise rejects during test.');
})
.then(finish);
});