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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// Tests that certain types of addons do not have their version number
// displayed. This currently only includes lightweight themes.
var gManagerWindow;
var gCategoryUtilities;
var gProvider;
function test() {
waitForExplicitFinish();
gProvider = new MockProvider();
gProvider.createAddons([{
id: "extension@tests.mozilla.org",
name: "Extension 1",
type: "extension",
version: "123"
}, {
id: "theme@tests.mozilla.org",
name: "Theme 2",
type: "theme",
version: "456"
}, {
id: "lwtheme@personas.mozilla.org",
name: "Persona 3",
type: "theme",
version: "789"
}]);
open_manager(null, function(aWindow) {
gManagerWindow = aWindow;
gCategoryUtilities = new CategoryUtilities(gManagerWindow);
run_next_test();
});
}
function end_test() {
close_manager(gManagerWindow, finish);
}
function get(aId) {
return gManagerWindow.document.getElementById(aId);
}
function get_node(parent, anonid) {
return parent.ownerDocument.getAnonymousElementByAttribute(parent, "anonid", anonid);
}
function open_details(aList, aItem, aCallback) {
aList.ensureElementIsVisible(aItem);
EventUtils.synthesizeMouseAtCenter(aItem, { clickCount: 1 }, gManagerWindow);
EventUtils.synthesizeMouseAtCenter(aItem, { clickCount: 2 }, gManagerWindow);
wait_for_view_load(gManagerWindow, aCallback);
}
function check_addon_has_version(aList, aName, aVersion) {
for (let i = 0; i < aList.itemCount; i++) {
let item = aList.getItemAtIndex(i);
if (get_node(item, "name").value === aName) {
ok(true, "Item with correct name found");
is(get_node(item, "version").value, aVersion, "Item has correct version");
return item;
}
}
ok(false, "Item with correct name was not found");
return null;
}
add_test(function() {
gCategoryUtilities.openType("extension", function() {
info("Extension");
let list = gManagerWindow.document.getElementById("addon-list");
let item = check_addon_has_version(list, "Extension 1", "123");
open_details(list, item, function() {
is_element_visible(get("detail-version"), "Details view has version visible");
is(get("detail-version").value, "123", "Details view has correct version");
run_next_test();
});
});
});
add_test(function() {
gCategoryUtilities.openType("theme", function() {
info("Normal theme");
let list = gManagerWindow.document.getElementById("addon-list");
let item = check_addon_has_version(list, "Theme 2", "456");
open_details(list, item, function() {
is_element_visible(get("detail-version"), "Details view has version visible");
is(get("detail-version").value, "456", "Details view has correct version");
run_next_test();
});
});
});
add_test(function() {
gCategoryUtilities.openType("theme", function() {
info("Lightweight theme");
let list = gManagerWindow.document.getElementById("addon-list");
// See that the version isn't displayed
let item = check_addon_has_version(list, "Persona 3", "");
open_details(list, item, function() {
is_element_hidden(get("detail-version"), "Details view has version hidden");
// If the version element is hidden then we don't care about its value
run_next_test();
});
});
});
|