summaryrefslogtreecommitdiff
path: root/tests/unit/browser/test_downloadview.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/browser/test_downloadview.py')
-rw-r--r--tests/unit/browser/test_downloadview.py94
1 files changed, 94 insertions, 0 deletions
diff --git a/tests/unit/browser/test_downloadview.py b/tests/unit/browser/test_downloadview.py
new file mode 100644
index 000000000..84b50fad2
--- /dev/null
+++ b/tests/unit/browser/test_downloadview.py
@@ -0,0 +1,94 @@
+# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
+
+# Copyright 2021 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
+#
+# This file is part of qutebrowser.
+#
+# qutebrowser is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# qutebrowser is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with qutebrowser. If not, see <https://www.gnu.org/licenses/>.
+
+
+import pytest
+
+from PyQt5.QtCore import QUrl
+
+from qutebrowser.browser import downloads, qtnetworkdownloads, downloadview
+
+
+class FakeDownload(downloads.AbstractDownloadItem):
+
+ # As this is used for tests, we only override what's actually needed.
+ # pylint: disable=abstract-method
+
+ def __init__(self, done: bool, successful: bool = False) -> None:
+ super().__init__(manager=None)
+ self.done = done
+ self.successful = successful
+
+ def url(self) -> QUrl:
+ return QUrl('https://example.org/')
+
+
+@pytest.fixture
+def qtnetwork_manager(config_stub, cookiejar_and_cache):
+ """A QtNetwork-based download manager."""
+ return qtnetworkdownloads.DownloadManager()
+
+
+@pytest.fixture
+def model(qtnetwork_manager, qtmodeltester, qapp):
+ """A simple DownloadModel."""
+ model = downloads.DownloadModel(qtnetwork_manager)
+ qtmodeltester.check(model)
+ return model
+
+
+@pytest.fixture
+def view(model, qtbot):
+ """A DownloadView."""
+ dv = downloadview.DownloadView(model)
+ qtbot.add_widget(dv)
+ return dv
+
+
+@pytest.mark.parametrize('can_clear', [True, False])
+@pytest.mark.parametrize('item, expected', [
+ # Clicking outside of a download item
+ (None, []),
+
+ # Clicking a in-progress item
+ (FakeDownload(done=False), ["Cancel", "Copy URL"]),
+
+ # Clicking a successful item
+ (
+ FakeDownload(done=True, successful=True),
+ ["Open", "Open directory", "Remove", "Copy URL"],
+ ),
+
+ # Clicking an unsuccessful item
+ (
+ FakeDownload(done=True, successful=False),
+ ["Retry", "Remove", "Copy URL"],
+ ),
+])
+def test_get_menu_actions(can_clear, item, expected, view, qtnetwork_manager):
+ if can_clear:
+ qtnetwork_manager.downloads.append(FakeDownload(done=True))
+ expected = expected.copy() + [None, "Remove all finished"]
+ else:
+ assert not qtnetwork_manager.downloads
+ assert "Remove all finished" not in expected
+
+ actions = view._get_menu_actions(item)
+ texts = [action[0] for action in actions]
+ assert texts == expected