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
|
"use strict";
const kTestPath = getRootDirectory(gTestPath).replace(
"chrome://mochitests/content",
"http://example.com"
);
const kTestURI = kTestPath + "file_data_download.html";
function addWindowListener(aURL) {
return new Promise(resolve => {
Services.wm.addListener({
onOpenWindow(aXULWindow) {
info("window opened, waiting for focus");
Services.wm.removeListener(this);
var domwindow = aXULWindow.docShell.domWindow;
waitForFocus(function () {
is(
domwindow.document.location.href,
aURL,
"should have seen the right window open"
);
resolve(domwindow);
}, domwindow);
},
onCloseWindow(aXULWindow) {},
});
});
}
function waitDelay(delay) {
return new Promise((resolve, reject) => {
/* eslint-disable mozilla/no-arbitrary-setTimeout */
window.setTimeout(resolve, delay);
});
}
function promisePanelOpened() {
if (DownloadsPanel.panel && DownloadsPanel.panel.state == "open") {
return Promise.resolve();
}
return BrowserTestUtils.waitForEvent(DownloadsPanel.panel, "popupshown");
}
add_task(async function test_with_downloads_pref_disabled() {
waitForExplicitFinish();
await SpecialPowers.pushPrefEnv({
set: [
["security.data_uri.block_toplevel_data_uri_navigations", true],
["browser.download.always_ask_before_handling_new_types", true],
],
});
let windowPromise = addWindowListener(
"chrome://mozapps/content/downloads/unknownContentType.xhtml"
);
BrowserTestUtils.loadURIString(gBrowser, kTestURI);
let win = await windowPromise;
is(
win.document.getElementById("location").value,
"data-foo.html",
"file name of download should match"
);
let mainWindowActivated = BrowserTestUtils.waitForEvent(window, "activate");
await BrowserTestUtils.closeWindow(win);
await mainWindowActivated;
});
add_task(async function test_with_always_ask_pref_disabled() {
waitForExplicitFinish();
await SpecialPowers.pushPrefEnv({
set: [
["security.data_uri.block_toplevel_data_uri_navigations", true],
["browser.download.always_ask_before_handling_new_types", false],
],
});
let downloadsPanelPromise = promisePanelOpened();
let downloadsPromise = Downloads.getList(Downloads.PUBLIC);
BrowserTestUtils.loadURIString(gBrowser, kTestURI);
// wait until downloadsPanel opens before continuing with test
await downloadsPanelPromise;
let downloadList = await downloadsPromise;
is(DownloadsPanel.isPanelShowing, true, "DownloadsPanel should be open.");
is(
downloadList._downloads.length,
1,
"File should be successfully downloaded."
);
let [download] = downloadList._downloads;
is(download.contentType, "text/html", "File contentType should be correct.");
is(
download.source.url,
"data:text/html,<body>data download</body>",
"File name should be correct."
);
info("cleaning up downloads");
try {
if (Services.appinfo.OS === "WINNT") {
// We need to make the file writable to delete it on Windows.
await IOUtils.setPermissions(download.target.path, 0o600);
}
await IOUtils.remove(download.target.path);
} catch (error) {
info("The file " + download.target.path + " is not removed, " + error);
}
await downloadList.remove(download);
await download.finalize();
});
|