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
|
# SPDX-License-Identifier: GPL-2.0-only
import typing
from PyQt6 import QtWidgets
import pytest
from pytestqt.qtbot import QtBot
import setools
from setoolsgui.widgets.boundsquery import BoundsQueryTab
@pytest.fixture
def widget(mock_policy, request: pytest.FixtureRequest, qtbot: QtBot) -> BoundsQueryTab:
"""Pytest fixture to set up the widget."""
marker = request.node.get_closest_marker("obj_args")
kwargs = marker.kwargs if marker else {}
w = BoundsQueryTab(mock_policy, **kwargs)
qtbot.addWidget(w)
w.show()
return w
def test_docs(widget: BoundsQueryTab) -> None:
"""Check that docs are provided for the widget."""
assert widget.whatsThis()
assert widget.table_results.whatsThis()
assert widget.raw_results.whatsThis()
for w in widget.criteria:
assert w.toolTip()
assert w.whatsThis()
results = typing.cast(QtWidgets.QTabWidget, widget.results)
for index in range(results.count()):
assert results.tabWhatsThis(index)
def test_layout(widget: BoundsQueryTab) -> None:
"""Test the layout of the criteria frame."""
rt, parent, child = widget.criteria
assert widget.criteria_frame_layout.columnCount() == 2
assert widget.criteria_frame_layout.rowCount() == 3
assert widget.criteria_frame_layout.itemAtPosition(0, 0).widget() == rt
assert widget.criteria_frame_layout.itemAtPosition(0, 1) is None
assert widget.criteria_frame_layout.itemAtPosition(1, 0).widget() == parent
assert widget.criteria_frame_layout.itemAtPosition(1, 1).widget() == child
assert widget.criteria_frame_layout.itemAtPosition(2, 0).widget() == widget.buttonBox
assert widget.criteria_frame_layout.itemAtPosition(2, 1).widget() == widget.buttonBox
def test_criteria_mapping(widget: BoundsQueryTab) -> None:
"""Test that widgets save to the correct query fields."""
rt, parent, child = widget.criteria
assert isinstance(widget.query, setools.BoundsQuery)
assert rt.attrname == "ruletype"
assert parent.attrname == "parent"
assert child.attrname == "child"
|