toolkit/mozapps/update/tests/unit_service_updater/marFileInUseSuccessCompleteSvc_win.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 /* File in use complete MAR file patch apply success test */
     7 function run_test() {
     8   if (!shouldRunServiceTest()) {
     9     return;
    10   }
    12   setupTestCommon();
    13   gTestFiles = gTestFilesCompleteSuccess;
    14   gTestDirs = gTestDirsCompleteSuccess;
    15   setupUpdaterTest(FILE_COMPLETE_MAR, false, true);
    17   // Launch an existing file so it is in use during the update.
    18   let fileInUseBin = getApplyDirFile(gTestFiles[13].relPathDir +
    19                                      gTestFiles[13].fileName);
    20   let args = [getApplyDirPath() + "a/b/", "input", "output", "-s",
    21               HELPER_SLEEP_TIMEOUT];
    22   let fileInUseProcess = AUS_Cc["@mozilla.org/process/util;1"].
    23                          createInstance(AUS_Ci.nsIProcess);
    24   fileInUseProcess.init(fileInUseBin);
    25   fileInUseProcess.run(false, args, args.length);
    27   setupAppFilesAsync();
    28 }
    30 function setupAppFilesFinished() {
    31   do_timeout(TEST_HELPER_TIMEOUT, waitForHelperSleep);
    32 }
    34 function doUpdate() {
    35   runUpdateUsingService(STATE_PENDING_SVC, STATE_SUCCEEDED);
    36 }
    38 function checkUpdateFinished() {
    39   setupHelperFinish();
    40 }
    42 function checkUpdate() {
    43   checkFilesAfterUpdateSuccess();
    44   checkUpdateLogContains(ERR_BACKUP_DISCARD);
    45   checkCallbackServiceLog();
    46 }

mercurial