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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// Bug 593535 - Failure to download extension causes about:addons to list the
// addon with no way to restart the download
const PREF_GETADDONS_GETSEARCHRESULTS = "extensions.getAddons.search.url";
const SEARCH_URL = TESTROOT + "browser_bug593535.xml";
const QUERY = "NOTFOUND";
var gProvider;
function test() {
waitForExplicitFinish();
// Turn on searching for this test
Services.prefs.setIntPref(PREF_SEARCH_MAXRESULTS, 15);
open_manager("addons://list/extension", function(aWindow) {
gManagerWindow = aWindow;
run_next_test();
});
}
function end_test() {
close_manager(gManagerWindow, function() {
AddonManager.getAllInstalls(function(aInstallsList) {
for (var install of aInstallsList) {
var sourceURI = install.sourceURI.spec;
if (sourceURI.match(/^http:\/\/example\.com\/(.+)\.xpi$/) != null)
install.cancel();
}
finish();
});
});
}
function search(aQuery, aCallback) {
// Point search to the correct xml test file
Services.prefs.setCharPref(PREF_GETADDONS_GETSEARCHRESULTS, SEARCH_URL);
var searchBox = gManagerWindow.document.getElementById("header-search");
searchBox.value = aQuery;
EventUtils.synthesizeMouseAtCenter(searchBox, { }, gManagerWindow);
EventUtils.synthesizeKey("VK_RETURN", { }, gManagerWindow);
wait_for_view_load(gManagerWindow, function() {
var remoteFilter = gManagerWindow.document.getElementById("search-filter-remote");
EventUtils.synthesizeMouseAtCenter(remoteFilter, { }, gManagerWindow);
aCallback();
});
}
function get_addon_item(aName) {
var id = aName + "@tests.mozilla.org";
var list = gManagerWindow.document.getElementById("search-list");
var rows = list.getElementsByTagName("richlistitem");
for (let row of rows) {
if (row.mAddon && row.mAddon.id == id)
return row;
}
return null;
}
function get_install_button(aItem) {
isnot(aItem, null, "Item should not be null when checking state of install button");
var installStatus = getAnonymousElementByAttribute(aItem, "anonid", "install-status");
return getAnonymousElementByAttribute(installStatus, "anonid", "install-remote-btn");
}
function getAnonymousElementByAttribute(aElement, aName, aValue) {
return gManagerWindow.document.getAnonymousElementByAttribute(aElement,
aName,
aValue);
}
// Tests that a failed install for a remote add-on will ask to retry the install
add_test(function() {
var remoteItem;
var listener = {
onDownloadFailed: function(aInstall) {
aInstall.removeListener(this);
ok(true, "Install failed as expected");
executeSoon(function() {
is(remoteItem.getAttribute("notification"), "warning", "Item should have notification attribute set to 'warning'");
is_element_visible(remoteItem._warning, "Warning text should be visible");
is(remoteItem._warning.textContent, "There was an error downloading NOTFOUND.", "Warning should show correct message");
is_element_visible(remoteItem._warningLink, "Retry button should be visible");
run_next_test();
});
},
onInstallEnded: function() {
ok(false, "Install should have failed");
}
}
search(QUERY, function() {
var list = gManagerWindow.document.getElementById("search-list");
remoteItem = get_addon_item("notfound1");
list.ensureElementIsVisible(remoteItem);
remoteItem.mAddon.install.addListener(listener);
var installBtn = get_install_button(remoteItem);
EventUtils.synthesizeMouseAtCenter(installBtn, { }, gManagerWindow);
});
});
|