|
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 testConferenceThreeAndHangupOne() { |
|
8 log('= testConferenceThreeAndHangupOne ='); |
|
9 |
|
10 let outCall; |
|
11 let inCall; |
|
12 let inCall2; |
|
13 let outNumber = "5555550101"; |
|
14 let inNumber = "5555550201"; |
|
15 let inNumber2 = "5555550202"; |
|
16 let inInfo = gInCallStrPool(inNumber); |
|
17 let inInfo2 = gInCallStrPool(inNumber2); |
|
18 |
|
19 return Promise.resolve() |
|
20 .then(() => gSetupConferenceThreeCalls(outNumber, inNumber, inNumber2)) |
|
21 .then(calls => { |
|
22 [outCall, inCall, inCall2] = calls; |
|
23 }) |
|
24 .then(() => gHangUpCallInConference(outCall, [], [inCall, inCall2])) |
|
25 .then(() => gCheckAll(conference, [], 'connected', [inCall, inCall2], |
|
26 [inInfo.active, inInfo2.active])) |
|
27 .then(() => gRemoteHangUpCalls([inCall, inCall2])); |
|
28 } |
|
29 |
|
30 // Start the test |
|
31 startTest(function() { |
|
32 testConferenceThreeAndHangupOne() |
|
33 .then(null, error => { |
|
34 ok(false, 'promise rejects during test.'); |
|
35 }) |
|
36 .then(finish); |
|
37 }); |