5from pybind11_tests
import local_bindings
as m
9 """Load a `py::module_local` type that's only registered in an external module"""
10 import pybind11_cross_module_tests
as cm
12 assert m.load_external1(cm.ExternalType1(11)) == 11
13 assert m.load_external2(cm.ExternalType2(22)) == 22
15 with pytest.raises(TypeError)
as excinfo:
16 assert m.load_external2(cm.ExternalType1(21)) == 21
17 assert "incompatible function arguments" in str(excinfo.value)
19 with pytest.raises(TypeError)
as excinfo:
20 assert m.load_external1(cm.ExternalType2(12)) == 12
21 assert "incompatible function arguments" in str(excinfo.value)
25 """Tests that duplicate `py::module_local` class bindings work across modules"""
28 import pybind11_cross_module_tests
as cm
36 assert i2.get2() == 12
42 assert m.local_value(i1) == 5
43 assert cm.local_value(i2) == 10
47 assert m.local_value(i2) == 10
48 assert cm.local_value(i1) == 5
52 """Tests that attempting to register a non-local type in multiple modules fails"""
53 import pybind11_cross_module_tests
as cm
55 with pytest.raises(RuntimeError)
as excinfo:
56 cm.register_nonlocal()
58 str(excinfo.value) ==
'generic_type: type "NonLocalType" is already registered!'
63 """Tests expected failure when registering a class twice with py::local in the same module"""
64 with pytest.raises(RuntimeError)
as excinfo:
65 m.register_local_external()
68 assert str(excinfo.value) == (
69 'generic_type: type "LocalExternal" is already registered!'
70 if hasattr(pybind11_tests,
"class_")
71 else "test_class not enabled"
76 import pybind11_cross_module_tests
as cm
78 v1, v2 = m.LocalVec(), cm.LocalVec()
79 v1.append(m.LocalType(1))
80 v1.append(m.LocalType(2))
81 v2.append(cm.LocalType(1))
82 v2.append(cm.LocalType(2))
85 v1.append(cm.LocalType(3))
86 v2.append(m.LocalType(3))
88 assert [i.get()
for i
in v1] == [0, 1, 2]
89 assert [i.get()
for i
in v2] == [2, 3, 4]
91 v3, v4 = m.NonLocalVec(), cm.NonLocalVec2()
92 v3.append(m.NonLocalType(1))
93 v3.append(m.NonLocalType(2))
94 v4.append(m.NonLocal2(3))
95 v4.append(m.NonLocal2(4))
97 assert [i.get()
for i
in v3] == [1, 2]
98 assert [i.get()
for i
in v4] == [13, 14]
100 d1, d2 = m.LocalMap(), cm.LocalMap()
105 assert {i: d1[i].get()
for i
in d1} == {
"a": 0,
"b": 1}
106 assert {i: d2[i].get()
for i
in d2} == {
"c": 2,
"d": 3}
110 import pybind11_cross_module_tests
as cm
112 with pytest.raises(RuntimeError)
as excinfo:
113 cm.register_nonlocal_map()
115 str(excinfo.value) ==
'generic_type: type "NonLocalMap" is already registered!'
118 with pytest.raises(RuntimeError)
as excinfo:
119 cm.register_nonlocal_vec()
121 str(excinfo.value) ==
'generic_type: type "NonLocalVec" is already registered!'
124 with pytest.raises(RuntimeError)
as excinfo:
125 cm.register_nonlocal_map2()
127 str(excinfo.value) ==
'generic_type: type "NonLocalMap2" is already registered!'
132 """Local types take precedence over globally registered types: a module with a `module_local`
133 type can be registered even if the type
is already registered globally. With the module,
134 casting will go to the local type; outside the module casting goes to the
global type.
"""
135 import pybind11_cross_module_tests
as cm
137 m.register_mixed_global()
138 m.register_mixed_local()
141 a.append(m.MixedGlobalLocal(1))
142 a.append(m.MixedLocalGlobal(2))
143 a.append(m.get_mixed_gl(3))
144 a.append(m.get_mixed_lg(4))
146 assert [x.get()
for x
in a] == [101, 1002, 103, 1004]
148 cm.register_mixed_global_local()
149 cm.register_mixed_local_global()
150 a.append(m.MixedGlobalLocal(5))
151 a.append(m.MixedLocalGlobal(6))
152 a.append(cm.MixedGlobalLocal(7))
153 a.append(cm.MixedLocalGlobal(8))
154 a.append(m.get_mixed_gl(9))
155 a.append(m.get_mixed_lg(10))
156 a.append(cm.get_mixed_gl(11))
157 a.append(cm.get_mixed_lg(12))
159 assert [x.get()
for x
in a] == [
176 """Makes sure the internal local type map differs across the two modules"""
177 import pybind11_cross_module_tests
as cm
179 assert m.local_cpp_types_addr() != cm.local_cpp_types_addr()
182@pytest.mark.xfail("env.PYPY and sys.pypy_version_info < (7, 3, 2)")
184 """One module uses a generic vector caster from `<pybind11/stl.h>` while the other
185 exports `std::vector<int>` via `py:bind_vector` and `py::module_local`
"""
186 import pybind11_cross_module_tests
as cm
188 v1 = cm.VectorInt([1, 2, 3])
189 assert m.load_vector_via_caster(v1) == 6
190 assert cm.load_vector_via_binding(v1) == 6
193 assert m.load_vector_via_caster(v2) == 6
194 with pytest.raises(TypeError)
as excinfo:
195 cm.load_vector_via_binding(v2)
199 load_vector_via_binding(): incompatible function arguments. The following argument types are supported:
200 1. (arg0: pybind11_cross_module_tests.VectorInt) -> int
202 Invoked with: [1, 2, 3]
208 import pybind11_cross_module_tests
as cm
211 v1.append(m.LocalType(1))
213 v2.append(cm.LocalType(2))
217 assert m.return_self(v1)
is v1
218 assert cm.return_self(v2)
is v2
219 assert m.return_self(v2)
is v2
220 assert cm.return_self(v1)
is v1
222 assert m.LocalVec
is not cm.LocalVec
225 assert type(m.return_copy(v1))
is m.LocalVec
226 assert type(m.return_copy(v2))
is m.LocalVec
227 assert type(cm.return_copy(v1))
is cm.LocalVec
228 assert type(cm.return_copy(v2))
is cm.LocalVec
231 mycat = m.Cat(
"Fluffy")
232 mydog = cm.Dog(
"Rover")
233 assert mycat.get_name() ==
"Fluffy"
234 assert mydog.name() ==
"Rover"
235 assert m.Cat.__base__.__name__ ==
"Pet"
236 assert cm.Dog.__base__.__name__ ==
"Pet"
237 assert m.Cat.__base__
is not cm.Dog.__base__
238 assert m.pet_name(mycat) ==
"Fluffy"
239 assert m.pet_name(mydog) ==
"Rover"
240 assert cm.pet_name(mycat) ==
"Fluffy"
241 assert cm.pet_name(mydog) ==
"Rover"
243 assert m.MixGL
is not cm.MixGL
246 assert m.get_gl_value(a) == 11
247 assert m.get_gl_value(b) == 12
248 assert cm.get_gl_value(a) == 101
249 assert cm.get_gl_value(b) == 102
251 c, d = m.MixGL2(3), cm.MixGL2(4)
252 with pytest.raises(TypeError)
as excinfo:
254 assert "incompatible function arguments" in str(excinfo.value)
255 with pytest.raises(TypeError)
as excinfo:
257 assert "incompatible function arguments" in str(excinfo.value)
bool hasattr(handle obj, handle name)
def test_stl_caster_vs_stl_bind(msg)
def test_mixed_local_global()
def test_internal_locals_differ()
def test_nonlocal_failure()
def test_local_bindings()
def test_duplicate_local()
def test_stl_bind_global()
def test_cross_module_calls()
def test_stl_bind_local()