2024-07-05 21:25:44 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-07-19 16:37:45 +00:00
|
|
|
import pytest
|
|
|
|
|
2024-07-05 21:25:44 +00:00
|
|
|
from pybind11_tests import class_sh_shared_ptr_copy_move as m
|
|
|
|
|
2024-07-19 16:37:45 +00:00
|
|
|
if not m.defined_PYBIND11_HAVE_INTERNALS_WITH_SMART_HOLDER_SUPPORT:
|
|
|
|
pytest.skip("smart_holder not available.", allow_module_level=True)
|
|
|
|
|
2024-07-05 21:25:44 +00:00
|
|
|
|
|
|
|
def test_shptr_copy():
|
2024-07-09 18:31:57 +00:00
|
|
|
txt = m.test_ShPtr_copy()[0].get_history()
|
2024-07-05 21:25:44 +00:00
|
|
|
assert txt == "FooShPtr_copy"
|
|
|
|
|
|
|
|
|
|
|
|
def test_smhld_copy():
|
|
|
|
txt = m.test_SmHld_copy()[0].get_history()
|
|
|
|
assert txt == "FooSmHld_copy"
|
|
|
|
|
|
|
|
|
|
|
|
def test_shptr_move():
|
|
|
|
txt = m.test_ShPtr_move()[0].get_history()
|
|
|
|
assert txt == "FooShPtr_move"
|
|
|
|
|
|
|
|
|
|
|
|
def test_smhld_move():
|
|
|
|
txt = m.test_SmHld_move()[0].get_history()
|
|
|
|
assert txt == "FooSmHld_move"
|
|
|
|
|
|
|
|
|
|
|
|
def _check_property(foo_typ, prop_typ, policy):
|
|
|
|
o = m.Outer()
|
|
|
|
name = f"{foo_typ}_{prop_typ}_{policy}"
|
|
|
|
history = f"Foo{foo_typ}_Outer"
|
|
|
|
f = getattr(o, name)
|
|
|
|
assert f.get_history() == history
|
|
|
|
# and try again to check that o did not get changed
|
|
|
|
f = getattr(o, name)
|
|
|
|
assert f.get_history() == history
|
|
|
|
|
|
|
|
|
|
|
|
def test_properties():
|
|
|
|
for prop_typ in ("readonly", "readwrite", "property_readonly"):
|
|
|
|
for foo_typ in ("ShPtr", "SmHld"):
|
|
|
|
for policy in ("default", "copy", "move"):
|
|
|
|
_check_property(foo_typ, prop_typ, policy)
|