mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-05 16:09:02 +00:00
73 lines
2.6 KiB
JavaScript
73 lines
2.6 KiB
JavaScript
/* 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/. */
|
|
"use strict";
|
|
|
|
const { Cu, Cc, Ci } = require("chrome");
|
|
|
|
const { evaluate } = require("sdk/loader/sandbox");
|
|
|
|
const ROOT = require.resolve("sdk/base64").replace("/sdk/base64.js", "");
|
|
|
|
// Note: much of this test code is from
|
|
// http://dxr.mozilla.org/mozilla-central/source/toolkit/mozapps/extensions/internal/XPIProvider.jsm
|
|
const BOOTSTRAP_REASONS = {
|
|
APP_STARTUP : 1,
|
|
APP_SHUTDOWN : 2,
|
|
ADDON_ENABLE : 3,
|
|
ADDON_DISABLE : 4,
|
|
ADDON_INSTALL : 5,
|
|
ADDON_UNINSTALL : 6,
|
|
ADDON_UPGRADE : 7,
|
|
ADDON_DOWNGRADE : 8
|
|
};
|
|
|
|
exports["test minimal bootstrap.js"] = function(assert) {
|
|
let aId = "test-min-boot@jetpack";
|
|
let uri = require.resolve("./fixtures/addon/bootstrap.js");
|
|
|
|
let principal = Cc["@mozilla.org/systemprincipal;1"].
|
|
createInstance(Ci.nsIPrincipal);
|
|
|
|
let bootstrapScope = new Cu.Sandbox(principal, {
|
|
sandboxName: uri,
|
|
wantGlobalProperties: ["indexedDB"],
|
|
addonId: aId,
|
|
metadata: { addonID: aId, URI: uri }
|
|
});
|
|
|
|
try {
|
|
// Copy the reason values from the global object into the bootstrap scope.
|
|
for (let name in BOOTSTRAP_REASONS)
|
|
bootstrapScope[name] = BOOTSTRAP_REASONS[name];
|
|
|
|
// As we don't want our caller to control the JS version used for the
|
|
// bootstrap file, we run loadSubScript within the context of the
|
|
// sandbox with the latest JS version set explicitly.
|
|
bootstrapScope.ROOT = ROOT;
|
|
|
|
assert.equal(typeof bootstrapScope.install, "undefined", "install DNE");
|
|
assert.equal(typeof bootstrapScope.startup, "undefined", "startup DNE");
|
|
assert.equal(typeof bootstrapScope.shutdown, "undefined", "shutdown DNE");
|
|
assert.equal(typeof bootstrapScope.uninstall, "undefined", "uninstall DNE");
|
|
|
|
evaluate(bootstrapScope,
|
|
`${"Components"}.classes['@mozilla.org/moz/jssubscript-loader;1']
|
|
.createInstance(${"Components"}.interfaces.mozIJSSubScriptLoader)
|
|
.loadSubScript("${uri}");`, "ECMAv5");
|
|
|
|
assert.equal(typeof bootstrapScope.install, "function", "install exists");
|
|
assert.equal(typeof bootstrapScope.startup, "function", "startup exists");
|
|
assert.equal(typeof bootstrapScope.shutdown, "function", "shutdown exists");
|
|
assert.equal(typeof bootstrapScope.uninstall, "function", "uninstall exists");
|
|
|
|
bootstrapScope.shutdown(null, BOOTSTRAP_REASONS.ADDON_DISABLE);
|
|
}
|
|
catch(e) {
|
|
console.exception(e)
|
|
assert.fail(e)
|
|
}
|
|
}
|
|
|
|
require("sdk/test").run(exports);
|