mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
114 lines
4.0 KiB
JavaScript
114 lines
4.0 KiB
JavaScript
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Mozilla Corporation.
|
|
*
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Dave Townsend <dtownsend@oxymoronical.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL
|
|
*
|
|
* ***** END LICENSE BLOCK *****
|
|
*/
|
|
|
|
const URI_EXTENSION_SELECT_DIALOG = "chrome://mozapps/content/extensions/selectAddons.xul";
|
|
const URI_EXTENSION_UPDATE_DIALOG = "chrome://mozapps/content/extensions/update.xul";
|
|
const PREF_EM_SHOW_MISMATCH_UI = "extensions.showMismatchUI";
|
|
const PREF_SHOWN_SELECTION_UI = "extensions.shownSelectionUI";
|
|
|
|
const profileDir = gProfD.clone();
|
|
profileDir.append("extensions");
|
|
|
|
var gExpectedURL = null;
|
|
|
|
// This will be called to show the any update dialog.
|
|
var WindowWatcher = {
|
|
openWindow: function(parent, url, name, features, arguments) {
|
|
do_check_eq(url, gExpectedURL);
|
|
gExpectedURL = null;
|
|
},
|
|
|
|
QueryInterface: function(iid) {
|
|
if (iid.equals(AM_Ci.nsIWindowWatcher)
|
|
|| iid.equals(AM_Ci.nsISupports))
|
|
return this;
|
|
|
|
throw Components.results.NS_ERROR_NO_INTERFACE;
|
|
}
|
|
}
|
|
|
|
var WindowWatcherFactory = {
|
|
createInstance: function createInstance(outer, iid) {
|
|
if (outer != null)
|
|
throw Components.results.NS_ERROR_NO_AGGREGATION;
|
|
return WindowWatcher.QueryInterface(iid);
|
|
}
|
|
};
|
|
|
|
var registrar = Components.manager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
|
|
registrar.registerFactory(Components.ID("{1dfeb90a-2193-45d5-9cb8-864928b2af55}"),
|
|
"Fake Window Watcher",
|
|
"@mozilla.org/embedcomp/window-watcher;1", WindowWatcherFactory);
|
|
|
|
// Tests that the selection UI is displayed when upgrading an existing profile
|
|
function run_test() {
|
|
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1");
|
|
|
|
Services.prefs.setBoolPref(PREF_EM_SHOW_MISMATCH_UI, true);
|
|
|
|
var dest = writeInstallRDFForExtension({
|
|
id: "addon1@tests.mozilla.org",
|
|
version: "1.0",
|
|
targetApplications: [{
|
|
id: "xpcshell@tests.mozilla.org",
|
|
minVersion: "1",
|
|
maxVersion: "1"
|
|
}],
|
|
name: "Test Addon 1",
|
|
}, profileDir);
|
|
|
|
startupManager();
|
|
|
|
// For a new profile it should disable showing the selection UI in the future
|
|
do_check_true(Services.prefs.getBoolPref(PREF_SHOWN_SELECTION_UI));
|
|
Services.prefs.clearUserPref(PREF_SHOWN_SELECTION_UI);
|
|
|
|
gExpectedURL = URI_EXTENSION_SELECT_DIALOG;
|
|
restartManager("2");
|
|
|
|
do_check_true(Services.prefs.getBoolPref(PREF_SHOWN_SELECTION_UI));
|
|
do_check_eq(gExpectedURL, null);
|
|
|
|
gExpectedURL = URI_EXTENSION_UPDATE_DIALOG;
|
|
|
|
restartManager("3");
|
|
|
|
do_check_eq(gExpectedURL, null);
|
|
}
|