toolkit/mozapps/update/tests/unit_service_updater/bootstrapSvc.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* Any copyright is dedicated to the Public Domain.
     2  * http://creativecommons.org/publicdomain/zero/1.0/
     3  */
     5 /* Bootstrap the tests using the service by installing our own version of the service */
     7 function run_test() {
     8   if (!shouldRunServiceTest(true)) {
     9     return;
    10   }
    12   setupTestCommon();
    13   // We don't actually care if the MAR has any data, we only care about the
    14   // application return code and update.status result.
    15   gTestFiles = gTestFilesCommon;
    16   gTestDirs = [];
    17   setupUpdaterTest(FILE_COMPLETE_MAR, false, false);
    19   setupAppFilesAsync();
    20 }
    22 function setupAppFilesFinished() {
    23   runUpdateUsingService(STATE_PENDING_SVC, STATE_SUCCEEDED, false);
    24 }
    26 function checkUpdateFinished() {
    27   checkFilesAfterUpdateSuccess();
    29   // We need to check the service log even though this is a bootstrap
    30   // because the app bin could be in use by this test by the time the next
    31   // test runs.
    32   checkCallbackServiceLog();
    33 }

mercurial