summaryrefslogtreecommitdiffstats
path: root/toolkit/components/webextensions/test/mochitest/test_chrome_ext_downloads_saveAs.html
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/webextensions/test/mochitest/test_chrome_ext_downloads_saveAs.html')
-rw-r--r--toolkit/components/webextensions/test/mochitest/test_chrome_ext_downloads_saveAs.html68
1 files changed, 0 insertions, 68 deletions
diff --git a/toolkit/components/webextensions/test/mochitest/test_chrome_ext_downloads_saveAs.html b/toolkit/components/webextensions/test/mochitest/test_chrome_ext_downloads_saveAs.html
deleted file mode 100644
index c1aaae035..000000000
--- a/toolkit/components/webextensions/test/mochitest/test_chrome_ext_downloads_saveAs.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <title>Test downloads.download() saveAs option</title>
- <script src="chrome://mochikit/content/tests/SimpleTest/SpawnTask.js"></script>
- <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
- <script src="chrome://mochikit/content/tests/SimpleTest/ExtensionTestUtils.js"></script>
- <link rel="stylesheet" href="chrome://mochikit/contents/tests/SimpleTest/test.css"/>
-</head>
-<body>
-
-<script type="text/javascript">
-"use strict";
-
-add_task(function* test_downloads_saveAs() {
- function background() {
- const url = URL.createObjectURL(new Blob(["file content"]));
- browser.test.onMessage.addListener(async () => {
- try {
- let id = await browser.downloads.download({url, saveAs: true});
- browser.downloads.onChanged.addListener(delta => {
- if (delta.state.current === "complete") {
- browser.test.sendMessage("done", {ok: true, id});
- }
- });
- } catch ({message}) {
- browser.test.sendMessage("done", {ok: false, message});
- }
- });
- browser.test.sendMessage("ready");
- }
-
- const {MockFilePicker} = SpecialPowers;
- const manifest = {background, manifest: {permissions: ["downloads"]}};
- const extension = ExtensionTestUtils.loadExtension(manifest);
-
- MockFilePicker.init(window);
- MockFilePicker.useAnyFile();
- const [file] = MockFilePicker.returnFiles;
-
- yield extension.startup();
- yield extension.awaitMessage("ready");
-
- extension.sendMessage("download");
- let result = yield extension.awaitMessage("done");
-
- ok(result.ok, "downloads.download() works with saveAs");
- is(file.fileSize, 12, "downloaded file is the correct size");
- file.remove(false);
-
- // Test the user canceling the save dialog.
- MockFilePicker.returnValue = MockFilePicker.returnCancel;
-
- extension.sendMessage("download");
- result = yield extension.awaitMessage("done");
-
- ok(!result.ok, "download rejected if the user cancels the dialog");
- is(result.message, "Download canceled by the user", "with the correct message");
- ok(!file.exists(), "file was not downloaded");
-
- yield extension.unload();
- MockFilePicker.cleanup();
-});
-
-</script>
-
-</body>
-</html>