mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d7b6ac5f86
--HG-- rename : toolkit/mozapps/update/test/unit/data/aus-0110_general.mar => toolkit/mozapps/update/test/unit/data/complete.mar rename : toolkit/mozapps/update/test/unit/data/aus-0110_general_ref_image.png => toolkit/mozapps/update/test/unit/data/complete.png rename : toolkit/mozapps/update/test/unit/data/aus-0111_general.mar => toolkit/mozapps/update/test/unit/data/partial.mar rename : toolkit/mozapps/update/test/unit/data/aus-0111_general_ref_image.png => toolkit/mozapps/update/test/unit/data/partial.png
157 lines
5.5 KiB
JavaScript
157 lines
5.5 KiB
JavaScript
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* the Mozilla Foundation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2008
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Robert Strong <robert.bugzilla@gmail.com> (Original Author)
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK *****
|
|
*/
|
|
|
|
/* General Complete MAR File Patch Apply Test */
|
|
|
|
const TEST_ID = "0110";
|
|
// All we care about is that the last modified time has changed so that Mac OS
|
|
// X Launch Services invalidates its cache so the test allows up to one minute
|
|
// difference in the last modified time.
|
|
const MAX_TIME_DIFFERENCE = 60000;
|
|
|
|
// The files are in the same order as they are applied from the mar
|
|
const TEST_FILES = [
|
|
{
|
|
fileName : "1_1_image1.png",
|
|
destinationDir : TEST_ID + APPLY_TO_DIR_SUFFIX + "/mar_test/1/1_1/",
|
|
originalContents : null,
|
|
compareContents : null,
|
|
originalFile : null,
|
|
compareFile : "data/complete.png",
|
|
originalPerms : 0776,
|
|
comparePerms : 0644
|
|
}, {
|
|
fileName : "1_1_text1",
|
|
destinationDir : TEST_ID + APPLY_TO_DIR_SUFFIX + "/mar_test/1/1_1/",
|
|
originalContents : "ToBeReplacedWithToBeModified\n",
|
|
compareContents : "ToBeModified\n",
|
|
originalFile : null,
|
|
compareFile : null,
|
|
originalPerms : 0775,
|
|
comparePerms : 0644
|
|
}, {
|
|
fileName : "1_1_text2",
|
|
destinationDir : TEST_ID + APPLY_TO_DIR_SUFFIX + "/mar_test/1/1_1/",
|
|
originalContents : "ToBeReplacedWithToBeDeleted\n",
|
|
compareContents : "ToBeDeleted\n",
|
|
originalFile : null,
|
|
compareFile : null,
|
|
originalPerms : 0677,
|
|
comparePerms : 0644
|
|
}, {
|
|
fileName : "1_exe1.exe",
|
|
destinationDir : TEST_ID + APPLY_TO_DIR_SUFFIX + "/mar_test/1/",
|
|
originalContents : null,
|
|
compareContents : null,
|
|
originalFile : "data/partial.png",
|
|
compareFile : "data/complete.png",
|
|
originalPerms : 0777,
|
|
comparePerms : 0755
|
|
}, {
|
|
fileName : "2_1_text1",
|
|
destinationDir : TEST_ID + APPLY_TO_DIR_SUFFIX + "/mar_test/2/2_1/",
|
|
originalContents : "ToBeReplacedWithToBeDeleted\n",
|
|
compareContents : "ToBeDeleted\n",
|
|
originalFile : null,
|
|
compareFile : null,
|
|
originalPerms : 0767,
|
|
comparePerms : 0644
|
|
}];
|
|
|
|
function run_test() {
|
|
if (IS_ANDROID) {
|
|
logTestInfo("this test is not applicable to Android... returning early");
|
|
return;
|
|
}
|
|
|
|
do_test_pending();
|
|
do_register_cleanup(end_test);
|
|
|
|
setupUpdaterTest(TEST_ID, MAR_COMPLETE_FILE, TEST_FILES);
|
|
|
|
// The testUpdate function is used for consistency with the tests that require
|
|
// a timeout before continuing the test.
|
|
testUpdate();
|
|
}
|
|
|
|
function end_test() {
|
|
cleanupUpdaterTest(TEST_ID);
|
|
}
|
|
|
|
function testUpdate() {
|
|
let updatesDir = do_get_file(TEST_ID + UPDATES_DIR_SUFFIX);
|
|
let applyToDir = do_get_file(TEST_ID + APPLY_TO_DIR_SUFFIX);
|
|
|
|
// For Mac OS X set the last modified time for the root directory to a date in
|
|
// the past to test that the last modified time is updated on a successful
|
|
// update (bug 600098).
|
|
if (IS_MACOSX) {
|
|
let now = Date.now();
|
|
let yesterday = now - (1000 * 60 * 60 * 24);
|
|
applyToDir.lastModifiedTime = yesterday;
|
|
}
|
|
|
|
// apply the complete mar
|
|
let exitValue = runUpdate(TEST_ID);
|
|
logTestInfo("testing updater binary process exitValue for success when " +
|
|
"applying a complete mar");
|
|
do_check_eq(exitValue, 0);
|
|
|
|
logTestInfo("testing update.status should be " + STATE_SUCCEEDED);
|
|
do_check_eq(readStatusFile(updatesDir), STATE_SUCCEEDED);
|
|
|
|
// For Mac OS X check that the last modified time for a directory has been
|
|
// updated after a successful update (bug 600098).
|
|
if (IS_MACOSX) {
|
|
logTestInfo("testing last modified time on the apply to directory has " +
|
|
"changed after a successful update (bug 600098)");
|
|
let now = Date.now();
|
|
let timeDiff = Math.abs(applyToDir.lastModifiedTime - now);
|
|
do_check_true(timeDiff < MAX_TIME_DIFFERENCE);
|
|
}
|
|
|
|
checkFilesAfterUpdateSuccess(TEST_ID, TEST_FILES);
|
|
|
|
logTestInfo("testing tobedeleted directory doesn't exist");
|
|
let toBeDeletedDir = applyToDir.clone();
|
|
toBeDeletedDir.append("tobedeleted");
|
|
do_check_false(toBeDeletedDir.exists());
|
|
|
|
checkCallbackAppLog(TEST_ID);
|
|
}
|