mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +09:00
Move WebExtensions enabled Add-ons Manager
This commit is contained in:
parent
d7d16e7fbb
commit
358cd0404a
1100 changed files with 133 additions and 106 deletions
|
|
@ -1,61 +0,0 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/publicdomain/zero/1.0/
|
||||
*/
|
||||
|
||||
// Tests the detail view of plugins
|
||||
|
||||
var gManagerWindow;
|
||||
|
||||
function test() {
|
||||
waitForExplicitFinish();
|
||||
|
||||
open_manager("addons://list/plugin", function(aWindow) {
|
||||
gManagerWindow = aWindow;
|
||||
|
||||
run_next_test();
|
||||
});
|
||||
}
|
||||
|
||||
function end_test() {
|
||||
close_manager(gManagerWindow, function() {
|
||||
finish();
|
||||
});
|
||||
}
|
||||
|
||||
add_test(function() {
|
||||
AddonManager.getAddonsByTypes(["plugin"], function(plugins) {
|
||||
let testPluginId;
|
||||
for (let plugin of plugins) {
|
||||
if (plugin.name == "Test Plug-in") {
|
||||
testPluginId = plugin.id;
|
||||
break;
|
||||
}
|
||||
}
|
||||
ok(testPluginId, "Test Plug-in should exist")
|
||||
|
||||
AddonManager.getAddonByID(testPluginId, function(testPlugin) {
|
||||
let pluginEl = get_addon_element(gManagerWindow, testPluginId);
|
||||
is(pluginEl.mAddon.optionsType, AddonManager.OPTIONS_TYPE_INLINE_INFO, "Options should be inline info type");
|
||||
pluginEl.parentNode.ensureElementIsVisible(pluginEl);
|
||||
|
||||
let button = gManagerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "preferences-btn");
|
||||
is_element_hidden(button, "Preferences button should be hidden");
|
||||
|
||||
button = gManagerWindow.document.getAnonymousElementByAttribute(pluginEl, "anonid", "details-btn");
|
||||
EventUtils.synthesizeMouseAtCenter(button, { clickCount: 1 }, gManagerWindow);
|
||||
|
||||
wait_for_view_load(gManagerWindow, function() {
|
||||
let pluginLibraries = gManagerWindow.document.getElementById("pluginLibraries");
|
||||
ok(pluginLibraries, "Plugin file name row should be displayed");
|
||||
// the file name depends on the platform
|
||||
ok(pluginLibraries.textContent, testPlugin.pluginLibraries, "Plugin file name should be displayed");
|
||||
|
||||
let pluginMimeTypes = gManagerWindow.document.getElementById("pluginMimeTypes");
|
||||
ok(pluginMimeTypes, "Plugin mime type row should be displayed");
|
||||
ok(pluginMimeTypes.textContent, "application/x-test (tst)", "Plugin mime type should be displayed");
|
||||
|
||||
run_next_test();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue