summaryrefslogtreecommitdiff
path: root/tests/unit/mainwindow/test_tabwidget.py
blob: 1547d905a8305168d7a75f53cf049f5ff21ebaa6 (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
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:

# Copyright 2015 Daniel Schadt
#
# 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

from qutebrowser.mainwindow import tabwidget
from qutebrowser.config import configtypes
from PyQt5.QtGui import QIcon, QPixmap, QFont, QColor


class TestTabWidget:

    """Tests for TabWidget."""

    CONFIG = {
        'fonts': {
            'tabbar': QFont(),
        },
        'tabs': {
            'show-switching-delay': 800,
            'movable': True,
            'position': 0,
            'select-on-remove': 1,
            'show': 'always',
            'padding': configtypes.PaddingValues(0, 0, 5, 5),
            'indicator-width': 3,
            'indicator-padding': configtypes.PaddingValues(2, 2, 0, 4),
            'title-format': '{index}: {title}',
        },
        'colors': {
            'tabs.bg.bar': QColor(),
            'tabs.bg.selected.even': QColor(),
            'tabs.fg.selected.even': QColor(),
        }
    }

    @pytest.fixture
    def widget(self, qtbot, config_stub):
        config_stub.data = self.CONFIG
        w = tabwidget.TabWidget(0)
        qtbot.addWidget(w)
        return w

    def test_small_icon_doesnt_crash(self, widget, qtbot, stubs):
        """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)
        page = stubs.FakeWebView()
        widget.addTab(page, icon, 'foobar')
        widget.show()
        qtbot.waitForWindowShown(widget)