blob: 7ededf7a63ce41175631e4ea9222e324f4b43473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 2015-2021 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""Tests for position_caret.js."""
import pytest
QWebSettings = pytest.importorskip("qutebrowser.qt.webkit").QWebSettings
QWebPage = pytest.importorskip("qutebrowser.qt.webkitwidgets").QWebPage
@pytest.fixture(autouse=True)
def enable_caret_browsing(qapp):
"""Fixture to enable caret browsing globally."""
settings = QWebSettings.globalSettings()
old_value = settings.testAttribute(QWebSettings.WebAttribute.CaretBrowsingEnabled)
settings.setAttribute(QWebSettings.WebAttribute.CaretBrowsingEnabled, True)
yield
settings.setAttribute(QWebSettings.WebAttribute.CaretBrowsingEnabled, old_value)
class CaretTester:
"""Helper class (for the caret_tester fixture) for asserts.
Attributes:
js: The js_tester fixture.
_qtbot: The qtbot fixture.
"""
def __init__(self, js_tester, qtbot):
self.js = js_tester
self._qtbot = qtbot
def check(self):
"""Check whether the caret is before the MARKER text."""
self.js.run_file('javascript/position_caret.js')
self.js.tab.caret.toggle_selection()
self.js.tab.caret.move_to_next_word()
with self._qtbot.wait_callback() as callback:
self.js.tab.caret.selection(lambda text: callback(text.rstrip()))
callback.assert_called_with('MARKER')
def check_scrolled(self):
"""Check if the page is scrolled down."""
assert not self.js.tab.scroller.at_top()
@pytest.fixture
def caret_tester(js_tester_webkit, qtbot):
"""Helper fixture to test caret browsing positions."""
caret_tester = CaretTester(js_tester_webkit, qtbot)
# Showing webview here is necessary for test_scrolled_down_img to
# succeed in some cases, see #1988
caret_tester.js.tab.show()
return caret_tester
@pytest.mark.integration
def test_simple(caret_tester):
"""Test with a simple (one-line) HTML text."""
caret_tester.js.load('position_caret/simple.html')
caret_tester.check()
@pytest.mark.integration
@pytest.mark.no_xvfb
def test_scrolled_down(caret_tester):
"""Test with multiple text blocks with the viewport scrolled down."""
caret_tester.js.load('position_caret/scrolled_down.html')
caret_tester.js.tab.scroller.to_anchor('anchor')
caret_tester.check_scrolled()
caret_tester.check()
@pytest.mark.integration
@pytest.mark.parametrize('style', ['visibility: hidden', 'display: none'])
def test_invisible(caret_tester, style):
"""Test with hidden text elements."""
caret_tester.js.load('position_caret/invisible.html', style=style)
caret_tester.check()
@pytest.mark.integration
@pytest.mark.no_xvfb
def test_scrolled_down_img(caret_tester):
"""Test with an image at the top with the viewport scrolled down."""
caret_tester.js.load('position_caret/scrolled_down_img.html')
caret_tester.js.tab.scroller.to_anchor('anchor')
caret_tester.check_scrolled()
caret_tester.check()
|