test_local_bindings.py
Go to the documentation of this file.
1 from __future__ import annotations
2 
3 import pytest
4 
5 import env # noqa: F401
6 from pybind11_tests import local_bindings as m
7 
8 
10  """Load a `py::module_local` type that's only registered in an external module"""
11  import pybind11_cross_module_tests as cm
12 
13  assert m.load_external1(cm.ExternalType1(11)) == 11
14  assert m.load_external2(cm.ExternalType2(22)) == 22
15 
16  with pytest.raises(TypeError) as excinfo:
17  assert m.load_external2(cm.ExternalType1(21)) == 21
18  assert "incompatible function arguments" in str(excinfo.value)
19 
20  with pytest.raises(TypeError) as excinfo:
21  assert m.load_external1(cm.ExternalType2(12)) == 12
22  assert "incompatible function arguments" in str(excinfo.value)
23 
24 
26  """Tests that duplicate `py::module_local` class bindings work across modules"""
27 
28  # Make sure we can load the second module with the conflicting (but local) definition:
29  import pybind11_cross_module_tests as cm
30 
31  i1 = m.LocalType(5)
32  assert i1.get() == 4
33  assert i1.get3() == 8
34 
35  i2 = cm.LocalType(10)
36  assert i2.get() == 11
37  assert i2.get2() == 12
38 
39  assert not hasattr(i1, "get2")
40  assert not hasattr(i2, "get3")
41 
42  # Loading within the local module
43  assert m.local_value(i1) == 5
44  assert cm.local_value(i2) == 10
45 
46  # Cross-module loading works as well (on failure, the type loader looks for
47  # external module-local converters):
48  assert m.local_value(i2) == 10
49  assert cm.local_value(i1) == 5
50 
51 
53  """Tests that attempting to register a non-local type in multiple modules fails"""
54  import pybind11_cross_module_tests as cm
55 
56  with pytest.raises(RuntimeError) as excinfo:
57  cm.register_nonlocal()
58  assert (
59  str(excinfo.value) == 'generic_type: type "NonLocalType" is already registered!'
60  )
61 
62 
64  """Tests expected failure when registering a class twice with py::local in the same module"""
65  with pytest.raises(RuntimeError) as excinfo:
66  m.register_local_external()
67  import pybind11_tests
68 
69  assert str(excinfo.value) == (
70  'generic_type: type "LocalExternal" is already registered!'
71  if hasattr(pybind11_tests, "class_")
72  else "test_class not enabled"
73  )
74 
75 
77  import pybind11_cross_module_tests as cm
78 
79  v1, v2 = m.LocalVec(), cm.LocalVec()
80  v1.append(m.LocalType(1))
81  v1.append(m.LocalType(2))
82  v2.append(cm.LocalType(1))
83  v2.append(cm.LocalType(2))
84 
85  # Cross module value loading:
86  v1.append(cm.LocalType(3))
87  v2.append(m.LocalType(3))
88 
89  assert [i.get() for i in v1] == [0, 1, 2]
90  assert [i.get() for i in v2] == [2, 3, 4]
91 
92  v3, v4 = m.NonLocalVec(), cm.NonLocalVec2()
93  v3.append(m.NonLocalType(1))
94  v3.append(m.NonLocalType(2))
95  v4.append(m.NonLocal2(3))
96  v4.append(m.NonLocal2(4))
97 
98  assert [i.get() for i in v3] == [1, 2]
99  assert [i.get() for i in v4] == [13, 14]
100 
101  d1, d2 = m.LocalMap(), cm.LocalMap()
102  d1["a"] = v1[0]
103  d1["b"] = v1[1]
104  d2["c"] = v2[0]
105  d2["d"] = v2[1]
106  assert {i: d1[i].get() for i in d1} == {"a": 0, "b": 1}
107  assert {i: d2[i].get() for i in d2} == {"c": 2, "d": 3}
108 
109 
111  import pybind11_cross_module_tests as cm
112 
113  with pytest.raises(RuntimeError) as excinfo:
114  cm.register_nonlocal_map()
115  assert (
116  str(excinfo.value) == 'generic_type: type "NonLocalMap" is already registered!'
117  )
118 
119  with pytest.raises(RuntimeError) as excinfo:
120  cm.register_nonlocal_vec()
121  assert (
122  str(excinfo.value) == 'generic_type: type "NonLocalVec" is already registered!'
123  )
124 
125  with pytest.raises(RuntimeError) as excinfo:
126  cm.register_nonlocal_map2()
127  assert (
128  str(excinfo.value) == 'generic_type: type "NonLocalMap2" is already registered!'
129  )
130 
131 
133  """Local types take precedence over globally registered types: a module with a `module_local`
134  type can be registered even if the type is already registered globally. With the module,
135  casting will go to the local type; outside the module casting goes to the global type.
136  """
137  import pybind11_cross_module_tests as cm
138 
139  m.register_mixed_global()
140  m.register_mixed_local()
141 
142  a = []
143  a.append(m.MixedGlobalLocal(1))
144  a.append(m.MixedLocalGlobal(2))
145  a.append(m.get_mixed_gl(3))
146  a.append(m.get_mixed_lg(4))
147 
148  assert [x.get() for x in a] == [101, 1002, 103, 1004]
149 
150  cm.register_mixed_global_local()
151  cm.register_mixed_local_global()
152  a.append(m.MixedGlobalLocal(5))
153  a.append(m.MixedLocalGlobal(6))
154  a.append(cm.MixedGlobalLocal(7))
155  a.append(cm.MixedLocalGlobal(8))
156  a.append(m.get_mixed_gl(9))
157  a.append(m.get_mixed_lg(10))
158  a.append(cm.get_mixed_gl(11))
159  a.append(cm.get_mixed_lg(12))
160 
161  assert [x.get() for x in a] == [
162  101,
163  1002,
164  103,
165  1004,
166  105,
167  1006,
168  207,
169  2008,
170  109,
171  1010,
172  211,
173  2012,
174  ]
175 
176 
178  """Makes sure the internal local type map differs across the two modules"""
179  import pybind11_cross_module_tests as cm
180 
181  assert m.local_cpp_types_addr() != cm.local_cpp_types_addr()
182 
183 
184 @pytest.mark.xfail("env.PYPY and sys.pypy_version_info < (7, 3, 2)")
186  """One module uses a generic vector caster from `<pybind11/stl.h>` while the other
187  exports `std::vector<int>` via `py:bind_vector` and `py::module_local`"""
188  import pybind11_cross_module_tests as cm
189 
190  v1 = cm.VectorInt([1, 2, 3])
191  assert m.load_vector_via_caster(v1) == 6
192  assert cm.load_vector_via_binding(v1) == 6
193 
194  v2 = [1, 2, 3]
195  assert m.load_vector_via_caster(v2) == 6
196  with pytest.raises(TypeError) as excinfo:
197  cm.load_vector_via_binding(v2)
198  assert (
199  msg(excinfo.value)
200  == """
201  load_vector_via_binding(): incompatible function arguments. The following argument types are supported:
202  1. (arg0: pybind11_cross_module_tests.VectorInt) -> int
203 
204  Invoked with: [1, 2, 3]
205  """
206  )
207 
208 
210  import pybind11_cross_module_tests as cm
211 
212  v1 = m.LocalVec()
213  v1.append(m.LocalType(1))
214  v2 = cm.LocalVec()
215  v2.append(cm.LocalType(2))
216 
217  # Returning the self pointer should get picked up as returning an existing
218  # instance (even when that instance is of a foreign, non-local type).
219  assert m.return_self(v1) is v1
220  assert cm.return_self(v2) is v2
221  assert m.return_self(v2) is v2
222  assert cm.return_self(v1) is v1
223 
224  assert m.LocalVec is not cm.LocalVec
225  # Returning a copy, on the other hand, always goes to the local type,
226  # regardless of where the source type came from.
227  assert type(m.return_copy(v1)) is m.LocalVec
228  assert type(m.return_copy(v2)) is m.LocalVec
229  assert type(cm.return_copy(v1)) is cm.LocalVec
230  assert type(cm.return_copy(v2)) is cm.LocalVec
231 
232  # Test the example given in the documentation (which also tests inheritance casting):
233  mycat = m.Cat("Fluffy")
234  mydog = cm.Dog("Rover")
235  assert mycat.get_name() == "Fluffy"
236  assert mydog.name() == "Rover"
237  assert m.Cat.__base__.__name__ == "Pet"
238  assert cm.Dog.__base__.__name__ == "Pet"
239  assert m.Cat.__base__ is not cm.Dog.__base__
240  assert m.pet_name(mycat) == "Fluffy"
241  assert m.pet_name(mydog) == "Rover"
242  assert cm.pet_name(mycat) == "Fluffy"
243  assert cm.pet_name(mydog) == "Rover"
244 
245  assert m.MixGL is not cm.MixGL
246  a = m.MixGL(1)
247  b = cm.MixGL(2)
248  assert m.get_gl_value(a) == 11
249  assert m.get_gl_value(b) == 12
250  assert cm.get_gl_value(a) == 101
251  assert cm.get_gl_value(b) == 102
252 
253  c, d = m.MixGL2(3), cm.MixGL2(4)
254  with pytest.raises(TypeError) as excinfo:
255  m.get_gl_value(c)
256  assert "incompatible function arguments" in str(excinfo.value)
257  with pytest.raises(TypeError) as excinfo:
258  m.get_gl_value(d)
259  assert "incompatible function arguments" in str(excinfo.value)
test_local_bindings.test_local_bindings
def test_local_bindings()
Definition: test_local_bindings.py:25
hasattr
bool hasattr(handle obj, handle name)
Definition: pytypes.h:870
type
Definition: pytypes.h:1525
test_local_bindings.test_mixed_local_global
def test_mixed_local_global()
Definition: test_local_bindings.py:132
test_local_bindings.test_stl_bind_global
def test_stl_bind_global()
Definition: test_local_bindings.py:110
test_local_bindings.test_stl_bind_local
def test_stl_bind_local()
Definition: test_local_bindings.py:76
test_local_bindings.test_duplicate_local
def test_duplicate_local()
Definition: test_local_bindings.py:63
test_local_bindings.test_internal_locals_differ
def test_internal_locals_differ()
Definition: test_local_bindings.py:177
str
Definition: pytypes.h:1558
test_local_bindings.test_cross_module_calls
def test_cross_module_calls()
Definition: test_local_bindings.py:209
test_local_bindings.test_stl_caster_vs_stl_bind
def test_stl_caster_vs_stl_bind(msg)
Definition: test_local_bindings.py:185
get
Container::iterator get(Container &c, Position position)
Definition: stdlist_overload.cpp:29
test_local_bindings.test_nonlocal_failure
def test_nonlocal_failure()
Definition: test_local_bindings.py:52
pybind11.msg
msg
Definition: wrap/pybind11/pybind11/__init__.py:6
test_local_bindings.test_load_external
def test_load_external()
Definition: test_local_bindings.py:9


gtsam
Author(s):
autogenerated on Thu Jul 4 2024 03:06:01