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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
# (C) Copyright 2004-2023 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!
""" Implement the interface of AbstractTargetRegistry to support
dynamic checking on the target.
"""
import inspect
from traitsui.testing.tester._abstract_target_registry import (
AbstractTargetRegistry,
)
from traitsui.testing.tester.exceptions import (
InteractionNotSupported,
LocationNotSupported,
)
class DynamicTargetRegistry(AbstractTargetRegistry):
"""Registry to support testing targets that satisfy a given criterion.
An instance of this registry can be used with ``UITester`` and
``UIWrapper`` such that all given interactions and handlers will be
applicable to any target that deemed to be supported by ``can_support``.
The general priority rule applies. See :ref:`testing-how-extension-works`
in the User Manual for further details.
For stricter checks on the target type, use
:class:`~traitsui.testing.tester.target_registry.TargetRegistry`.
As an example, this registry::
registry = DynamicTargetRegistry(
can_support=lambda target: target.__class__ is MyEditorClass,
interaction_to_handler={MyAction: handler},
)
has equivalent behaviors compared to this registry::
registry = TargetRegistry()
registry.register_interaction(MyEditorClass, MyAction, handler)
Parameters
----------
can_support : callable(target) -> bool
A callable that return true if the given target is supported
by the registry.
interaction_to_handler : dict(type, callable)
A dictionary mapping from interaction type to handler callables.
Each handler callable in the values should have the signature
``callable(UIWrapper, interaction) -> any``, where ``instance`` should
have the type defined in the associated key.
"""
def __init__(self, *, can_support, interaction_to_handler):
self.can_support = can_support
self.interaction_to_handler = interaction_to_handler
def _get_handler(self, target, interaction):
"""Return a callable for handling an interaction for a given target.
This is an implementation for an abstract method.
Parameters
----------
target : any
The UI target being operated on.
interaction : any
Any interaction object.
Returns
-------
handler : callable(UIWrapper, interaction) -> any
The function to handle the given interaction on a target.
Raises
------
InteractionNotSupported
If the given target and interaction types are not supported
by this registry.
"""
if interaction.__class__ not in self._get_interactions(target):
raise InteractionNotSupported(
target_class=target.__class__,
interaction_class=interaction.__class__,
supported=list(self._get_interactions(target)),
)
return self.interaction_to_handler[interaction.__class__]
def _get_interactions(self, target):
"""Returns all the interactions supported for the given target.
This is an implementation for an abstract method.
Parameters
----------
target : any
The UI target for which supported interactions are queried.
Returns
-------
interaction_classes : set
Supported interaction types for the given target type.
"""
if self.can_support(target):
return set(self.interaction_to_handler)
return set()
def _get_interaction_doc(self, target, interaction_class):
"""Return the documentation for the given target and interaction type.
This is an implementation for an abstract method.
Parameters
----------
target : any
The UI target for which the interaction will be applied.
interaction_class : subclass of type
Any class.
Returns
-------
doc : str
Raises
------
InteractionNotSupported
If the given target and interaction types are not supported
by this registry.
"""
if interaction_class not in self._get_interactions(target):
raise InteractionNotSupported(
target_class=target.__class__,
interaction_class=interaction_class,
supported=list(self._get_interactions(target)),
)
return inspect.getdoc(interaction_class)
def _get_solver(self, target, location):
"""Return a callable registered for resolving a location for the
given target and location.
This is an implementation for an abstract method.
Parameters
----------
target : any
The UI target being operated on.
location : subclass of type
The location to be resolved on the target.
Raises
------
LocationNotSupported
If the given locator and target types are not supported.
"""
raise LocationNotSupported(
target_class=target.__class__,
locator_class=location.__class__,
supported=[],
)
def _get_locations(self, target):
"""Returns all the location types supported for the given target.
This is an implementation for an abstract method.
Parameters
----------
target : any
The UI target for which supported location types are queried.
Returns
-------
locators_classes : set
Supported locator types for the given target type.
"""
return set()
def _get_location_doc(self, target, locator_class):
"""Return the documentation for the given target and locator type.
This is an implementation for an abstract method.
Parameters
----------
target : any
The UI target being operated on.
locator_class : subclass of type
Any class.
Returns
-------
doc : str
Raises
------
LocationNotSupported
If the given locator and target types are not supported.
"""
raise LocationNotSupported(
target_class=target.__class__,
locator_class=locator_class,
supported=[],
)
|