Bug 1324192 - split system addon update tests into expected pass / expected fail to avoid timeouts r?aswan draft
authorRobert Helmer <rhelmer@mozilla.com>
Thu, 02 Mar 2017 14:56:07 -0800
changeset 494505 8bda90047f5843374fdb98e7082e3da9092da751
parent 494504 e07305675ca4b43049380895a95cfd8daadd0149
child 548108 02ce14498518e26aec5d478364a945a12940c6cf
push id48040
push userrhelmer@mozilla.com
push dateTue, 07 Mar 2017 06:33:28 +0000
reviewersaswan
bugs1324192
milestone54.0a1
Bug 1324192 - split system addon update tests into expected pass / expected fail to avoid timeouts r?aswan MozReview-Commit-ID: 7q6JUEOkuxC
toolkit/mozapps/extensions/test/xpcshell/test_system_update_fail.js
toolkit/mozapps/extensions/test/xpcshell/xpcshell.ini
copy from toolkit/mozapps/extensions/test/xpcshell/test_system_update.js
copy to toolkit/mozapps/extensions/test/xpcshell/test_system_update_fail.js
--- a/toolkit/mozapps/extensions/test/xpcshell/test_system_update.js
+++ b/toolkit/mozapps/extensions/test/xpcshell/test_system_update_fail.js
@@ -1,9 +1,9 @@
-// Tests that system add-on upgrades work.
+// Tests that system add-on upgrades fail to upgrade in expected cases.
 
 Components.utils.import("resource://testing-common/httpd.js");
 
 BootstrapMonitor.init();
 
 createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "2");
 
 var testserver = new HttpServer();
@@ -95,209 +95,77 @@ const TEST_CONDITIONS = {
  * test:       A function to run to perform the update check (replaces
  *             updateList)
  * fails:      An optional property, if true the update check is expected to
  *             fail.
  * finalState: An optional property, the expected final state of system add-ons,
  *             if missing the test condition's initialState is used.
  */
 const TESTS = {
-  // Test that a blank response does nothing
-  blank: {
-    updateList: null,
+  // Specifying an incorrect version should stop us updating anything
+  badVersion: {
+    fails: true,
+    updateList: [
+      { id: "system2@tests.mozilla.org", version: "4.0", path: "system2_3.xpi" },
+      { id: "system3@tests.mozilla.org", version: "3.0", path: "system3_3.xpi" }
+    ],
   },
 
-  // Test that an empty list removes existing updates, leaving defaults.
-  empty: {
-    updateList: [],
-    finalState: {
-      blank: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null}
-      ],
-      withAppSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: "2.0"},
-        { isUpgrade: false, version: "2.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null}
-      ],
-      withProfileSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null}
-      ],
-      withBothSets: [
-        { isUpgrade: false, version: "1.0"},
-        { isUpgrade: false, version: "1.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        // Set this to `true` to so `verifySystemAddonState()` expects a blank profile dir
-        { isUpgrade: true, version: null}
-      ]
-    },
-  },
-  // Tests that a new set of system add-ons gets installed
-  newset: {
+  // Specifying an invalid size should stop us updating anything
+  badSize: {
+    fails: true,
     updateList: [
-      { id: "system4@tests.mozilla.org", version: "1.0", path: "system4_1.xpi" },
-      { id: "system5@tests.mozilla.org", version: "1.0", path: "system5_1.xpi" }
-    ],
-    finalState: {
-      blank: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: true, version: "1.0"}
-      ],
-      withAppSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: "2.0"},
-        { isUpgrade: false, version: "2.0"},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: true, version: "1.0"}
-      ],
-      withProfileSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: true, version: "1.0"}
-      ],
-      withBothSets: [
-        { isUpgrade: false, version: "1.0"},
-        { isUpgrade: false, version: "1.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: true, version: "1.0"}
-      ]
-    }
-  },
-
-  // Tests that an upgraded set of system add-ons gets installed
-  upgrades: {
-    updateList: [
-      { id: "system2@tests.mozilla.org", version: "3.0", path: "system2_3.xpi" },
+      { id: "system2@tests.mozilla.org", version: "3.0", path: "system2_3.xpi", size: 2 },
       { id: "system3@tests.mozilla.org", version: "3.0", path: "system3_3.xpi" }
     ],
-    finalState: {
-      blank: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null}
-      ],
-      withAppSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null}
-      ],
-      withProfileSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null}
-      ],
-      withBothSets: [
-        { isUpgrade: false, version: "1.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: false, version: null}
-      ]
-    }
+  },
+
+  // Specifying an incorrect hash should stop us updating anything
+  badHash: {
+    fails: true,
+    updateList: [
+      { id: "system2@tests.mozilla.org", version: "3.0", path: "system2_3.xpi" },
+      { id: "system3@tests.mozilla.org", version: "3.0", path: "system3_3.xpi", hashFunction: "sha1", hashValue: "205a4c49bd513ebd30594e380c19e86bba1f83e2" }
+    ],
+  },
+
+  // A bad certificate should stop updates
+  badCert: {
+    fails: true,
+    updateList: [
+      { id: "system1@tests.mozilla.org", version: "1.0", path: "system1_1_badcert.xpi" },
+      { id: "system3@tests.mozilla.org", version: "1.0", path: "system3_1.xpi" }
+    ],
   },
 
