Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'win' && (ccov || msix)
- Manifest: toolkit/mozapps/update/tests/unit_update_binary/xpcshell_base.toml
- Manifest: toolkit/mozapps/update/tests/unit_update_binary/xpcshell_service.toml
/* Any copyright is dedicated to the Public Domain.
*/
/* Application in use complete MAR file patch apply success test */
async function run_test() {
if (!setupTestCommon()) {
return;
}
gTestFiles = gTestFilesCompleteSuccess;
gTestDirs = gTestDirsCompleteSuccess;
await setupUpdaterTest(FILE_COMPLETE_MAR, false);
if (!gIsServiceTest) {
await runHelperFileInUse(DIR_MACOS + gCallbackBinFile, false);
} else {
await runHelperFileInUse(DIR_RESOURCES + gCallbackBinFile, false);
}
runUpdate(STATE_SUCCEEDED, false, 0, true);
await waitForHelperExit();
await checkPostUpdateAppLog();
checkAppBundleModTime();
await testPostUpdateProcessing();
checkPostUpdateRunningFile(true);
checkFilesAfterUpdateSuccess(getApplyDirFile);
checkUpdateLogContents(LOG_COMPLETE_SUCCESS);
await waitForUpdateXMLFiles();
await checkUpdateManager(STATE_NONE, false, STATE_SUCCEEDED, 0, 1);
checkCallbackLog();
}