|
1 /* Any copyright is dedicated to the Public Domain. |
|
2 * http://creativecommons.org/publicdomain/zero/1.0/ */ |
|
3 |
|
4 MARIONETTE_TIMEOUT = 60000; |
|
5 MARIONETTE_HEAD_JS = 'head.js'; |
|
6 |
|
7 function testConferenceThreeAndRemoveOne() { |
|
8 log('= testConferenceThreeAndRemoveOne ='); |
|
9 |
|
10 let outCall; |
|
11 let inCall; |
|
12 let inCall2; |
|
13 let outNumber = "5555550101"; |
|
14 let inNumber = "5555550201"; |
|
15 let inNumber2 = "5555550202"; |
|
16 let outInfo = gOutCallStrPool(outNumber); |
|
17 let inInfo = gInCallStrPool(inNumber); |
|
18 let inInfo2 = gInCallStrPool(inNumber2); |
|
19 |
|
20 return Promise.resolve() |
|
21 .then(() => gSetupConferenceThreeCalls(outNumber, inNumber, inNumber2)) |
|
22 .then(calls => { |
|
23 [outCall, inCall, inCall2] = calls; |
|
24 }) |
|
25 .then(() => gRemoveCallInConference(outCall, [], [inCall, inCall2], |
|
26 function() { |
|
27 gCheckState(outCall, [outCall], 'held', [inCall, inCall2]); |
|
28 })) |
|
29 .then(() => gCheckAll(outCall, [outCall], 'held', [inCall, inCall2], |
|
30 [outInfo.active, inInfo.held, inInfo2.held])) |
|
31 .then(() => gRemoteHangUpCalls([outCall, inCall, inCall2])); |
|
32 } |
|
33 |
|
34 // Start the test |
|
35 startTest(function() { |
|
36 testConferenceThreeAndRemoveOne() |
|
37 .then(null, error => { |
|
38 ok(false, 'promise rejects during test.'); |
|
39 }) |
|
40 .then(finish); |
|
41 }); |