mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 04:43:07 +09:00
56 lines
1.6 KiB
JavaScript
56 lines
1.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
/* File locked partial MAR file patch apply failure test */
|
|
|
|
function run_test() {
|
|
if (!setupTestCommon()) {
|
|
return;
|
|
}
|
|
gTestFiles = gTestFilesPartialSuccess;
|
|
gTestDirs = gTestDirsPartialSuccess;
|
|
setTestFilesAndDirsForFailure();
|
|
setupUpdaterTest(FILE_PARTIAL_MAR, false);
|
|
}
|
|
|
|
/**
|
|
* Called after the call to setupUpdaterTest finishes.
|
|
*/
|
|
function setupUpdaterTestFinished() {
|
|
runHelperLockFile(gTestFiles[2]);
|
|
}
|
|
|
|
/**
|
|
* Called after the call to waitForHelperSleep finishes.
|
|
*/
|
|
function waitForHelperSleepFinished() {
|
|
runUpdate(STATE_FAILED_READ_ERROR, false, 1, true);
|
|
}
|
|
|
|
/**
|
|
* Called after the call to runUpdate finishes.
|
|
*/
|
|
function runUpdateFinished() {
|
|
waitForHelperExit();
|
|
}
|
|
|
|
/**
|
|
* Called after the call to waitForHelperExit finishes.
|
|
*/
|
|
function waitForHelperExitFinished() {
|
|
standardInit();
|
|
Assert.equal(readStatusFile(), STATE_NONE,
|
|
"the status file failure code" + MSG_SHOULD_EQUAL);
|
|
Assert.equal(gUpdateManager.updateCount, 1,
|
|
"the update manager updateCount attribute" + MSG_SHOULD_EQUAL);
|
|
Assert.equal(gUpdateManager.getUpdateAt(0).state, STATE_FAILED,
|
|
"the update state" + MSG_SHOULD_EQUAL);
|
|
Assert.equal(gUpdateManager.getUpdateAt(0).errorCode, READ_ERROR,
|
|
"the update errorCode" + MSG_SHOULD_EQUAL);
|
|
checkPostUpdateRunningFile(false);
|
|
checkFilesAfterUpdateFailure(getApplyDirFile);
|
|
checkUpdateLogContains(ERR_UNABLE_OPEN_DEST);
|
|
checkUpdateLogContains(STATE_FAILED_READ_ERROR + "\n" + CALL_QUIT);
|
|
checkCallbackLog();
|
|
}
|