dom/telephony/test/marionette/test_conference_three_remove_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 testConferenceThreeAndRemoveOne() {
     8   log('= testConferenceThreeAndRemoveOne =');
    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);
    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 }
    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 });

mercurial