mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28: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,106 +0,0 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/publicdomain/zero/1.0/
|
||||
*/
|
||||
|
||||
const ID = "proxy1@tests.mozilla.org";
|
||||
|
||||
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "42");
|
||||
startupManager();
|
||||
|
||||
BootstrapMonitor.init();
|
||||
|
||||
// Ensure that a proxy file to an add-on with a valid manifest works.
|
||||
add_task(function*() {
|
||||
let tempdir = gTmpD.clone();
|
||||
writeInstallRDFToDir({
|
||||
id: ID,
|
||||
version: "1.0",
|
||||
bootstrap: true,
|
||||
unpack: true,
|
||||
targetApplications: [{
|
||||
id: "xpcshell@tests.mozilla.org",
|
||||
minVersion: "1",
|
||||
maxVersion: "1"
|
||||
}],
|
||||
name: "Test Bootstrap 1 (proxy)",
|
||||
}, tempdir, ID, "bootstrap.js");
|
||||
|
||||
let unpackedAddon = tempdir.clone();
|
||||
unpackedAddon.append(ID);
|
||||
do_get_file("data/test_proxy/bootstrap.js")
|
||||
.copyTo(unpackedAddon, "bootstrap.js");
|
||||
|
||||
// create proxy file in profile/extensions dir
|
||||
let extensionsDir = gProfD.clone();
|
||||
extensionsDir.append("extensions");
|
||||
let proxyFile = writeProxyFileToDir(extensionsDir, unpackedAddon, ID);
|
||||
|
||||
yield promiseRestartManager();
|
||||
|
||||
BootstrapMonitor.checkAddonInstalled(ID, "1.0");
|
||||
BootstrapMonitor.checkAddonStarted(ID, "1.0");
|
||||
|
||||
let addon = yield promiseAddonByID(ID);
|
||||
|
||||
do_check_neq(addon, null);
|
||||
do_check_eq(addon.version, "1.0");
|
||||
do_check_eq(addon.name, "Test Bootstrap 1 (proxy)");
|
||||
do_check_true(addon.isCompatible);
|
||||
do_check_false(addon.appDisabled);
|
||||
do_check_true(addon.isActive);
|
||||
do_check_eq(addon.type, "extension");
|
||||
do_check_eq(addon.signedState, mozinfo.addon_signing ? AddonManager.SIGNEDSTATE_SIGNED : AddonManager.SIGNEDSTATE_NOT_REQUIRED);
|
||||
|
||||
do_check_true(proxyFile.exists());
|
||||
|
||||
addon.uninstall();
|
||||
unpackedAddon.remove(true);
|
||||
|
||||
yield promiseRestartManager();
|
||||
});
|
||||
|
||||
|
||||
// Ensure that a proxy file to an add-on is not removed even
|
||||
// if the manifest file is invalid. See bug 1195353.
|
||||
add_task(function*() {
|
||||
let tempdir = gTmpD.clone();
|
||||
|
||||
// use a mismatched ID to make this install.rdf invalid
|
||||
writeInstallRDFToDir({
|
||||
id: "bad-proxy1@tests.mozilla.org",
|
||||
version: "1.0",
|
||||
bootstrap: true,
|
||||
unpack: true,
|
||||
targetApplications: [{
|
||||
id: "xpcshell@tests.mozilla.org",
|
||||
minVersion: "1",
|
||||
maxVersion: "1"
|
||||
}],
|
||||
name: "Test Bootstrap 1 (proxy)",
|
||||
}, tempdir, ID, "bootstrap.js");
|
||||
|
||||
let unpackedAddon = tempdir.clone();
|
||||
unpackedAddon.append(ID);
|
||||
do_get_file("data/test_proxy/bootstrap.js")
|
||||
.copyTo(unpackedAddon, "bootstrap.js");
|
||||
|
||||
// create proxy file in profile/extensions dir
|
||||
let extensionsDir = gProfD.clone();
|
||||
extensionsDir.append("extensions");
|
||||
let proxyFile = writeProxyFileToDir(extensionsDir, unpackedAddon, ID);
|
||||
|
||||
yield promiseRestartManager();
|
||||
|
||||
BootstrapMonitor.checkAddonNotInstalled(ID, "1.0");
|
||||
BootstrapMonitor.checkAddonNotStarted(ID, "1.0");
|
||||
|
||||
let addon = yield promiseAddonByID(ID);
|
||||
do_check_eq(addon, null);
|
||||
|
||||
do_check_true(proxyFile.exists());
|
||||
|
||||
unpackedAddon.remove(true);
|
||||
proxyFile.remove(true);
|
||||
|
||||
yield promiseRestartManager();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue