blob: 93238cdd874d5a64f3b2b3577a314dd11e59693e (
plain)
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
|
// ----------------------------------------------------------------------------
// Tests installing an local file works when loading the url
function test() {
Harness.installEndedCallback = install_ended;
Harness.installsCompletedCallback = finish_test;
Harness.setup();
var cr = Cc["@mozilla.org/chrome/chrome-registry;1"].getService(
Ci.nsIChromeRegistry
);
var chromeroot = extractChromeRoot(gTestPath);
var xpipath = chromeroot + "unsigned.xpi";
try {
xpipath = cr.convertChromeURL(makeURI(chromeroot + "amosigned.xpi")).spec;
} catch (ex) {
// scenario where we are running from a .jar and already extracted
}
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser, "about:blank");
BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(() => {
BrowserTestUtils.loadURIString(gBrowser, xpipath);
});
}
function install_ended(install, addon) {
Assert.deepEqual(
install.installTelemetryInfo,
{ source: "file-url" },
"Got the expected install.installTelemetryInfo"
);
return addon.uninstall();
}
function finish_test(count) {
is(count, 1, "1 Add-on should have been successfully installed");
gBrowser.removeCurrentTab();
Harness.finish();
}
// ----------------------------------------------------------------------------
|