-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathtest_gui_class.py
More file actions
252 lines (193 loc) · 6.09 KB
/
Copy pathtest_gui_class.py
File metadata and controls
252 lines (193 loc) · 6.09 KB
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import contextlib
import sys
from dataclasses import asdict, dataclass
from typing import TYPE_CHECKING, ClassVar
from unittest.mock import Mock
import psygnal
import pytest
from psygnal import SignalGroupDescriptor
from magicgui.schema._guiclass import (
GuiBuilder,
GuiClass,
button,
guiclass,
is_guiclass,
unbind_gui_from_instance,
)
from magicgui.widgets import Container, PushButton
def test_guiclass() -> None:
"""Test that the guiclass decorator works as expected."""
mock = Mock()
@guiclass
class Foo:
a: int = 1
b: str = "bar"
@button
def func(self) -> dict:
d = asdict(self)
mock(d)
return d
# example recommended for type checking
if TYPE_CHECKING:
gui: ClassVar[Container]
events: ClassVar[psygnal.SignalGroup]
foo = Foo()
assert foo.a == 1
assert foo.b == "bar"
assert isinstance(foo.gui, Container)
assert isinstance(foo.gui.func, PushButton)
assert foo.gui.a.value == 1
assert foo.gui.b.value == "bar"
foo.gui.a.value = 3
assert foo.a == 3
foo.b = "baz"
assert foo.gui.b.value == "baz"
foo.func()
mock.assert_called_once_with({"a": 3, "b": "baz"})
assert is_guiclass(Foo)
assert is_guiclass(foo)
def test_guiclass2() -> None:
"""Test that the guiclass descriptor works as expected."""
mock = Mock()
# this is a more direct way to create a guiclass, by using GuiBuilder directly
# and (optionally) using SignalGroupDescriptor
@dataclass
class Foo:
a: int = 1
b: str = "bar"
@button
def func(self) -> dict:
d = asdict(self)
mock(d)
return d
# with explicit descriptors for type checking
gui: ClassVar[GuiBuilder] = GuiBuilder()
# also optional, since GuiBuilder will do it automatically
events: ClassVar[SignalGroupDescriptor] = SignalGroupDescriptor()
foo = Foo()
assert foo.a == 1
assert foo.b == "bar"
assert isinstance(foo.gui, Container)
assert isinstance(foo.gui.get_widget("func"), PushButton)
assert foo.gui.a.value == 1
assert foo.gui.b.value == "bar"
foo.gui.a.value = 3
assert foo.a == 3
foo.b = "baz"
assert foo.gui.b.value == "baz"
foo.func()
mock.assert_called_once_with({"a": 3, "b": "baz"})
assert is_guiclass(Foo)
assert is_guiclass(foo)
def test_frozen_guiclass() -> None:
"""Test that the guiclass decorator works as expected."""
with pytest.raises(ValueError, match="not support dataclasses with `frozen=True`"):
@guiclass(frozen=True)
class Foo:
a: int = 1
b: str = "bar"
def test_on_existing_dataclass() -> None:
"""Test that the guiclass decorator works on pre-existing dataclasses."""
@guiclass
@dataclass
class Foo:
a: int = 1
b: str = "bar"
foo = Foo()
assert foo.a == 1
assert foo.b == "bar"
assert isinstance(foo.gui, Container)
@pytest.mark.skipif(
sys.version_info < (3, 11), reason="weakref_slot are python3.11 or higher"
)
def test_slots_guiclass() -> None:
"""Test that the guiclass decorator works as expected."""
psyg_v = tuple(int(x.split("r")[0]) for x in psygnal.__version__.split(".")[:3])
old_psygnal = psyg_v < (0, 6, 1)
# if you don't use weakref_slot, it will still work, but you'll get a warning
# during signal connection on gui-creation
@guiclass(slots=True, weakref_slot=True)
class Foo:
a: int = 1
b: str = "bar"
foo = Foo()
with (
pytest.warns(UserWarning, match="Please update psygnal")
if old_psygnal
else contextlib.nullcontext()
):
gui = foo.gui
# note that with slots=True, the gui is recreated on every access
assert foo.gui is not gui
assert isinstance(gui, Container)
assert gui.a.value == 1
foo.b = "baz"
assert gui.b.value == "baz"
gui.a.value = 3
if old_psygnal:
# no change :(
assert foo.a == 1
assert len(gui.a.changed._slots) == 2
else:
assert foo.a == 3
assert len(gui.a.changed._slots) == 3
unbind_gui_from_instance(gui, foo)
assert len(gui.a.changed._slots) == 2
del foo
def test_guiclass_as_class() -> None:
# variant on @guiclass, using class instead of decorator
class T2(GuiClass):
x: int
y: str = "hi"
@button
def foo(self) -> dict:
return asdict(self)
t2 = T2(1)
assert t2.x == 1
assert t2.y == "hi"
assert t2.gui.x.value == 1
assert t2.gui.y.value == "hi"
t2.gui.x.value = 3
assert t2.x == 3
t2.y = "baz"
assert t2.gui.y.value == "baz"
assert isinstance(t2.gui.foo, PushButton)
assert t2.foo() == {"x": 3, "y": "baz"}
def test_path_update() -> None:
"""One off test for FileEdits... which weren't updating.
(The deeper issue is that things like FileEdit don't subclass ValueWidget...)
"""
from pathlib import Path
@guiclass
class MyGuiClass:
a: Path = Path("blabla")
obj = MyGuiClass()
assert obj.gui.a.value.stem == "blabla"
assert obj.a.stem == "blabla"
obj.gui.a.value = "foo"
assert obj.gui.a.value.stem == "foo"
assert obj.a.stem == "foo"
def test_list_edit_in_guiclass():
@guiclass
class MyGuiClass:
x: list[int]
obj = MyGuiClass([0])
events_mock = Mock()
gui_mock = Mock()
obj.events.x.connect(events_mock)
obj.gui.x.changed.connect(gui_mock)
events_mock.assert_not_called()
gui_mock.assert_not_called()
obj.gui.x.btn_plus.changed()
events_mock.assert_called_once_with([0, 0], [0])
gui_mock.assert_called_once_with([0, 0])
def test_name_collisions() -> None:
"""Test that dataclasses can have names colliding with widget attributes."""
@guiclass
class Foo:
name: str = "foo"
annotation: str = "bar"
foo = Foo()
assert isinstance(foo.gui, Container)
foo.gui.update({"name": "baz", "annotation": "qux"})
assert asdict(foo) == {"name": "baz", "annotation": "qux"}