-  // Tests that a set of system add-ons, some new, some existing gets installed
-  overlapping: {
+  // An unpacked add-on should stop updates.
+  notPacked: {
+    fails: true,
     updateList: [
-      { id: "system1@tests.mozilla.org", version: "2.0", path: "system1_2.xpi" },
-      { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-      { id: "system3@tests.mozilla.org", version: "3.0", path: "system3_3.xpi" },
-      { id: "system4@tests.mozilla.org", version: "1.0", path: "system4_1.xpi" }
+      { id: "system6@tests.mozilla.org", version: "1.0", path: "system6_1_unpack.xpi" },
+      { id: "system3@tests.mozilla.org", version: "1.0", path: "system3_1.xpi" }
     ],
-    finalState: {
-      blank: [
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: false, version: null}
-      ],
-      withAppSet: [
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: false, version: null}
-      ],
-      withProfileSet: [
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: false, version: null}
-      ],
-      withBothSets: [
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "2.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "1.0"},
-        { isUpgrade: false, version: null}
-      ]
-    }
   },
 
-  // Correct sizes and hashes should work
-  checkSizeHash: {
+  // A non-bootstrap add-on should stop updates.
+  notBootstrap: {
+    fails: true,
     updateList: [
-      { id: "system2@tests.mozilla.org", version: "3.0", path: "system2_3.xpi", size: 4697 },
-      { id: "system3@tests.mozilla.org", version: "3.0", path: "system3_3.xpi", hashFunction: "sha1", hashValue: "a4c7198d56deb315511c02937fd96c696de6cb84" },
-      { id: "system5@tests.mozilla.org", version: "1.0", path: "system5_1.xpi", size: 4691, hashFunction: "sha1", hashValue: "6887b916a1a9a5338b0df4181f6187f5396861eb" }
+      { id: "system6@tests.mozilla.org", version: "1.0", path: "system6_2_notBootstrap.xpi" },
+      { id: "system3@tests.mozilla.org", version: "1.0", path: "system3_1.xpi" }
     ],
-    finalState: {
-      blank: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "1.0"}
-      ],
-      withAppSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "1.0"}
-      ],
-      withProfileSet: [
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "1.0"}
-      ],
-      withBothSets: [
-        { isUpgrade: false, version: "1.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: true, version: "3.0"},
-        { isUpgrade: false, version: null},
-        { isUpgrade: true, version: "1.0"}
-      ]
-    }
+  },
+
+  // A non-multiprocess add-on should stop updates.
+  notMultiprocess: {
+    fails: true,
+    updateList: [
+      { id: "system6@tests.mozilla.org", version: "1.0", path: "system6_3_notMultiprocess.xpi" },
+      { id: "system3@tests.mozilla.org", version: "1.0", path: "system3_1.xpi" }
+    ],
   }
 }
 
 add_task(function* setup() {
   // Initialise the profile
   startupManager();
   yield promiseShutdownManager();
 });
