forked from wjakob/nanobind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_holders.py
352 lines (288 loc) · 10.5 KB
/
test_holders.py
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
import sys
import test_holders_ext as t
import pytest
from common import collect
@pytest.fixture
def clean():
collect()
t.reset()
# ------------------------------------------------------------------
def test01_create(clean):
e = t.Example(123)
assert e.value == 123
assert t.query_shared_1(e) == 123
assert t.query_shared_2(e) == 123
assert t.query_shared_3(e) == 123
del e
collect()
assert t.stats() == (1, 1)
def test02_sharedptr_from_python(clean):
e = t.Example(234)
w = t.SharedWrapper(e)
assert w.ptr is e
del e
collect()
assert t.stats() == (1, 0)
del w
collect()
assert t.stats() == (1, 1)
w = t.SharedWrapper(t.Example(234))
collect()
assert t.stats() == (2, 1)
w.ptr = t.Example(0)
collect()
assert t.stats() == (3, 2)
del w
collect()
assert t.stats() == (3, 3)
def test03_sharedptr_from_cpp(clean):
e = t.Example.make(5)
assert t.passthrough(e) is e
assert t.passthrough_2(e) is e
assert t.query_shared_1(e) == 5
assert t.query_shared_2(e) == 5
assert t.query_shared_3(e) == 5
w = t.SharedWrapper(e)
assert e is not w.value
assert w.value == 5
w.value = 6
assert e.value == 6
del w, e
e = t.Example.make_shared(6)
assert t.query_shared_1(e) == 6
assert t.query_shared_2(e) == 6
assert t.query_shared_3(e) == 6
assert t.passthrough(e) is e
assert t.passthrough_2(e) is e
w = t.SharedWrapper(e)
assert e is not w.value
assert w.value == 6
del w, e
collect()
assert t.stats() == (2, 2)
# ------------------------------------------------------------------
def test04_uniqueptr_from_cpp(clean):
a = t.unique_from_cpp()
b = t.unique_from_cpp_2()
assert a.value == 1
assert b.value == 2
del a, b
collect()
assert t.stats() == (2, 2)
def test05_uniqueptr_from_cpp(clean):
# Test ownership exchange when the object has been created on the C++ side
a = t.unique_from_cpp()
b = t.unique_from_cpp_2()
wa = t.UniqueWrapper(a)
wb = t.UniqueWrapper(b)
with pytest.warns(RuntimeWarning, match='nanobind: attempted to access an uninitialized instance of type \'test_holders_ext.Example\'!'):
with pytest.raises(TypeError) as excinfo:
assert a.value == 1
assert 'incompatible function arguments' in str(excinfo.value)
with pytest.warns(RuntimeWarning, match='nanobind: attempted to access an uninitialized instance of type \'test_holders_ext.Example\'!'):
with pytest.raises(TypeError) as excinfo:
assert b.value == 2
assert 'incompatible function arguments' in str(excinfo.value)
del a, b
del wa, wb
collect()
assert t.stats() == (2, 2)
t.reset()
a = t.unique_from_cpp()
b = t.unique_from_cpp_2()
wa = t.UniqueWrapper(a)
wb = t.UniqueWrapper(b)
a2 = wa.get()
b2 = wb.get()
assert a2.value == 1 and b2.value == 2
assert a2 is a and b2 is b
assert a.value == 1 and b.value == 2
collect()
assert t.stats() == (2, 0)
del a, b, a2, b2
collect()
assert t.stats() == (2, 2)
def test06_uniqueptr_from_py(clean):
# Test ownership exchange when the object has been created on the Python side
a = t.Example(1)
with pytest.warns(RuntimeWarning, match=r'nanobind::detail::nb_relinquish_ownership()'):
with pytest.raises(TypeError) as excinfo:
wa = t.UniqueWrapper(a)
wa = t.UniqueWrapper2(a)
with pytest.warns(RuntimeWarning, match='nanobind: attempted to access an uninitialized instance of type \'test_holders_ext.Example\'!'):
with pytest.raises(TypeError) as excinfo:
assert a.value == 1
assert 'incompatible function arguments' in str(excinfo.value)
a2 = wa.get()
assert a2.value == 1 and a is a2
del a, a2
collect()
assert t.stats() == (1, 1)
def test07_uniqueptr_passthrough(clean):
assert t.passthrough_unique(t.unique_from_cpp()).value == 1
assert t.passthrough_unique(t.unique_from_cpp_2()).value == 2
assert t.passthrough_unique_2(t.unique_from_cpp()).value == 1
assert t.passthrough_unique_2(t.unique_from_cpp_2()).value == 2
collect()
assert t.stats() == (4, 4)
t.reset()
with pytest.warns(RuntimeWarning, match=r'nanobind::detail::nb_relinquish_ownership()'):
with pytest.raises(TypeError):
assert t.passthrough_unique(t.Example(1)).value == 1
assert t.passthrough_unique_2(t.Example(1)).value == 1
collect()
assert t.stats() == (2, 2)
def test07_polymorphic_downcast_unique():
assert isinstance(t.u_factory(), t.Base)
assert isinstance(t.u_factory_2(), t.Base)
assert isinstance(t.u_polymorphic_factory(), t.PolymorphicSubclass)
assert isinstance(t.u_polymorphic_factory_2(), t.PolymorphicBase)
def test08_polymorphic_downcast_shared():
assert isinstance(t.s_factory(), t.Base)
assert isinstance(t.s_factory_2(), t.Base)
assert isinstance(t.s_polymorphic_factory(), t.PolymorphicSubclass)
assert isinstance(t.s_polymorphic_factory_2(), t.PolymorphicBase)
def test09_tag_based():
assert isinstance(t.make_pet(t.PetKind.Dog), t.Dog)
assert isinstance(t.make_pet(t.PetKind.Cat), t.Cat)
def test09_tag_based_unique():
assert isinstance(t.make_pet_u(t.PetKind.Dog), t.Dog)
assert isinstance(t.make_pet_u(t.PetKind.Cat), t.Cat)
def test09_tag_based_shared():
assert isinstance(t.make_pet_s(t.PetKind.Dog), t.Dog)
assert isinstance(t.make_pet_s(t.PetKind.Cat), t.Cat)
def check_shared_from_this_py_owned(ty, factory, value):
e = ty(value)
# Creating from Python does not enable shared_from_this
assert e.value == value
assert not e.has_shared_from_this()
assert t.owns_cpp(e)
# Passing to C++ as a shared_ptr does
w = t.SharedWrapperST(e)
assert e.has_shared_from_this()
assert w.ptr is e
# Execute shared_from_this on the C++ side
w2 = t.SharedWrapperST.from_existing(e)
assert e.use_count() == 2
assert w.value == w2.value == e.value == value
assert t.same_owner(w, w2)
# Returning a raw pointer from C++ locates the existing instance
assert w2.get_own() is w2.get_ref() is e
assert t.owns_cpp(e)
if hasattr(sys, "getrefcount"):
# One reference is held by the C++ shared_ptr, one by our
# locals dict, and one by the arg to getrefcount
rc = sys.getrefcount(e)
assert rc == 3
# Dropping the Python object does not actually destroy it, because
# the shared_ptr holds a reference. There is still a PyObject* at
# the same address.
prev_id = id(e)
del e
collect()
assert t.stats() == (1, 0)
assert id(w.get_ref()) == prev_id
assert t.owns_cpp(w.get_ref())
assert type(w.get_ref()) is ty
# Dropping the wrappers' shared_ptrs drops the PyObject reference and
# the object is finally GC'ed
del w, w2
collect()
assert t.stats() == (1, 1)
def test10_shared_from_this_create_in_python(clean):
check_shared_from_this_py_owned(t.ExampleST, t.ExampleST, 42)
# Subclass in C++
t.reset()
check_shared_from_this_py_owned(t.DerivedST, t.DerivedST, 30)
# Subclass in Python
class SubST(t.ExampleST):
pass
t.reset()
check_shared_from_this_py_owned(SubST, SubST, 20)
def test11_shared_from_this_create_raw_in_cpp(clean):
# Creating a raw pointer from C++ does not enable shared_from_this;
# although the object is held by pointer rather than value, the logical
# ownership transfers to Python and the behavior is equivalent to test10.
# Once we get a shared_ptr it owns a reference to the Python object.
check_shared_from_this_py_owned(t.ExampleST, t.ExampleST.make, 10)
# Subclass in C++
t.reset()
check_shared_from_this_py_owned(t.DerivedST, t.DerivedST.make, 5)
def test12_shared_from_this_create_shared_in_cpp(clean):
# Creating a shared_ptr from C++ enables shared_from_this. Now the
# shared_ptr does not keep the Python object alive; it's directly
# owning the ExampleST object on the C++ side.
e = t.ExampleST.make_shared(10)
assert e.value == 10
assert e.has_shared_from_this()
assert e.shared_from_this() is e # same instance
assert e.use_count() == 1
assert not t.owns_cpp(e)
if hasattr(sys, "getrefcount"):
# One reference is held by our locals dict and one by the
# arg to getrefcount
rc = sys.getrefcount(e)
assert rc == 2
w = t.SharedWrapperST.from_existing(e)
assert w.ptr is e
# One shared_ptr whose lifetime is tied to e. And one inside the wrapper
assert e.use_count() == 2
# Drop the Python object; C++ object still remains owned by the wrapper
del e
collect()
assert t.stats() == (1, 0)
assert w.use_count() == 1
# Get a new Python object reference; it will share ownership of the
# same underlying C++ object
e2 = w.get_own()
assert not t.owns_cpp(e2)
assert w.ptr is e2
assert w.use_count() == 2
del e2
collect()
assert t.stats() == (1, 0)
assert w.use_count() == 1
# Get a new C++-side reference
w2 = t.SharedWrapperST.from_wrapper(w)
assert w2.use_count() == 2
assert t.same_owner(w, w2)
# Get another one by roundtripping through Python.
# The nanobind conversion to shared_ptr<ExampleST> should use the
# existing shared_from_this shared_ptr
w3 = t.SharedWrapperST(w.ptr)
collect() # on pypy the w.ptr temporary can stay alive
assert w3.use_count() == 3
assert t.same_owner(w2, w3)
# Destroy everything
assert t.stats() == (1, 0)
del w, w2, w3
collect()
assert t.stats() == (1, 1)
def test13_shared_from_this_create_derived_in_cpp(clean):
# This tests that keep_shared_from_this_alive is inherited by
# derived classes properly
# Pass shared_ptr<T> to Python
e = t.DerivedST.make_shared(20)
assert type(e) is t.DerivedST
assert e.value == 20
assert e.has_shared_from_this()
assert not t.owns_cpp(e)
assert e.use_count() == 1
# Pass it back to C++
w = t.SharedWrapperST(e)
assert e.use_count() == w.use_count() == 2
del e
collect()
assert t.stats() == (1, 0)
assert w.use_count() == 1
# Pass it back to Python as a raw pointer
e = w.get_own()
# ExampleST is not polymorphic, so the derived-class identity is
# lost once the Python instance is destroyed
assert type(e) is t.ExampleST
assert not t.owns_cpp(e)
assert w.use_count() == 2
assert w.get_own() is e
del e, w
collect()
assert t.stats() == (1, 1)