2017-06-18 15:04:14 +02:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
|
2018-02-05 12:19:50 +01:00
|
|
|
# Copyright 2017-2018 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
2017-06-18 15:04:14 +02:00
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-07-09 23:27:34 +02:00
|
|
|
"""Test Backforward widget."""
|
2017-06-18 15:04:14 +02:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from qutebrowser.mainwindow.statusbar import backforward
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def backforward_widget(qtbot):
|
|
|
|
widget = backforward.Backforward()
|
|
|
|
qtbot.add_widget(widget)
|
|
|
|
return widget
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('can_go_back, can_go_forward, expected_text', [
|
|
|
|
(False, False, ''),
|
|
|
|
(True, False, '[<]'),
|
|
|
|
(False, True, '[>]'),
|
|
|
|
(True, True, '[<>]'),
|
|
|
|
])
|
2017-10-04 06:30:39 +02:00
|
|
|
def test_backforward_widget(backforward_widget, tabbed_browser_stubs,
|
2017-06-18 15:04:14 +02:00
|
|
|
fake_web_tab, can_go_back, can_go_forward,
|
|
|
|
expected_text):
|
|
|
|
"""Ensure the Backforward widget shows the correct text."""
|
|
|
|
tab = fake_web_tab(can_go_back=can_go_back, can_go_forward=can_go_forward)
|
2017-10-04 06:30:39 +02:00
|
|
|
tabbed_browser = tabbed_browser_stubs[0]
|
2018-02-15 12:02:42 +01:00
|
|
|
tabbed_browser.widget.current_index = 1
|
|
|
|
tabbed_browser.widget.tabs = [tab]
|
2018-02-08 16:22:26 +01:00
|
|
|
backforward_widget.enabled = True
|
2017-06-18 15:04:14 +02:00
|
|
|
backforward_widget.on_tab_cur_url_changed(tabbed_browser)
|
|
|
|
assert backforward_widget.text() == expected_text
|
2017-07-10 07:59:56 +02:00
|
|
|
assert backforward_widget.isVisible() == bool(expected_text)
|
2017-06-18 15:04:14 +02:00
|
|
|
|
2018-02-08 16:22:26 +01:00
|
|
|
# Check that the widget stays hidden if not in the statusbar
|
|
|
|
backforward_widget.enabled = False
|
|
|
|
backforward_widget.hide()
|
|
|
|
backforward_widget.on_tab_cur_url_changed(tabbed_browser)
|
|
|
|
assert backforward_widget.isHidden()
|
|
|
|
|
2017-06-18 15:04:14 +02:00
|
|
|
# Check that the widget gets reset if empty.
|
|
|
|
if can_go_back and can_go_forward:
|
|
|
|
tab = fake_web_tab(can_go_back=False, can_go_forward=False)
|
2018-02-15 12:02:42 +01:00
|
|
|
tabbed_browser.widget.tabs = [tab]
|
2018-02-08 16:22:26 +01:00
|
|
|
backforward_widget.enabled = True
|
2017-06-18 15:04:14 +02:00
|
|
|
backforward_widget.on_tab_cur_url_changed(tabbed_browser)
|
|
|
|
assert backforward_widget.text() == ''
|
2017-07-10 07:59:56 +02:00
|
|
|
assert not backforward_widget.isVisible()
|
2017-07-10 08:00:09 +02:00
|
|
|
|
|
|
|
|
2017-10-04 06:30:39 +02:00
|
|
|
def test_none_tab(backforward_widget, tabbed_browser_stubs, fake_web_tab):
|
2017-07-10 08:00:09 +02:00
|
|
|
"""Make sure nothing crashes when passing None as tab."""
|
|
|
|
tab = fake_web_tab(can_go_back=True, can_go_forward=True)
|
2017-10-04 06:30:39 +02:00
|
|
|
tabbed_browser = tabbed_browser_stubs[0]
|
2018-02-15 12:02:42 +01:00
|
|
|
tabbed_browser.widget.current_index = 1
|
|
|
|
tabbed_browser.widget.tabs = [tab]
|
2018-02-08 16:22:26 +01:00
|
|
|
backforward_widget.enabled = True
|
2017-07-10 08:00:09 +02:00
|
|
|
backforward_widget.on_tab_cur_url_changed(tabbed_browser)
|
|
|
|
|
|
|
|
assert backforward_widget.text() == '[<>]'
|
|
|
|
assert backforward_widget.isVisible()
|
|
|
|
|
2018-02-15 12:02:42 +01:00
|
|
|
tabbed_browser.widget.current_index = -1
|
2017-07-10 08:00:09 +02:00
|
|
|
backforward_widget.on_tab_cur_url_changed(tabbed_browser)
|
|
|
|
|
|
|
|
assert backforward_widget.text() == ''
|
|
|
|
assert not backforward_widget.isVisible()
|