mirror of
https://github.com/ModOrganizer2/modorganizer-plugin_python.git
synced 2026-07-27 14:03:33 -07:00
Move pybind11-utils to own folder. Add tests for shared_cpp_owner.
This commit is contained in:
@@ -44,8 +44,7 @@ foreach (test_file ${test_files})
|
||||
endif()
|
||||
|
||||
mo2_add_dependencies(${target} PRIVATE uibase Qt::Core Qt::Widgets)
|
||||
# set_property(TARGET ${target} PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded")
|
||||
target_link_libraries(${target} PRIVATE pybind11::qt GTest::gmock)
|
||||
target_link_libraries(${target} PRIVATE pybind11::qt pybind11::utils GTest::gmock)
|
||||
|
||||
target_include_directories(${target}
|
||||
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../mocks)
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
#include "pybind11_utils/shared_cpp_owner.h"
|
||||
|
||||
#include <pybind11/pybind11.h>
|
||||
|
||||
#include <tuple>
|
||||
#include <unordered_map>
|
||||
|
||||
namespace py = pybind11;
|
||||
using namespace pybind11::literals;
|
||||
|
||||
class Base;
|
||||
static std::unordered_map<std::string, Base*> bases;
|
||||
|
||||
class Base {
|
||||
std::string name_;
|
||||
|
||||
public:
|
||||
Base(std::string const& name) : name_{name} { bases[name] = this; }
|
||||
virtual std::string fn() const = 0;
|
||||
virtual ~Base() { bases.erase(name_); }
|
||||
};
|
||||
|
||||
MO2_PYBIND11_SHARED_CPP_HOLDER(Base);
|
||||
|
||||
class CppBase : public Base {
|
||||
public:
|
||||
using Base::Base;
|
||||
std::string fn() const override { return "CppBase::fn()"; }
|
||||
};
|
||||
|
||||
class PyBase : public Base {
|
||||
public:
|
||||
using Base::Base;
|
||||
std::string fn() const override { PYBIND11_OVERRIDE_PURE(std::string, Base, fn, ); }
|
||||
};
|
||||
|
||||
PYBIND11_MODULE(shared_cpp_owner, m)
|
||||
{
|
||||
static std::shared_ptr<Base> base_ptr;
|
||||
|
||||
py::class_<Base, PyBase, std::shared_ptr<Base>>(m, "Base")
|
||||
.def(py::init<std::string>())
|
||||
.def("fn", &Base::fn);
|
||||
|
||||
m.def("is_alive", [](std::string const& name) {
|
||||
return bases.find(name) != bases.end();
|
||||
});
|
||||
|
||||
m.def("create", [](std::string const& name) -> std::shared_ptr<Base> {
|
||||
return std::make_shared<CppBase>(name);
|
||||
});
|
||||
m.def("create_and_store", [](std::string const& name) {
|
||||
base_ptr = std::make_shared<CppBase>(name);
|
||||
return base_ptr;
|
||||
});
|
||||
m.def("store", [](std::shared_ptr<Base> ptr) {
|
||||
base_ptr = ptr;
|
||||
});
|
||||
m.def("clear", []() {
|
||||
base_ptr.reset();
|
||||
});
|
||||
|
||||
m.def("call_fn", [](std::string const& name) {
|
||||
auto it = bases.find(name);
|
||||
return it != bases.end() ? it->second->fn() : "";
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
from re import A
|
||||
|
||||
import pytest
|
||||
from PyQt6.QtCore import QDateTime, Qt
|
||||
|
||||
m = pytest.importorskip("mobase_tests.shared_cpp_owner")
|
||||
|
||||
|
||||
class PyBase(m.Base):
|
||||
def __init__(self, name: str, value: int):
|
||||
super().__init__(name)
|
||||
self.value = value
|
||||
|
||||
def fn(self):
|
||||
return f"PyBase.fn({self.value})"
|
||||
|
||||
|
||||
def test_shared_cpp_owner_1():
|
||||
# create from C++, owned by Python
|
||||
|
||||
# create from C++
|
||||
p = m.create("tmp")
|
||||
assert m.is_alive("tmp")
|
||||
|
||||
# should delete since it's not owner by C++
|
||||
del p
|
||||
assert not m.is_alive("tmp")
|
||||
|
||||
|
||||
def test_shared_cpp_owner_2():
|
||||
# create from C++, owned by C++ (and Python)
|
||||
|
||||
# create from C++
|
||||
p = m.create_and_store("tmp")
|
||||
assert m.is_alive("tmp")
|
||||
|
||||
# should not delete since it's owned by both C++ and Python
|
||||
del p
|
||||
assert m.is_alive("tmp")
|
||||
|
||||
# clear from C++ should free it
|
||||
m.clear()
|
||||
assert not m.is_alive("tmp")
|
||||
|
||||
|
||||
def test_shared_cpp_owner_3():
|
||||
# create from Python, owned by Python
|
||||
|
||||
p = PyBase("foo", 1)
|
||||
assert m.is_alive("foo")
|
||||
assert m.call_fn("foo") == "PyBase.fn(1)"
|
||||
|
||||
del p
|
||||
assert not m.is_alive("foo")
|
||||
|
||||
|
||||
def test_shared_cpp_owner_3():
|
||||
# create from Python, owned by C++
|
||||
|
||||
p = PyBase("foo", 2)
|
||||
assert m.is_alive("foo")
|
||||
|
||||
# send to C++
|
||||
m.store(p)
|
||||
assert m.is_alive("foo")
|
||||
assert m.call_fn("foo") == "PyBase.fn(2)"
|
||||
|
||||
# delete in Python, should still be alived
|
||||
del p
|
||||
assert m.is_alive("foo")
|
||||
|
||||
# should still be able to call fn()
|
||||
assert m.call_fn("foo") == "PyBase.fn(2)"
|
||||
|
||||
# clear in C++, should kill Python
|
||||
m.clear()
|
||||
assert not m.is_alive("foo")
|
||||
Reference in New Issue
Block a user