qutebrowser/tests/unit/mainwindow/statusbar/test_textbase.py

105 lines
3.3 KiB
Python
Raw Normal View History

2015-04-02 01:50:20 +02:00
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
2018-02-05 12:19:50 +01:00
# Copyright 2014-2018 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
2015-04-02 01:50:20 +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/>.
"""Test TextBase widget."""
from PyQt5.QtCore import Qt
import pytest
2015-04-02 01:50:20 +02:00
from qutebrowser.mainwindow.statusbar.textbase import TextBase
@pytest.mark.parametrize('elidemode, check', [
(Qt.ElideRight, lambda s: s.endswith('') or s.endswith('...')),
(Qt.ElideLeft, lambda s: s.startswith('') or s.startswith('...')),
(Qt.ElideMiddle, lambda s: '' in s or '...' in s),
(Qt.ElideNone, lambda s: '' not in s and '...' not in s),
])
def test_elided_text(fake_statusbar, qtbot, elidemode, check):
2015-04-05 20:30:31 +02:00
"""Ensure that a widget too small to hold the entire label text will elide.
2015-04-02 01:50:20 +02:00
It is difficult to check what is actually being drawn in a portable way, so
at least we ensure our customized methods are being called and the elided
string contains the horizontal ellipsis character.
2015-04-02 01:50:20 +02:00
2015-04-05 20:30:31 +02:00
Args:
qtbot: pytestqt.plugin.QtBot fixture
elidemode: parametrized elide mode
check: function that receives the elided text and must return True
2015-10-04 15:41:42 +02:00
if the ellipsis is placed correctly according to elidemode.
2015-04-02 01:50:20 +02:00
"""
label = TextBase(elidemode=elidemode)
2015-04-02 01:50:20 +02:00
qtbot.add_widget(label)
fake_statusbar.hbox.addWidget(label)
2016-02-15 22:52:28 +01:00
long_string = 'Hello world! ' * 100
2015-04-02 01:50:20 +02:00
label.setText(long_string)
label.show()
assert check(label._elided_text)
def test_settext_empty(mocker, qtbot):
"""Make sure using setText('') works and runs repaint."""
label = TextBase()
qtbot.add_widget(label)
mocker.patch('qutebrowser.mainwindow.statusbar.textbase.TextBase.repaint',
autospec=True)
label.setText('')
label.repaint.assert_called_with()
def test_resize(qtbot):
"""Make sure the elided text is updated when resizing."""
label = TextBase()
qtbot.add_widget(label)
long_string = 'Hello world! ' * 20
label.setText(long_string)
2016-10-26 07:42:41 +02:00
with qtbot.waitExposed(label):
label.show()
text_1 = label._elided_text
label.resize(20, 50)
text_2 = label._elided_text
assert text_1 != text_2
def test_text_elide_none(mocker, qtbot):
"""Make sure the text doesn't get elided if it's empty."""
label = TextBase()
qtbot.add_widget(label)
label.setText('')
mocker.patch('qutebrowser.mainwindow.statusbar.textbase.TextBase.'
'fontMetrics')
label._update_elided_text(20)
assert not label.fontMetrics.called
2015-08-12 07:41:06 +02:00
def test_unset_text(qtbot):
"""Make sure the text is cleared properly."""
label = TextBase()
qtbot.add_widget(label)
label.setText('foo')
label.setText('')
assert not label._elided_text