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
119
120
|
registerCleanupFunction(function* cleanup() {
Services.search.currentEngine = originalEngine;
let engine = Services.search.getEngineByName("MozSearch");
Services.search.removeEngine(engine);
});
let originalEngine;
add_task(function* test_setup() {
// Opening multiple windows on debug build takes too long time.
requestLongerTimeout(10);
// Stop search-engine loads from hitting the network
Services.search.addEngineWithDetails("MozSearch", "", "", "", "GET",
"http://example.com/?q={searchTerms}");
let engine = Services.search.getEngineByName("MozSearch");
originalEngine = Services.search.currentEngine;
Services.search.currentEngine = engine;
// Move New Window button to nav bar, to make it possible to drag and drop.
let {CustomizableUI} = Cu.import("resource:///modules/CustomizableUI.jsm", {});
let origPlacement = CustomizableUI.getPlacementOfWidget("new-window-button");
if (!origPlacement || origPlacement.area != CustomizableUI.AREA_NAVBAR) {
CustomizableUI.addWidgetToArea("new-window-button",
CustomizableUI.AREA_NAVBAR,
0);
CustomizableUI.ensureWidgetPlacedInWindow("new-window-button", window);
registerCleanupFunction(function () {
CustomizableUI.reset();
});
}
});
// New Window Button opens any link.
add_task(function*() { yield dropText("mochi.test/first", 1); });
add_task(function*() { yield dropText("javascript:'bad'", 1); });
add_task(function*() { yield dropText("jAvascript:'bad'", 1); });
add_task(function*() { yield dropText("mochi.test/second", 1); });
add_task(function*() { yield dropText("data:text/html,bad", 1); });
add_task(function*() { yield dropText("mochi.test/third", 1); });
// Single text/plain item, with multiple links.
add_task(function*() { yield dropText("mochi.test/1\nmochi.test/2", 2); });
add_task(function*() { yield dropText("javascript:'bad1'\nmochi.test/3", 2); });
add_task(function*() { yield dropText("mochi.test/4\ndata:text/html,bad1", 2); });
// Multiple text/plain items, with single and multiple links.
add_task(function*() {
yield drop([[{type: "text/plain",
data: "mochi.test/5"}],
[{type: "text/plain",
data: "mochi.test/6\nmochi.test/7"}]], 3);
});
// Single text/x-moz-url item, with multiple links.
// "text/x-moz-url" has titles in even-numbered lines.
add_task(function*() {
yield drop([[{type: "text/x-moz-url",
data: "mochi.test/8\nTITLE8\nmochi.test/9\nTITLE9"}]], 2);
});
// Single item with multiple types.
add_task(function*() {
yield drop([[{type: "text/plain",
data: "mochi.test/10"},
{type: "text/x-moz-url",
data: "mochi.test/11\nTITLE11"}]], 1);
});
function dropText(text, expectedWindowOpenCount=0) {
return drop([[{type: "text/plain", data: text}]], expectedWindowOpenCount);
}
function* drop(dragData, expectedWindowOpenCount=0) {
let dragDataString = JSON.stringify(dragData);
info(`Starting test for datagData:${dragDataString}; expectedWindowOpenCount:${expectedWindowOpenCount}`);
let scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"].
getService(Ci.mozIJSSubScriptLoader);
let EventUtils = {};
scriptLoader.loadSubScript("chrome://mochikit/content/tests/SimpleTest/EventUtils.js", EventUtils);
// Since synthesizeDrop triggers the srcElement, need to use another button.
let dragSrcElement = document.getElementById("downloads-button");
ok(dragSrcElement, "Downloads button exists");
let newWindowButton = document.getElementById("new-window-button");
ok(newWindowButton, "New Window button exists");
let tmp = {};
Cu.import("resource://testing-common/TestUtils.jsm", tmp);
let awaitDrop = BrowserTestUtils.waitForEvent(newWindowButton, "drop");
let actualWindowOpenCount = 0;
let openedWindows = [];
let checkCount = function(window) {
// Add observer as soon as domWindow is opened to avoid missing the topic.
let awaitStartup = tmp.TestUtils.topicObserved("browser-delayed-startup-finished",
subject => subject == window);
openedWindows.push([window, awaitStartup]);
actualWindowOpenCount++;
return actualWindowOpenCount == expectedWindowOpenCount;
};
let awaitWindowOpen = expectedWindowOpenCount && BrowserTestUtils.domWindowOpened(null, checkCount);
EventUtils.synthesizeDrop(dragSrcElement, newWindowButton, dragData, "link", window);
let windowsOpened = false;
if (awaitWindowOpen) {
yield awaitWindowOpen;
info("Got Window opened");
windowsOpened = true;
for (let [window, awaitStartup] of openedWindows.reverse()) {
// Wait for startup before closing, to properly close the browser window.
yield awaitStartup;
yield BrowserTestUtils.closeWindow(window);
}
}
is(windowsOpened, !!expectedWindowOpenCount, `Windows for ${dragDataString} should only open if any of dropped items are valid`);
yield awaitDrop;
ok(true, "Got drop event");
}
|