1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
const gHttpTestRoot = "http://127.0.0.1:8888/" + RELATIVE_DIR + "/";
function updateBlocklist(aCallback) {
var blocklistNotifier = Cc["@mozilla.org/extensions/blocklist;1"]
.getService(Ci.nsITimerCallback);
var observer = function() {
Services.obs.removeObserver(observer, "blocklist-updated");
SimpleTest.executeSoon(aCallback);
};
Services.obs.addObserver(observer, "blocklist-updated", false);
blocklistNotifier.notify(null);
}
var _originalBlocklistURL = null;
function setAndUpdateBlocklist(aURL, aCallback) {
if (!_originalBlocklistURL) {
_originalBlocklistURL = Services.prefs.getCharPref("extensions.blocklist.url");
}
Services.prefs.setCharPref("extensions.blocklist.url", aURL);
updateBlocklist(aCallback);
}
function resetBlocklist(aCallback) {
Services.prefs.setCharPref("extensions.blocklist.url", _originalBlocklistURL);
}
add_task(function*() {
SpecialPowers.pushPrefEnv({"set": [
["plugins.click_to_play", true],
["extensions.blocklist.suppressUI", true]
]});
registerCleanupFunction(function*() {
let pluginTag = getTestPluginTag();
pluginTag.enabledState = Ci.nsIPluginTag.STATE_ENABLED;
yield new Promise(resolve => {
setAndUpdateBlocklist(gHttpTestRoot + "blockNoPlugins.xml", resolve);
});
resetBlocklist();
});
let pluginTag = getTestPluginTag();
pluginTag.enabledState = Ci.nsIPluginTag.STATE_CLICKTOPLAY;
let managerWindow = yield new Promise(resolve => open_manager("addons://list/plugin", resolve));
let plugins = yield new Promise(resolve => AddonManager.getAddonsByTypes(["plugin"], resolve));
let testPluginId;
for (let plugin of plugins) {
if (plugin.name == "Test Plug-in") {
testPluginId = plugin.id;
break;
}
}
ok(testPluginId, "part2: Test Plug-in should exist");
let testPlugin = yield new Promise(resolve => AddonManager.getAddonByID(testPluginId, resolve));
let pluginEl = get_addon_element(managerWindow, testPluginId);
pluginEl.parentNode.ensureElementIsVisible(pluginEl);
let enableButton = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "enable-btn");
is_element_hidden(enableButton, "part3: enable button should not be visible");
let disableButton = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "enable-btn");
is_element_hidden(disableButton, "part3: disable button should not be visible");
let menu = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "state-menulist");
is_element_visible(menu, "part3: state menu should be visible");
let askToActivateItem = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "ask-to-activate-menuitem");
is(menu.selectedItem, askToActivateItem, "part3: state menu should have 'Ask To Activate' selected");
let pluginTab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, gHttpTestRoot + "plugin_test.html");
let pluginBrowser = pluginTab.linkedBrowser;
let condition = () => PopupNotifications.getNotification("click-to-play-plugins", pluginBrowser);
yield BrowserTestUtils.waitForCondition(condition, "part4: should have a click-to-play notification");
yield BrowserTestUtils.removeTab(pluginTab);
let alwaysActivateItem = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "always-activate-menuitem");
menu.selectedItem = alwaysActivateItem;
alwaysActivateItem.doCommand();
pluginTab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, gHttpTestRoot + "plugin_test.html");
yield ContentTask.spawn(pluginTab.linkedBrowser, null, function*() {
let testPlugin = content.document.getElementById("test");
ok(testPlugin, "part5: should have a plugin element in the page");
let objLoadingContent = testPlugin.QueryInterface(Ci.nsIObjectLoadingContent);
let condition = () => objLoadingContent.activated;
yield ContentTaskUtils.waitForCondition(condition, "part5: waited too long for plugin to activate");
ok(objLoadingContent.activated, "part6: plugin should be activated");
});
yield BrowserTestUtils.removeTab(pluginTab);
let neverActivateItem = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "never-activate-menuitem");
menu.selectedItem = neverActivateItem;
neverActivateItem.doCommand();
pluginTab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, gHttpTestRoot + "plugin_test.html");
pluginBrowser = pluginTab.linkedBrowser;
yield ContentTask.spawn(pluginTab.linkedBrowser, null, function*() {
let testPlugin = content.document.getElementById("test");
ok(testPlugin, "part7: should have a plugin element in the page");
let objLoadingContent = testPlugin.QueryInterface(Ci.nsIObjectLoadingContent);
ok(!objLoadingContent.activated, "part7: plugin should not be activated");
});
yield BrowserTestUtils.removeTab(pluginTab);
let details = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "details-btn");
is_element_visible(details, "part7: details link should be visible");
EventUtils.synthesizeMouseAtCenter(details, {}, managerWindow);
yield BrowserTestUtils.waitForEvent(managerWindow.document, "ViewChanged");
is_element_hidden(enableButton, "part8: detail enable button should be hidden");
is_element_hidden(disableButton, "part8: detail disable button should be hidden");
is_element_visible(menu, "part8: detail state menu should be visible");
is(menu.selectedItem, neverActivateItem, "part8: state menu should have 'Never Activate' selected");
menu.selectedItem = alwaysActivateItem;
alwaysActivateItem.doCommand();
pluginTab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, gHttpTestRoot + "plugin_test.html");
pluginBrowser = pluginTab.linkedBrowser;
yield ContentTask.spawn(pluginTab.linkedBrowser, null, function*() {
let testPlugin = content.document.getElementById("test");
ok(testPlugin, "part9: should have a plugin element in the page");
let objLoadingContent = testPlugin.QueryInterface(Ci.nsIObjectLoadingContent);
let condition = () => objLoadingContent.activated;
yield ContentTaskUtils.waitForCondition(condition, "part9: waited too long for plugin to activate");
ok(objLoadingContent.activated, "part10: plugin should be activated");
});
yield BrowserTestUtils.removeTab(pluginTab);
menu.selectedItem = askToActivateItem;
askToActivateItem.doCommand();
pluginTab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, gHttpTestRoot + "plugin_test.html");
pluginBrowser = pluginTab.linkedBrowser;
condition = () => PopupNotifications.getNotification("click-to-play-plugins", pluginBrowser);
yield BrowserTestUtils.waitForCondition(condition, "part11: should have a click-to-play notification");
yield BrowserTestUtils.removeTab(pluginTab);
// causes appDisabled to be set
managerWindow = yield new Promise(resolve => {
setAndUpdateBlocklist(gHttpTestRoot + "blockPluginHard.xml",
() => {
close_manager(managerWindow, function() {
open_manager("addons://list/plugin", resolve);
});
}
);
});
pluginEl = get_addon_element(managerWindow, testPluginId);
pluginEl.parentNode.ensureElementIsVisible(pluginEl);
menu = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "state-menulist");
is(menu.disabled, true, "part12: state menu should be disabled");
details = managerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "details-btn");
EventUtils.synthesizeMouseAtCenter(details, {}, managerWindow);
yield BrowserTestUtils.waitForEvent(managerWindow.document, "ViewChanged");
menu = managerWindow.document.getElementById("detail-state-menulist");
is(menu.disabled, true, "part13: detail state menu should be disabled");
managerWindow.close();
});
|