mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bc06b6fedb
* * * split test_conference.js - p4 - split test_conference
42 lines
1.3 KiB
JavaScript
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);
|
|
});
|