pybind11_cross_module_tests.cpp 6.12 KB
Newer Older
1
2
3
4
5
6
7
8
9
/*
    tests/pybind11_cross_module_tests.cpp -- contains tests that require multiple modules

    Copyright (c) 2017 Jason Rhinelander <jason@imaginary.ca>

    All rights reserved. Use of this source code is governed by a
    BSD-style license that can be found in the LICENSE file.
*/

10
11
#include <pybind11/stl_bind.h>

12
#include "local_bindings.h"
13
#include "pybind11_tests.h"
14
#include "test_exceptions.h"
15

16
#include <numeric>
17
#include <utility>
18
19
20
21
22
23
24
25
26

PYBIND11_MODULE(pybind11_cross_module_tests, m) {
    m.doc() = "pybind11 cross-module test module";

    // test_local_bindings.py tests:
    //
    // Definitions here are tested by importing both this module and the
    // relevant pybind11_tests submodule from a test_whatever.py

27
28
29
30
    // test_load_external
    bind_local<ExternalType1>(m, "ExternalType1", py::module_local());
    bind_local<ExternalType2>(m, "ExternalType2", py::module_local());

31
    // test_exceptions.py
32
    py::register_local_exception<LocalSimpleException>(m, "LocalSimpleException");
33
34
35
36
37
38
39
40
    m.def("raise_runtime_error", []() {
        PyErr_SetString(PyExc_RuntimeError, "My runtime error");
        throw py::error_already_set();
    });
    m.def("raise_value_error", []() {
        PyErr_SetString(PyExc_ValueError, "My value error");
        throw py::error_already_set();
    });
41
42
43
    m.def("throw_pybind_value_error", []() { throw py::value_error("pybind11 value error"); });
    m.def("throw_pybind_type_error", []() { throw py::type_error("pybind11 type error"); });
    m.def("throw_stop_iteration", []() { throw py::stop_iteration(); });
44
45
    m.def("throw_local_error", []() { throw LocalException("just local"); });
    m.def("throw_local_simple_error", []() { throw LocalSimpleException("external mod"); });
46
    py::register_exception_translator([](std::exception_ptr p) {
47
48
49
50
51
52
53
        try {
            if (p) {
                std::rethrow_exception(p);
            }
        } catch (const shared_exception &e) {
            PyErr_SetString(PyExc_KeyError, e.what());
        }
54
    });
55

56
57
    // translate the local exception into a key error but only in this module
    py::register_local_exception_translator([](std::exception_ptr p) {
58
59
60
61
62
63
64
        try {
            if (p) {
                std::rethrow_exception(p);
            }
        } catch (const LocalException &e) {
            PyErr_SetString(PyExc_KeyError, e.what());
        }
65
66
    });

67
68
    // test_local_bindings.py
    // Local to both:
69
70
71
    bind_local<LocalType, 1>(m, "LocalType", py::module_local()).def("get2", [](LocalType &t) {
        return t.i + 2;
    });
72
73
74
75
76
77
78

    // Can only be called with our python type:
    m.def("local_value", [](LocalType &l) { return l.i; });

    // test_nonlocal_failure
    // This registration will fail (global registration when LocalFail is already registered
    // globally in the main test module):
79
    m.def("register_nonlocal", [m]() { bind_local<NonLocalType, 0>(m, "NonLocalType"); });
80
81
82

    // test_stl_bind_local
    // stl_bind.h binders defaults to py::module_local if the types are local or converting:
83
84
85
86
    py::bind_vector<LocalVec>(m, "LocalVec");
    py::bind_map<LocalMap>(m, "LocalMap");

    // test_stl_bind_global
87
88
    // and global if the type (or one of the types, for the map) is global (so these will fail,
    // assuming pybind11_tests is already loaded):
89
90
    m.def("register_nonlocal_vec", [m]() { py::bind_vector<NonLocalVec>(m, "NonLocalVec"); });
    m.def("register_nonlocal_map", [m]() { py::bind_map<NonLocalMap>(m, "NonLocalMap"); });
91
92
93
    // The default can, however, be overridden to global using `py::module_local()` or
    // `py::module_local(false)`.
    // Explicitly made local:
94
    py::bind_vector<NonLocalVec2>(m, "NonLocalVec2", py::module_local());
95
    // Explicitly made global (and so will fail to bind):
96
97
    m.def("register_nonlocal_map2",
          [m]() { py::bind_map<NonLocalMap2>(m, "NonLocalMap2", py::module_local(false)); });
98

99
100
101
    // test_mixed_local_global
    // We try this both with the global type registered first and vice versa (the order shouldn't
    // matter).
102
103
    m.def("register_mixed_global_local",
          [m]() { bind_local<MixedGlobalLocal, 200>(m, "MixedGlobalLocal", py::module_local()); });
104
105
106
107
108
109
    m.def("register_mixed_local_global", [m]() {
        bind_local<MixedLocalGlobal, 2000>(m, "MixedLocalGlobal", py::module_local(false));
    });
    m.def("get_mixed_gl", [](int i) { return MixedGlobalLocal(i); });
    m.def("get_mixed_lg", [](int i) { return MixedLocalGlobal(i); });

110
    // test_internal_locals_differ
111
112
    m.def("local_cpp_types_addr",
          []() { return (uintptr_t) &py::detail::get_local_internals().registered_types_cpp; });
113
114
115
116

    // test_stl_caster_vs_stl_bind
    py::bind_vector<std::vector<int>>(m, "VectorInt");

117
118
    m.def("load_vector_via_binding",
          [](std::vector<int> &v) { return std::accumulate(v.begin(), v.end(), 0); });
119
120
121
122
123

    // test_cross_module_calls
    m.def("return_self", [](LocalVec *v) { return v; });
    m.def("return_copy", [](const LocalVec &v) { return LocalVec(v); });

124
125
    class Dog : public pets::Pet {
    public:
126
        explicit Dog(std::string name) : Pet(std::move(name)) {}
127
    };
128
    py::class_<pets::Pet>(m, "Pet", py::module_local()).def("name", &pets::Pet::name);
129
    // Binding for local extending class:
130
    py::class_<Dog, pets::Pet>(m, "Dog").def(py::init<std::string>());
131
132
133
134
135
136
    m.def("pet_name", [](pets::Pet &p) { return p.name(); });

    py::class_<MixGL>(m, "MixGL", py::module_local()).def(py::init<int>());
    m.def("get_gl_value", [](MixGL &o) { return o.i + 100; });

    py::class_<MixGL2>(m, "MixGL2", py::module_local()).def(py::init<int>());
137
138
139
140
141
142

    // test_vector_bool
    // We can't test both stl.h and stl_bind.h conversions of `std::vector<bool>` within
    // the same module (it would be an ODR violation). Therefore `bind_vector` of `bool`
    // is defined here and tested in `test_stl_binders.py`.
    py::bind_vector<std::vector<bool>>(m, "VectorBool");
143
144
145
146

    // test_missing_header_message
    // The main module already includes stl.h, but we need to test the error message
    // which appears when this header is missing.
147
    m.def("missing_header_arg", [](const std::vector<float> &) {});
148
    m.def("missing_header_return", []() { return std::vector<float>(); });
149
}