dom/telephony/test/marionette/test_conference_three_hangup_one.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 /* Any copyright is dedicated to the Public Domain.
     2  * http://creativecommons.org/publicdomain/zero/1.0/ */
     4 MARIONETTE_TIMEOUT = 60000;
     5 MARIONETTE_HEAD_JS = 'head.js';
     7 function testConferenceThreeAndHangupOne() {
     8   log('= testConferenceThreeAndHangupOne =');
    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);
    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 }
    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 });

mercurial