From deea787c2efbb9c89caec8d9efc023ffafe75613 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sat, 10 Feb 2018 04:00:58 -0500 Subject: Import Tycho's Add-on Manager --- .../extensions/test/xpcshell/test_bug324121.js | 178 +++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 toolkit/mozapps/extensions/test/xpcshell/test_bug324121.js (limited to 'toolkit/mozapps/extensions/test/xpcshell/test_bug324121.js') diff --git a/toolkit/mozapps/extensions/test/xpcshell/test_bug324121.js b/toolkit/mozapps/extensions/test/xpcshell/test_bug324121.js new file mode 100644 index 000000000..b88c07b23 --- /dev/null +++ b/toolkit/mozapps/extensions/test/xpcshell/test_bug324121.js @@ -0,0 +1,178 @@ +/* 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/. + */ + +// Disables security checking our updates which haven't been signed +Services.prefs.setBoolPref("extensions.checkUpdateSecurity", false); + +// Get the HTTP server. +Components.utils.import("resource://testing-common/httpd.js"); +var testserver; + +var next_test = null; +var gItemsNotChecked =[]; + +var ADDONS = [ {id: "bug324121_1@tests.mozilla.org", + addon: "test_bug324121_1", + shouldCheck: false }, + {id: "bug324121_2@tests.mozilla.org", + addon: "test_bug324121_2", + shouldCheck: true }, + {id: "bug324121_3@tests.mozilla.org", + addon: "test_bug324121_3", + shouldCheck: true }, + {id: "bug324121_4@tests.mozilla.org", + addon: "test_bug324121_4", + shouldCheck: true }, + {id: "bug324121_5@tests.mozilla.org", + addon: "test_bug324121_5", + shouldCheck: false }, + {id: "bug324121_6@tests.mozilla.org", + addon: "test_bug324121_6", + shouldCheck: true }, + {id: "bug324121_7@tests.mozilla.org", + addon: "test_bug324121_7", + shouldCheck: true }, + {id: "bug324121_8@tests.mozilla.org", + addon: "test_bug324121_8", + shouldCheck: true }, + {id: "bug324121_9@tests.mozilla.org", + addon: "test_bug324121_9", + shouldCheck: false } ]; + +// nsIAddonUpdateCheckListener +var updateListener = { + pendingCount: 0, + + onUpdateAvailable: function onAddonUpdateEnded(aAddon) { + switch (aAddon.id) { + // add-on disabled - should not happen + case "bug324121_1@tests.mozilla.org": + // app id already compatible - should not happen + case "bug324121_5@tests.mozilla.org": + // toolkit id already compatible - should not happen + case "bug324121_9@tests.mozilla.org": + do_throw("Should not have seen an update check for " + aAddon.id); + break; + + // app id incompatible update available + case "bug324121_3@tests.mozilla.org": + // update rdf not found + case "bug324121_4@tests.mozilla.org": + // toolkit id incompatible update available + case "bug324121_7@tests.mozilla.org": + // update rdf not found + case "bug324121_8@tests.mozilla.org": + do_throw("Should be no update available for " + aAddon.id); + break; + + // Updates available + case "bug324121_2@tests.mozilla.org": + case "bug324121_6@tests.mozilla.org": + break; + + default: + do_throw("Update check for unknown " + aAddon.id); + } + + // pos should always be >= 0 so just let this throw if this fails + var pos = gItemsNotChecked.indexOf(aAddon.id); + gItemsNotChecked.splice(pos, 1); + }, + + onNoUpdateAvailable: function onNoUpdateAvailable(aAddon) { + switch (aAddon.id) { + // add-on disabled - should not happen + case "bug324121_1@tests.mozilla.org": + // app id already compatible - should not happen + case "bug324121_5@tests.mozilla.org": + // toolkit id already compatible - should not happen + case "bug324121_9@tests.mozilla.org": + do_throw("Should not have seen an update check for " + aAddon.id); + break; + + // app id incompatible update available + case "bug324121_3@tests.mozilla.org": + // update rdf not found + case "bug324121_4@tests.mozilla.org": + // toolkit id incompatible update available + case "bug324121_7@tests.mozilla.org": + // update rdf not found + case "bug324121_8@tests.mozilla.org": + break; + + // Updates available + case "bug324121_2@tests.mozilla.org": + case "bug324121_6@tests.mozilla.org": + do_throw("Should be an update available for " + aAddon.id); + break; + + default: + do_throw("Update check for unknown " + aAddon.id); + } + + // pos should always be >= 0 so just let this throw if this fails + var pos = gItemsNotChecked.indexOf(aAddon.id); + gItemsNotChecked.splice(pos, 1); + }, + + onUpdateFinished: function onUpdateFinished(aAddon) { + if (--this.pendingCount == 0) + test_complete(); + } +}; + +function run_test() { + do_test_pending(); + createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "2", "2"); + + const dataDir = do_get_file("data"); + + // Create and configure the HTTP server. + testserver = new HttpServer(); + testserver.registerDirectory("/data/", dataDir); + testserver.start(4444); + + startupManager(); + + installAllFiles([do_get_addon(a.addon) for each (a in ADDONS)], function() { + restartManager(); + AddonManager.getAddonByID(ADDONS[0].id, callback_soon(function(addon) { + do_check_true(!(!addon)); + addon.userDisabled = true; + restartManager(); + + AddonManager.getAddonsByTypes(["extension"], function(installedItems) { + var items = []; + + for (let addon of ADDONS) { + for (let installedItem of installedItems) { + if (addon.id != installedItem.id) + continue; + if (installedItem.userDisabled) + continue; + + if (addon.shouldCheck == installedItem.isCompatibleWith("3", "3")) { + do_throw(installedItem.id + " had the wrong compatibility: " + + installedItem.isCompatibleWith("3", "3")); + } + + if (addon.shouldCheck) { + gItemsNotChecked.push(addon.id); + updateListener.pendingCount++; + installedItem.findUpdates(updateListener, + AddonManager.UPDATE_WHEN_USER_REQUESTED, + "3", "3"); + } + } + } + }); + })); + }); +} + +function test_complete() { + do_check_eq(gItemsNotChecked.length, 0); + testserver.stop(do_test_finished); +} -- cgit v1.2.3