toolkit/mozapps/update/tests/unit_base_updater/marVersionDowngrade.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 4 */
michael@0 5
michael@0 6 /* Test version downgrade MAR security check */
michael@0 7
michael@0 8 function run_test() {
michael@0 9 if (!IS_MAR_CHECKS_ENABLED) {
michael@0 10 return;
michael@0 11 }
michael@0 12
michael@0 13 setupTestCommon();
michael@0 14 // We don't actually care if the MAR has any data, we only care about the
michael@0 15 // application return code and update.status result.
michael@0 16 gTestFiles = gTestFilesCommon;
michael@0 17 gTestDirs = [];
michael@0 18 setupUpdaterTest(FILE_OLD_VERSION_MAR, false, false);
michael@0 19
michael@0 20 // Apply the MAR
michael@0 21 // Note that if execv is used, the updater process will turn into the
michael@0 22 // callback process, so its return code will be that of the callback
michael@0 23 // app.
michael@0 24 runUpdate((USE_EXECV ? 0 : 1), STATE_FAILED_VERSION_DOWNGRADE_ERROR);
michael@0 25 }
michael@0 26
michael@0 27 function checkUpdateApplied() {
michael@0 28 checkFilesAfterUpdateSuccess();
michael@0 29 doTestFinish();
michael@0 30 }

mercurial