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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
|
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import pytest
from gi import PyGIDeprecationWarning
from gi.repository import GObject, GLib
from gi._compat import PY2
from .helper import ignore_gi_deprecation_warnings
def test_stop_emission_deprec():
class TestObject(GObject.GObject):
int_prop = GObject.Property(default=0, type=int)
obj = TestObject()
def notify_callback(obj, *args):
with pytest.warns(PyGIDeprecationWarning):
obj.stop_emission("notify::int-prop")
with pytest.warns(PyGIDeprecationWarning):
obj.emit_stop_by_name("notify::int-prop")
obj.stop_emission_by_name("notify::int-prop")
obj.connect("notify::int-prop", notify_callback)
obj.notify("int-prop")
def test_signal_parse_name():
obj = GObject.GObject()
assert GObject.signal_parse_name("notify", obj, True) == (1, 0)
with pytest.raises(ValueError):
GObject.signal_parse_name("foobar", obj, True)
def test_signal_query():
obj = GObject.GObject()
res = GObject.signal_query("notify", obj)
assert res.signal_name == "notify"
assert res.itype == obj.__gtype__
res = GObject.signal_query("foobar", obj)
assert res is None
def test_value_repr():
v = GObject.Value()
assert repr(v) == "<Value (invalid) None>"
v = GObject.Value(int, 0)
assert repr(v) == "<Value (gint) 0>"
def test_value_no_init():
v = GObject.Value()
with pytest.raises(TypeError):
v.set_value(0)
v.init(GObject.TYPE_LONG)
assert v.get_value() == 0
v.set_value(0)
def test_value_invalid_type():
v = GObject.Value()
assert v.g_type == GObject.TYPE_INVALID
assert isinstance(GObject.TYPE_INVALID, GObject.GType)
with pytest.raises(ValueError, match="Invalid GType"):
v.init(GObject.TYPE_INVALID)
with pytest.raises(
TypeError, match="GObject.Value needs to be initialized first"):
v.set_value(None)
assert v.get_value() is None
def test_value_long():
v = GObject.Value(GObject.TYPE_LONG)
assert v.get_value() == 0
v.set_value(0)
assert v.get_value() == 0
v.set_value(GLib.MAXLONG)
assert v.get_value() == GLib.MAXLONG
v.set_value(GLib.MINLONG)
assert v.get_value() == GLib.MINLONG
with pytest.raises(OverflowError):
v.set_value(GLib.MAXLONG + 1)
with pytest.raises(OverflowError):
v.set_value(GLib.MINLONG - 1)
def test_value_ulong():
v = GObject.Value(GObject.TYPE_ULONG)
assert v.get_value() == 0
v.set_value(0)
assert v.get_value() == 0
v.set_value(GLib.MAXULONG)
assert v.get_value() == GLib.MAXULONG
with pytest.raises(OverflowError):
v.set_value(GLib.MAXULONG + 1)
with pytest.raises(OverflowError):
v.set_value(-1)
def test_value_uint64():
v = GObject.Value(GObject.TYPE_UINT64)
assert v.get_value() == 0
v.set_value(0)
assert v.get_value() == 0
v.set_value(GLib.MAXUINT64)
assert v.get_value() == GLib.MAXUINT64
with pytest.raises(OverflowError):
v.set_value(GLib.MAXUINT64 + 1)
with pytest.raises(OverflowError):
v.set_value(-1)
def test_value_int64():
v = GObject.Value(GObject.TYPE_INT64)
assert v.get_value() == 0
v.set_value(0)
assert v.get_value() == 0
v.set_value(GLib.MAXINT64)
assert v.get_value() == GLib.MAXINT64
v.set_value(GLib.MININT64)
assert v.get_value() == GLib.MININT64
with pytest.raises(OverflowError):
v.set_value(GLib.MAXINT64 + 1)
with pytest.raises(OverflowError):
v.set_value(GLib.MININT64 - 1)
def test_value_pointer():
v = GObject.Value(GObject.TYPE_POINTER)
assert v.get_value() == 0
v.set_value(42)
assert v.get_value() == 42
v.set_value(0)
assert v.get_value() == 0
def test_value_unichar():
assert GObject.TYPE_UNICHAR == GObject.TYPE_UINT
v = GObject.Value(GObject.TYPE_UNICHAR)
assert v.get_value() == 0
v.set_value(42)
assert v.get_value() == 42
v.set_value(GLib.MAXUINT)
assert v.get_value() == GLib.MAXUINT
def test_value_gtype():
class TestObject(GObject.GObject):
pass
v = GObject.Value(GObject.TYPE_GTYPE)
assert v.get_value() == GObject.TYPE_INVALID
v.set_value(TestObject.__gtype__)
assert v.get_value() == TestObject.__gtype__
v.set_value(TestObject)
assert v.get_value() == TestObject.__gtype__
with pytest.raises(TypeError):
v.set_value(None)
def test_value_variant():
v = GObject.Value(GObject.TYPE_VARIANT)
assert v.get_value() is None
variant = GLib.Variant('i', 42)
v.set_value(variant)
assert v.get_value() == variant
v.set_value(None)
assert v.get_value() is None
with pytest.raises(TypeError):
v.set_value(object())
def test_value_param():
# FIXME: set_value and get_value trigger a critical
# GObject.Value(GObject.TYPE_PARAM)
pass
def test_value_string():
v = GObject.Value(GObject.TYPE_STRING)
assert v.get_value() is None
if PY2:
v.set_value(b"bar")
assert v.get_value() == b"bar"
v.set_value(u"öäü")
assert v.get_value().decode("utf-8") == u"öäü"
else:
with pytest.raises(TypeError):
v.set_value(b"bar")
v.set_value(u"quux")
assert v.get_value() == u"quux"
assert isinstance(v.get_value(), str)
v.set_value(None)
assert v.get_value() is None
def test_value_pyobject():
class Foo(object):
pass
v = GObject.Value(GObject.TYPE_PYOBJECT)
assert v.get_value() is None
for obj in [Foo(), None, 42, "foo"]:
v.set_value(obj)
assert v.get_value() == obj
@ignore_gi_deprecation_warnings
def test_value_char():
v = GObject.Value(GObject.TYPE_CHAR)
assert v.get_value() == 0
v.set_value(42)
assert v.get_value() == 42
v.set_value(-1)
assert v.get_value() == -1
v.set_value(b"a")
assert v.get_value() == 97
v.set_value(b"\x00")
assert v.get_value() == 0
with pytest.raises(TypeError):
v.set_value(u"a")
with pytest.raises(OverflowError):
v.set_value(128)
def test_value_uchar():
v = GObject.Value(GObject.TYPE_UCHAR)
assert v.get_value() == 0
v.set_value(200)
assert v.get_value() == 200
v.set_value(b"a")
assert v.get_value() == 97
v.set_value(b"\x00")
assert v.get_value() == 0
with pytest.raises(TypeError):
v.set_value(u"a")
with pytest.raises(OverflowError):
v.set_value(256)
def test_value_set_boxed_deprecate_non_boxed():
v = GObject.Value(GObject.TYPE_POINTER)
with pytest.warns(PyGIDeprecationWarning):
v.get_boxed()
with pytest.warns(PyGIDeprecationWarning):
v.set_boxed(None)
def test_value_boolean():
v = GObject.Value(GObject.TYPE_BOOLEAN)
assert v.get_value() is False
assert isinstance(v.get_value(), bool)
v.set_value(42)
assert v.get_value() is True
v.set_value(-1)
assert v.get_value() is True
v.set_value(0)
assert v.get_value() is False
v.set_value([])
assert v.get_value() is False
v.set_value(["foo"])
assert v.get_value() is True
v.set_value(None)
assert v.get_value() is False
|