@@ -305,196 +173,12 @@ add_task(function* setup() {
 add_task(function*() {
   for (let setupName of Object.keys(TEST_CONDITIONS)) {
     for (let testName of Object.keys(TESTS)) {
         do_print("Running test " + setupName + " " + testName);
 
         let setup = TEST_CONDITIONS[setupName];
         let test = TESTS[testName];
 
-        yield execSystemAddonTest(setupName, setup, test, distroDir, root, testserver);
+        yield execSystemAddonTest(setupName, setup, test, distroDir);
     }
   }
 });
-
-// Some custom tests
-// Test that the update check is performed as part of the regular add-on update
-// check
-add_task(function* test_addon_update() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.blank, distroDir);
-
-  yield updateAllSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-    { id: "system3@tests.mozilla.org", version: "2.0", path: "system3_2.xpi" }
-  ], root), testserver);
-
-  yield verifySystemAddonState(TEST_CONDITIONS.blank.initialState, [
-    {isUpgrade: false, version: null},
-    {isUpgrade: true, version: "2.0"},
-    {isUpgrade: true, version: "2.0"},
-    {isUpgrade: false, version: null},
-    {isUpgrade: false, version: null}
-  ], false, distroDir);
-
-  yield promiseShutdownManager();
-});
-
-// Disabling app updates should block system add-on updates
-add_task(function* test_app_update_disabled() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.blank, distroDir);
-
-  Services.prefs.setBoolPref(PREF_APP_UPDATE_ENABLED, false);
-  yield updateAllSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-    { id: "system3@tests.mozilla.org", version: "2.0", path: "system3_2.xpi" }
-  ], root), testserver);
-  Services.prefs.clearUserPref(PREF_APP_UPDATE_ENABLED);
-
-  yield verifySystemAddonState(TEST_CONDITIONS.blank.initialState, undefined, false, distroDir);
-
-  yield promiseShutdownManager();
-});
-
-// Safe mode should block system add-on updates
-add_task(function* test_safe_mode() {
-  gAppInfo.inSafeMode = true;
-
-  yield setupSystemAddonConditions(TEST_CONDITIONS.blank, distroDir);
-
-  Services.prefs.setBoolPref(PREF_APP_UPDATE_ENABLED, false);
-  yield updateAllSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-    { id: "system3@tests.mozilla.org", version: "2.0", path: "system3_2.xpi" }
-  ], root), testserver);
-  Services.prefs.clearUserPref(PREF_APP_UPDATE_ENABLED);
-
-  yield verifySystemAddonState(TEST_CONDITIONS.blank.initialState, undefined, false, distroDir);
-
-  yield promiseShutdownManager();
-
-  gAppInfo.inSafeMode = false;
-});
-
-// Tests that a set that matches the default set does nothing
-add_task(function* test_match_default() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.withAppSet, distroDir);
-
-  yield installSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-    { id: "system3@tests.mozilla.org", version: "2.0", path: "system3_2.xpi" }
-  ], root), testserver);
-
-  // Shouldn't have installed an updated set
-  yield verifySystemAddonState(TEST_CONDITIONS.withAppSet.initialState, undefined, false, distroDir);
-
-  yield promiseShutdownManager();
-});
-
-// Tests that a set that matches the hidden default set works
-add_task(function* test_match_default_revert() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.withBothSets, distroDir);
-
-  yield installSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system1@tests.mozilla.org", version: "1.0", path: "system1_1.xpi" },
-    { id: "system2@tests.mozilla.org", version: "1.0", path: "system2_1.xpi" }
-  ], root), testserver);
-
-  // This should revert to the default set instead of installing new versions
-  // into an updated set.
-  yield verifySystemAddonState(TEST_CONDITIONS.withBothSets.initialState, [
-    {isUpgrade: false, version: "1.0"},
-    {isUpgrade: false, version: "1.0"},
-    {isUpgrade: false, version: null},
-    {isUpgrade: false, version: null},
-    {isUpgrade: false, version: null}
-  ], false, distroDir);
-
-  yield promiseShutdownManager();
-});
-
-// Tests that a set that matches the current set works
-add_task(function* test_match_current() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.withBothSets, distroDir);
-
-  yield installSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-    { id: "system3@tests.mozilla.org", version: "2.0", path: "system3_2.xpi" }
-  ], root), testserver);
-
-  // This should remain with the current set instead of creating a new copy
-  let set = JSON.parse(Services.prefs.getCharPref(PREF_SYSTEM_ADDON_SET));
-  do_check_eq(set.directory, "prefilled");
-
-  yield verifySystemAddonState(TEST_CONDITIONS.withBothSets.initialState, undefined, false, distroDir);
-
-  yield promiseShutdownManager();
-});
-
-// Tests that a set with a minor change doesn't re-download existing files
-add_task(function* test_no_download() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.withBothSets, distroDir);
-
-  // The missing file here is unneeded since there is a local version already
-  yield installSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "missing.xpi" },
-    { id: "system4@tests.mozilla.org", version: "1.0", path: "system4_1.xpi" }
-  ], root), testserver);
-
-  yield verifySystemAddonState(TEST_CONDITIONS.withBothSets.initialState, [
-    {isUpgrade: false, version: "1.0"},
-    {isUpgrade: true, version: "2.0"},
-    {isUpgrade: false, version: null},
-    {isUpgrade: true, version: "1.0"},
-    {isUpgrade: false, version: null}
-  ], false, distroDir);
-
-  yield promiseShutdownManager();
-});
-
-// Tests that a second update before a restart works
-add_task(function* test_double_update() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.withAppSet, distroDir);
-
-  yield installSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-    { id: "system3@tests.mozilla.org", version: "1.0", path: "system3_1.xpi" }
-  ], root), testserver);
-
-  yield installSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system3@tests.mozilla.org", version: "2.0", path: "system3_2.xpi" },
-    { id: "system4@tests.mozilla.org", version: "1.0", path: "system4_1.xpi" }
-  ], root), testserver);
-
-  yield verifySystemAddonState(TEST_CONDITIONS.withAppSet.initialState, [
-    {isUpgrade: false, version: null},
-    {isUpgrade: false, version: "2.0"},
-    {isUpgrade: true, version: "2.0"},
-    {isUpgrade: true, version: "1.0"},
-    {isUpgrade: false, version: null}
-  ], true, distroDir);
-
-  yield promiseShutdownManager();
-});
-
-// A second update after a restart will delete the original unused set
-add_task(function* test_update_purges() {
-  yield setupSystemAddonConditions(TEST_CONDITIONS.withBothSets, distroDir);
-
-  yield installSystemAddons(yield buildSystemAddonUpdates([
-    { id: "system2@tests.mozilla.org", version: "2.0", path: "system2_2.xpi" },
-    { id: "system3@tests.mozilla.org", version: "1.0", path: "system3_1.xpi" }
-  ], root), testserver);
-
-  yield verifySystemAddonState(TEST_CONDITIONS.withBothSets.initialState, [
-    {isUpgrade: false, version: "1.0"},
-    {isUpgrade: true, version: "2.0"},
-    {isUpgrade: true, version: "1.0"},
-    {isUpgrade: false, version: null},
-    {isUpgrade: false, version: null}
-  ], false, distroDir);
-
-  yield installSystemAddons(yield buildSystemAddonUpdates(null), testserver);
-
-  let dirs = yield getSystemAddonDirectories();
-  do_check_eq(dirs.length, 1);
-
-  yield promiseShutdownManager();
-});
--- a/toolkit/mozapps/extensions/test/xpcshell/xpcshell.ini
+++ b/toolkit/mozapps/extensions/test/xpcshell/xpcshell.ini
@@ -23,16 +23,17 @@ skip-if = appname != "firefox"
 [test_pluginInfoURL.js]
 [test_provider_markSafe.js]
 [test_provider_shutdown.js]
 [test_provider_unsafe_access_shutdown.js]
 [test_provider_unsafe_access_startup.js]
 [test_ProductAddonChecker.js]
 [test_shutdown.js]
 [test_system_update.js]
+[test_system_update_fail.js]
 [test_system_reset.js]
 [test_XPIcancel.js]
 [test_XPIStates.js]
 [test_temporary.js]
 tags = webextensions
 [test_install_from_sources.js]
 [test_proxies.js]
 [test_proxy.js]