2015-10-23 14:01:22 +02:00
|
|
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
|
|
|
|
2018-02-05 12:19:50 +01:00
|
|
|
# Copyright 2015-2018 Daniel Schadt
|
2015-10-23 14:01:22 +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/>.
|
|
|
|
|
|
|
|
"""Tests for the custom TabWidget/TabBar."""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2017-07-04 15:33:58 +02:00
|
|
|
from PyQt5.QtGui import QIcon, QPixmap
|
2015-10-23 14:01:22 +02:00
|
|
|
|
2018-02-10 21:10:33 +01:00
|
|
|
from qutebrowser.mainwindow import tabwidget, tabbedbrowser
|
2017-02-05 17:09:04 +01:00
|
|
|
from qutebrowser.utils import usertypes
|
|
|
|
|
2015-10-23 14:01:22 +02:00
|
|
|
|
|
|
|
class TestTabWidget:
|
|
|
|
|
2015-10-24 01:32:01 +02:00
|
|
|
"""Tests for TabWidget."""
|
|
|
|
|
2015-10-23 14:01:22 +02:00
|
|
|
@pytest.fixture
|
2017-02-05 17:09:04 +01:00
|
|
|
def widget(self, qtbot, monkeypatch, config_stub):
|
2015-10-23 14:01:22 +02:00
|
|
|
w = tabwidget.TabWidget(0)
|
|
|
|
qtbot.addWidget(w)
|
2017-02-05 17:09:04 +01:00
|
|
|
monkeypatch.setattr(tabwidget.objects, 'backend',
|
|
|
|
usertypes.Backend.QtWebKit)
|
2015-10-23 14:01:22 +02:00
|
|
|
return w
|
|
|
|
|
2018-02-10 21:10:33 +01:00
|
|
|
@pytest.fixture
|
|
|
|
def browser(self, qtbot, monkeypatch, config_stub):
|
|
|
|
w = tabbedbrowser.TabbedBrowser(win_id=0, private=False)
|
|
|
|
qtbot.addWidget(w)
|
|
|
|
monkeypatch.setattr(tabwidget.objects, 'backend',
|
|
|
|
usertypes.Backend.QtWebKit)
|
|
|
|
return w
|
|
|
|
|
2016-07-08 18:48:24 +02:00
|
|
|
def test_small_icon_doesnt_crash(self, widget, qtbot, fake_web_tab):
|
2015-10-23 14:01:22 +02:00
|
|
|
"""Test that setting a small icon doesn't produce a crash.
|
|
|
|
|
|
|
|
Regression test for #1015.
|
|
|
|
"""
|
|
|
|
# Size taken from issue report
|
|
|
|
pixmap = QPixmap(72, 1)
|
|
|
|
icon = QIcon(pixmap)
|
2016-07-08 18:48:24 +02:00
|
|
|
tab = fake_web_tab()
|
2016-07-05 17:46:08 +02:00
|
|
|
widget.addTab(tab, icon, 'foobar')
|
2016-10-26 07:42:41 +02:00
|
|
|
|
|
|
|
with qtbot.waitExposed(widget):
|
|
|
|
widget.show()
|
2017-10-26 23:56:28 +02:00
|
|
|
|
2018-02-10 21:10:33 +01:00
|
|
|
@pytest.mark.parametrize("num_tabs", [4, 10])
|
2017-10-26 23:56:28 +02:00
|
|
|
def test_update_tab_titles_benchmark(self, benchmark, widget,
|
2018-02-10 21:10:33 +01:00
|
|
|
qtbot, fake_web_tab, num_tabs):
|
2017-10-26 23:56:28 +02:00
|
|
|
"""Benchmark for update_tab_titles."""
|
2018-02-10 21:10:33 +01:00
|
|
|
for i in range(num_tabs):
|
|
|
|
widget.addTab(fake_web_tab(), 'foobar' + str(i))
|
2017-10-26 23:56:28 +02:00
|
|
|
|
|
|
|
with qtbot.waitExposed(widget):
|
|
|
|
widget.show()
|
|
|
|
|
2018-02-15 12:02:42 +01:00
|
|
|
benchmark(widget.update_tab_titles)
|
2018-02-10 21:10:33 +01:00
|
|
|
|
|
|
|
@pytest.mark.parametrize("num_tabs", [4, 10])
|
|
|
|
def test_add_remove_tab_benchmark(self, benchmark, browser,
|
|
|
|
qtbot, fake_web_tab, num_tabs):
|
|
|
|
"""Benchmark for addTab and removeTab."""
|
|
|
|
def _run_bench():
|
|
|
|
for i in range(num_tabs):
|
2018-02-15 12:02:42 +01:00
|
|
|
browser.widget.addTab(fake_web_tab(), 'foobar' + str(i))
|
2018-02-10 21:10:33 +01:00
|
|
|
|
|
|
|
with qtbot.waitExposed(browser):
|
|
|
|
browser.show()
|
|
|
|
|
|
|
|
browser.shutdown()
|
|
|
|
|
|
|
|
benchmark(_run_bench)
|