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

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 /* Any copyright is dedicated to the Public Domain.
     2  * http://creativecommons.org/publicdomain/zero/1.0/
     3  */
     5 /* File locked complete MAR file patch apply failure test */
     7 function run_test() {
     8   if (!shouldRunServiceTest()) {
     9     return;
    10   }
    12   setupTestCommon();
    13   gTestFiles = gTestFilesCompleteSuccess;
    14   gTestDirs = gTestDirsCompleteSuccess;
    15   setTestFilesAndDirsForFailure();
    16   setupUpdaterTest(FILE_COMPLETE_MAR, false, false);
    18   // Exclusively lock an existing file so it is in use during the update.
    19   let helperBin = getTestDirFile(FILE_HELPER_BIN);
    20   let helperDestDir = getApplyDirFile("a/b/");
    21   helperBin.copyTo(helperDestDir, FILE_HELPER_BIN);
    22   helperBin = getApplyDirFile("a/b/" + FILE_HELPER_BIN);
    23   // Strip off the first two directories so the path has to be from the helper's
    24   // working directory.
    25   let lockFileRelPath = gTestFiles[3].relPathDir.split("/");
    26   lockFileRelPath = lockFileRelPath.slice(2);
    27   lockFileRelPath = lockFileRelPath.join("/") + "/" + gTestFiles[3].fileName;
    28   let args = [getApplyDirPath() + "a/b/", "input", "output", "-s",
    29               HELPER_SLEEP_TIMEOUT, lockFileRelPath];
    30   let lockFileProcess = AUS_Cc["@mozilla.org/process/util;1"].
    31                      createInstance(AUS_Ci.nsIProcess);
    32   lockFileProcess.init(helperBin);
    33   lockFileProcess.run(false, args, args.length);
    35   setupAppFilesAsync();
    36 }
    38 function setupAppFilesFinished() {
    39   do_timeout(TEST_HELPER_TIMEOUT, waitForHelperSleep);
    40 }
    42 function doUpdate() {
    43   runUpdateUsingService(STATE_PENDING_SVC, STATE_FAILED);
    44 }
    46 function checkUpdateFinished() {
    47   setupHelperFinish();
    48 }
    50 function checkUpdate() {
    51   checkFilesAfterUpdateFailure();
    52   checkUpdateLogContains(ERR_RENAME_FILE);
    53   checkCallbackServiceLog();
    54 }

mercurial