mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-08 01:19:12 +00:00
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
function run_test() {
|
|
setupTestCommon();
|
|
|
|
logTestInfo("testing removal of an update download in progress for the " +
|
|
"same version of the application with the same application " +
|
|
"build id on startup (Bug 536547)");
|
|
|
|
var patches, updates;
|
|
|
|
patches = getLocalPatchString(null, null, null, null, null, null,
|
|
STATE_DOWNLOADING);
|
|
updates = getLocalUpdateString(patches, null, null, "version 1.0", "1.0", null,
|
|
"2007010101");
|
|
writeUpdatesToXMLFile(getLocalUpdatesXMLString(updates), true);
|
|
writeStatusFile(STATE_DOWNLOADING);
|
|
|
|
writeUpdatesToXMLFile(getLocalUpdatesXMLString(""), false);
|
|
|
|
standardInit();
|
|
|
|
if (IS_TOOLKIT_GONK) {
|
|
// Gonk doesn't resume downloads at boot time, so the update
|
|
// will remain active until the user chooses a new one, at
|
|
// which point, the old update will be removed.
|
|
do_check_neq(gUpdateManager.activeUpdate, null);
|
|
} else {
|
|
do_check_eq(gUpdateManager.activeUpdate, null);
|
|
}
|
|
do_check_eq(gUpdateManager.updateCount, 0);
|
|
|
|
doTestFinish();
|
|
}
|