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/>.
|
|
|
|
|
2016-06-14 11:21:50 +02:00
|
|
|
import pytest
|
|
|
|
|
2016-08-11 13:50:06 +02:00
|
|
|
from PyQt5.QtCore import PYQT_VERSION, pyqtSignal
|
2016-07-05 17:06:14 +02:00
|
|
|
|
2016-07-10 17:23:08 +02:00
|
|
|
from qutebrowser.browser import browsertab
|
2016-07-05 17:06:14 +02:00
|
|
|
from qutebrowser.keyinput import modeman
|
2016-07-13 13:46:08 +02:00
|
|
|
from qutebrowser.utils import objreg
|
2016-06-13 11:50:58 +02:00
|
|
|
|
2016-07-16 14:17:07 +02:00
|
|
|
pytestmark = pytest.mark.usefixtures('redirect_xdg_data')
|
|
|
|
|
2016-06-14 11:21:50 +02:00
|
|
|
try:
|
|
|
|
from PyQt5.QtWebKitWidgets import QWebView
|
|
|
|
except ImportError:
|
2016-08-11 13:50:06 +02:00
|
|
|
QWebView = None
|
2016-06-14 11:21:50 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
from PyQt5.QtWebEngineWidgets import QWebEngineView
|
|
|
|
except ImportError:
|
2016-08-11 13:50:06 +02:00
|
|
|
QWebEngineView = None
|
2016-06-13 11:50:58 +02:00
|
|
|
|
|
|
|
|
2016-08-11 13:50:06 +02:00
|
|
|
@pytest.fixture(params=[QWebView, QWebEngineView])
|
2016-07-13 13:46:08 +02:00
|
|
|
def view(qtbot, config_stub, request):
|
2016-07-05 17:06:14 +02:00
|
|
|
config_stub.data = {
|
|
|
|
'input': {
|
|
|
|
'forward-unbound-keys': 'auto'
|
|
|
|
},
|
|
|
|
'ui': {
|
|
|
|
'zoom-levels': [100],
|
|
|
|
'default-zoom': 100,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-13 13:46:08 +02:00
|
|
|
if request.param is None:
|
2016-06-14 11:21:50 +02:00
|
|
|
pytest.skip("View not available")
|
2016-07-05 17:06:14 +02:00
|
|
|
|
2016-07-13 13:46:08 +02:00
|
|
|
v = request.param()
|
|
|
|
qtbot.add_widget(v)
|
|
|
|
return v
|
2016-07-05 17:06:14 +02:00
|
|
|
|
2016-07-13 13:46:33 +02:00
|
|
|
|
|
|
|
@pytest.yield_fixture(params=['webkit', 'webengine'])
|
|
|
|
def tab(request, default_config, qtbot, tab_registry, cookiejar_and_cache):
|
|
|
|
if PYQT_VERSION < 0x050600:
|
|
|
|
pytest.skip('Causes segfaults, see #1638')
|
|
|
|
|
|
|
|
if request.param == 'webkit':
|
|
|
|
webkittab = pytest.importorskip('qutebrowser.browser.webkit.webkittab')
|
|
|
|
tab_class = webkittab.WebKitTab
|
|
|
|
elif request.param == 'webengine':
|
|
|
|
webenginetab = pytest.importorskip(
|
|
|
|
'qutebrowser.browser.webengine.webenginetab')
|
|
|
|
tab_class = webenginetab.WebEngineTab
|
|
|
|
else:
|
|
|
|
assert False
|
|
|
|
|
|
|
|
# Can't use the mode_manager fixture as that uses config_stub, which
|
|
|
|
# conflicts with default_config
|
|
|
|
mm = modeman.ModeManager(0)
|
|
|
|
objreg.register('mode-manager', mm, scope='window', window=0)
|
|
|
|
|
|
|
|
t = tab_class(win_id=0, mode_manager=mm)
|
|
|
|
qtbot.add_widget(t)
|
|
|
|
yield t
|
|
|
|
|
|
|
|
objreg.delete('mode-manager', scope='window', window=0)
|
|
|
|
|
|
|
|
|
2016-08-10 16:37:52 +02:00
|
|
|
class Tab(browsertab.AbstractTab):
|
|
|
|
|
|
|
|
# pylint: disable=abstract-method
|
|
|
|
|
|
|
|
def __init__(self, win_id, parent=None):
|
|
|
|
super().__init__(win_id, parent)
|
|
|
|
mode_manager = modeman.ModeManager(0)
|
|
|
|
self.history = browsertab.AbstractHistory(self)
|
|
|
|
self.scroller = browsertab.AbstractScroller(self, parent=self)
|
|
|
|
self.caret = browsertab.AbstractCaret(win_id=self.win_id,
|
|
|
|
mode_manager=mode_manager,
|
|
|
|
tab=self, parent=self)
|
|
|
|
self.zoom = browsertab.AbstractZoom(win_id=self.win_id)
|
|
|
|
self.search = browsertab.AbstractSearch(parent=self)
|
|
|
|
self.printing = browsertab.AbstractPrinting()
|
|
|
|
|
2016-08-10 20:37:38 +02:00
|
|
|
def _install_event_filter(self):
|
|
|
|
pass
|
|
|
|
|
2016-08-10 16:37:52 +02:00
|
|
|
|
2016-07-13 13:46:08 +02:00
|
|
|
@pytest.mark.skipif(PYQT_VERSION < 0x050600,
|
|
|
|
reason='Causes segfaults, see #1638')
|
|
|
|
def test_tab(qtbot, view, config_stub, tab_registry):
|
2016-08-10 16:37:52 +02:00
|
|
|
tab_w = Tab(win_id=0)
|
2016-07-05 17:06:14 +02:00
|
|
|
qtbot.add_widget(tab_w)
|
|
|
|
|
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
|
|
|
|
2016-07-13 13:46:08 +02:00
|
|
|
tab_w._set_widget(view)
|
|
|
|
assert tab_w._widget is view
|
2016-07-05 17:06:14 +02:00
|
|
|
assert tab_w.history._tab is tab_w
|
2016-07-13 13:46:08 +02:00
|
|
|
assert tab_w.history._history is view.history()
|
|
|
|
assert view.parent() is tab_w
|
2016-07-04 16:12:58 +02:00
|
|
|
|
2016-08-04 18:35:35 +02:00
|
|
|
tab_w.show()
|
|
|
|
qtbot.waitForWindowShown(tab_w)
|
|
|
|
|
2016-07-04 16:12:58 +02:00
|
|
|
|
2016-07-13 13:46:47 +02:00
|
|
|
class TestJs:
|
|
|
|
|
2016-07-13 21:19:02 +02:00
|
|
|
@pytest.mark.parametrize('inp, expected', [('1+1', 2),
|
|
|
|
('undefined', None)])
|
2016-07-13 18:17:37 +02:00
|
|
|
def test_blocking(self, tab, inp, expected):
|
|
|
|
assert tab.run_js_blocking(inp) == expected
|
2016-07-13 13:46:47 +02:00
|
|
|
|
|
|
|
|
2016-07-04 16:12:58 +02:00
|
|
|
class TestTabData:
|
|
|
|
|
|
|
|
def test_known_attr(self):
|
2016-07-10 17:23:08 +02:00
|
|
|
data = browsertab.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):
|
2016-07-10 17:23:08 +02:00
|
|
|
data = browsertab.TabData()
|
2016-07-04 16:12:58 +02:00
|
|
|
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
|