qutebrowser/tests/unit/browser/test_tab.py

100 lines
2.8 KiB
Python
Raw Normal View History

2016-06-13 11:50:58 +02:00
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
# Copyright 2016 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 <http://www.gnu.org/licenses/>.
import pytest
2016-07-05 17:06:14 +02:00
from PyQt5.QtCore import pyqtSignal, QPoint
2016-06-13 11:50:58 +02:00
from qutebrowser.browser import tab
2016-07-05 17:06:14 +02:00
from qutebrowser.keyinput import modeman
2016-06-13 11:50:58 +02:00
try:
from PyQt5.QtWebKitWidgets import QWebView
2016-07-05 17:06:14 +02:00
class WebView(QWebView):
mouse_wheel_zoom = pyqtSignal(QPoint)
except ImportError:
2016-07-05 17:06:14 +02:00
WebView = None
try:
from PyQt5.QtWebEngineWidgets import QWebEngineView
2016-07-05 17:06:14 +02:00
class WebEngineView(QWebEngineView):
mouse_wheel_zoom = pyqtSignal(QPoint)
except ImportError:
2016-07-05 17:06:14 +02:00
WebEngineView = None
2016-06-13 11:50:58 +02:00
2016-07-05 17:06:14 +02:00
@pytest.mark.parametrize('view', [WebView, WebEngineView])
2016-07-08 18:49:00 +02:00
def test_tab(qtbot, view, config_stub, tab_registry):
2016-07-05 17:06:14 +02:00
config_stub.data = {
'input': {
'forward-unbound-keys': 'auto'
},
'ui': {
'zoom-levels': [100],
'default-zoom': 100,
}
}
if view is None:
pytest.skip("View not available")
2016-07-05 17:06:14 +02:00
w = view()
2016-06-13 11:50:58 +02:00
qtbot.add_widget(w)
2016-07-05 17:06:14 +02:00
2016-06-14 15:20:40 +02:00
tab_w = tab.AbstractTab(win_id=0)
2016-07-05 17:06:14 +02:00
qtbot.add_widget(tab_w)
2016-06-13 11:50:58 +02:00
tab_w.show()
2016-07-05 17:06:14 +02:00
2016-06-14 15:20:40 +02:00
assert tab_w.win_id == 0
2016-06-14 09:47:18 +02:00
assert tab_w._widget is None
2016-07-05 17:06:14 +02:00
mode_manager = modeman.ModeManager(0)
2016-07-05 17:06:14 +02:00
tab_w.history = tab.AbstractHistory(tab_w)
tab_w.scroll = tab.AbstractScroller(parent=tab_w)
tab_w.caret = tab.AbstractCaret(win_id=tab_w.win_id,
mode_manager=mode_manager, tab=tab_w,
parent=tab_w)
2016-07-05 17:06:14 +02:00
tab_w.zoom = tab.AbstractZoom(win_id=tab_w.win_id)
tab_w.search = tab.AbstractSearch(parent=tab_w)
2016-06-14 09:47:18 +02:00
tab_w._set_widget(w)
2016-06-13 11:50:58 +02:00
assert tab_w._widget is w
2016-07-05 17:06:14 +02:00
assert tab_w.history._tab is tab_w
assert tab_w.history._history is w.history()
2016-06-14 09:47:18 +02:00
assert w.parent() is tab_w
2016-07-04 16:12:58 +02:00
class TestTabData:
def test_known_attr(self):
data = tab.TabData()
2016-07-05 20:11:42 +02:00
assert not data.keep_icon
2016-07-04 16:12:58 +02:00
data.keep_icon = True
2016-07-05 20:11:42 +02:00
assert data.keep_icon
2016-07-04 16:12:58 +02:00
def test_unknown_attr(self):
data = tab.TabData()
with pytest.raises(AttributeError):
2016-07-07 20:12:17 +02:00
data.bar = 42 # pylint: disable=assigning-non-slot
2016-07-04 16:12:58 +02:00
with pytest.raises(AttributeError):
2016-07-05 20:11:42 +02:00
data.bar # pylint: disable=pointless-statement