forked from mirrors/gecko-dev
This is because initializing the update service will be an asynchronous process. This is introduced later in this patch stack. Differential Revision: https://phabricator.services.mozilla.com/D209121
31 lines
1,001 B
JavaScript
31 lines
1,001 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
/* File in use inside removed dir complete MAR file patch apply success test */
|
|
|
|
async function run_test() {
|
|
if (!setupTestCommon()) {
|
|
return;
|
|
}
|
|
gTestFiles = gTestFilesCompleteSuccess;
|
|
gTestDirs = gTestDirsCompleteSuccess;
|
|
await setupUpdaterTest(FILE_COMPLETE_MAR, false);
|
|
await runHelperFileInUse(
|
|
gTestDirs[4].relPathDir +
|
|
gTestDirs[4].subDirs[0] +
|
|
gTestDirs[4].subDirFiles[0],
|
|
true
|
|
);
|
|
runUpdate(STATE_SUCCEEDED, false, 0, true);
|
|
await waitForHelperExit();
|
|
await checkPostUpdateAppLog();
|
|
await standardInit();
|
|
checkPostUpdateRunningFile(true);
|
|
checkFilesAfterUpdateSuccess(getApplyDirFile, false, true);
|
|
checkUpdateLogContains(ERR_BACKUP_DISCARD);
|
|
checkUpdateLogContains(STATE_SUCCEEDED + "\n" + CALL_QUIT);
|
|
await waitForUpdateXMLFiles();
|
|
await checkUpdateManager(STATE_NONE, false, STATE_SUCCEEDED, 0, 1);
|
|
checkCallbackLog();
|
|
}
|