Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
traitsui / tests / test_labels.py
Size: Mime:
# (C) Copyright 2004-2021 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

"""
Test the creation and layout of labels.
"""
import unittest

from traits.has_traits import HasTraits
from traits.trait_types import Bool, Str
from traitsui.view import View
from traitsui.item import Item
from traitsui.group import VGroup, HGroup

from traitsui.tests._tools import (
    BaseTestMixin,
    create_ui,
    is_control_enabled,
    is_qt,
    requires_toolkit,
    reraise_exceptions,
    ToolkitName,
)


_DIALOG_WIDTH = 500


class ShowRightLabelsDialog(HasTraits):
    """ Dialog with labels on the left/right to test the label text.
    """

    bool_item = Bool(True)

    traits_view = View(
        VGroup(
            VGroup(Item("bool_item"), show_left=False),
            VGroup(Item("bool_item"), show_left=True),
        )
    )


class HResizeTestDialog(HasTraits):
    """ Dialog with checkbox and text elements and labels on the right.
    We test the separation between element and label in HGroups.
    """

    bool_item = Bool(True)
    txt_item = Str()

    traits_view = View(
        VGroup(
            HGroup(Item("bool_item", springy=True), show_left=False),
            VGroup(Item("txt_item", resizable=True), show_left=False),
        ),
        width=_DIALOG_WIDTH,
        height=100,
        resizable=True,
    )


class VResizeTestDialog(HasTraits):
    """ Dialog with checkbox and text elements and labels on the right.
    We test the separation between element and label in VGroups.
    """

    bool_item = Bool(True)
    txt_item = Str()

    traits_view = View(
        VGroup(
            VGroup(Item("bool_item", resizable=True), show_left=False),
            VGroup(Item("txt_item", resizable=True), show_left=False),
        ),
        width=_DIALOG_WIDTH,
        height=100,
        resizable=True,
    )


class NoLabelResizeTestDialog(HasTraits):
    """ Test the combination show_label=False, show_left=False.
    """

    bool_item = Bool(True)

    traits_view = View(
        VGroup(
            Item("bool_item", resizable=True, show_label=False),
            show_left=False,
        ),
        resizable=True,
    )


class EnableWhenDialog(HasTraits):
    """ Test labels for enable when. """

    bool_item = Bool(True)

    labelled_item = Str("test")

    unlabelled_item = Str("test")

    traits_view = View(
        VGroup(
            Item("bool_item"),
            Item("labelled_item", enabled_when="bool_item"),
            Item(
                "unlabelled_item", enabled_when="bool_item", show_label=False
            ),
        ),
        resizable=True,
    )


class TestLabels(BaseTestMixin, unittest.TestCase):

    def setUp(self):
        BaseTestMixin.setUp(self)

    def tearDown(self):
        BaseTestMixin.tearDown(self)

    @requires_toolkit([ToolkitName.qt])
    def test_qt_show_labels_right_without_colon(self):
        # Behavior: traitsui should not append a colon ':' to labels
        # that are shown to the *right* of the corresponding elements

        from pyface import qt
        dialog = ShowRightLabelsDialog()
        with reraise_exceptions(), \
                create_ui(dialog) as ui:

            # get reference to label objects
            labels = ui.control.findChildren(qt.QtGui.QLabel)

            # the first is shown to the right, so no colon
            self.assertFalse(labels[0].text().endswith(":"))

            # the second is shown to the right, it should have a colon
            self.assertTrue(labels[1].text().endswith(":"))

    def _test_qt_labels_right_resizing(self, dialog_class):
        # Bug: In the Qt backend, resizing a checkbox element with a label on
        # the right resizes the checkbox, even though it cannot be.
        # The final effect is that the label remains attached to the right
        # margin, with a big gap between it and the checkbox. In this case, the
        # label should be made resizable instead.
        # On the other hand, a text element should keep the current behavior
        # and resize.

        from pyface import qt

        with reraise_exceptions(), \
                create_ui(dialog_class()) as ui:

            # all labels
            labels = ui.control.findChildren(qt.QtGui.QLabel)

            # the checkbox and its label should be close to one another; the
            # size of the checkbox should be small
            checkbox_label = labels[0]
            checkbox = ui.control.findChild(qt.QtGui.QCheckBox)

            # horizontal space between checkbox and label should be small
            h_space = checkbox_label.x() - checkbox.x()
            self.assertLess(h_space, 100)
            # and the checkbox size should also be small
            self.assertLess(checkbox.width(), 100)

            # the text item and its label should be close to one another; the
            # size of the text item should be large
            text_label = labels[0]
            text = ui.control.findChild(qt.QtGui.QLineEdit)

            # horizontal space between text and label should be small
            h_space = text_label.x() - text.x()
            self.assertLess(h_space, 100)
            # and the text item size should be large
            self.assertGreater(text.width(), _DIALOG_WIDTH - 200)

            # the size of the window should still be 500
            self.assertEqual(ui.control.width(), _DIALOG_WIDTH)

    @requires_toolkit([ToolkitName.qt])
    def test_qt_labels_right_resizing_vertical(self):
        self._test_qt_labels_right_resizing(VResizeTestDialog)

    @requires_toolkit([ToolkitName.qt])
    def test_qt_labels_right_resizing_horizontal(self):
        self._test_qt_labels_right_resizing(HResizeTestDialog)

    @requires_toolkit([ToolkitName.qt, ToolkitName.wx])
    def test_labels_enabled_when(self):
        # Behaviour: label should enable/disable along with editor

        dialog = EnableWhenDialog()
        with reraise_exceptions(), \
                create_ui(dialog) as ui:

            labelled_editor = ui.get_editors("labelled_item")[0]

            if is_qt():
                unlabelled_editor = ui.get_editors("unlabelled_item")[0]
                self.assertIsNone(unlabelled_editor.label_control)

            self.assertTrue(is_control_enabled(labelled_editor.label_control))

            dialog.bool_item = False

            self.assertFalse(is_control_enabled(labelled_editor.label_control))

            dialog.bool_item = True


@requires_toolkit([ToolkitName.qt, ToolkitName.wx])
class TestAnyToolkit(BaseTestMixin, unittest.TestCase):
    """ Toolkit-agnostic tests for labels with different orientations."""

    def setUp(self):
        BaseTestMixin.setUp(self)

    def tearDown(self):
        BaseTestMixin.tearDown(self)

    def test_group_show_right_labels(self):
        with reraise_exceptions(), \
                create_ui(ShowRightLabelsDialog()):
            pass

    def test_horizontal_resizable_and_labels(self):
        with reraise_exceptions(), \
                create_ui(HResizeTestDialog()):
            pass

    def test_all_resizable_with_labels(self):
        with reraise_exceptions(), \
                create_ui(VResizeTestDialog()):
            pass

    def test_show_right_with_no_label(self):
        # Bug: If one set show_left=False, show_label=False on a non-resizable
        # item like a checkbox, the Qt backend tried to set the label's size
        # policy and failed because label=None.
        with reraise_exceptions(), \
                create_ui(NoLabelResizeTestDialog()):
            pass

    def test_enable_when_flag(self):
        with reraise_exceptions(), \
                create_ui(EnableWhenDialog()):
            pass


if __name__ == "__main__":
    # Execute from command line for manual testing
    vw = HResizeTestDialog()
    vw.configure_traits()