2015-07-05 18:05:44 +00:00
|
|
|
/*
|
2016-08-12 11:50:00 +00:00
|
|
|
tests/test_modules.cpp -- nested modules, importing modules, and
|
2015-10-13 21:44:25 +00:00
|
|
|
internal references
|
2015-07-05 18:05:44 +00:00
|
|
|
|
2016-04-17 18:21:41 +00:00
|
|
|
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
All rights reserved. Use of this source code is governed by a
|
|
|
|
BSD-style license that can be found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2016-08-12 11:50:00 +00:00
|
|
|
#include "pybind11_tests.h"
|
|
|
|
#include "constructor_stats.h"
|
2015-07-05 18:05:44 +00:00
|
|
|
|
2016-08-12 20:28:31 +00:00
|
|
|
std::string submodule_func() {
|
|
|
|
return "submodule_func()";
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public:
|
Improve constructor/destructor tracking
This commit rewrites the examples that look for constructor/destructor
calls to do so via static variable tracking rather than output parsing.
The added ConstructorStats class provides methods to keep track of
constructors and destructors, number of default/copy/move constructors,
and number of copy/move assignments. It also provides a mechanism for
storing values (e.g. for value construction), and then allows all of
this to be checked at the end of a test by getting the statistics for a
C++ (or python mapping) class.
By not relying on the precise pattern of constructions/destructions,
but rather simply ensuring that every construction is matched with a
destruction on the same object, we ensure that everything that gets
created also gets destroyed as expected.
This replaces all of the various "std::cout << whatever" code in
constructors/destructors with
`print_created(this)`/`print_destroyed(this)`/etc. functions which
provide similar output, but now has a unified format across the
different examples, including a new ### prefix that makes mixed example
output and lifecycle events easier to distinguish.
With this change, relaxed mode is no longer needed, which enables
testing for proper destruction under MSVC, and under any other compiler
that generates code calling extra constructors, or optimizes away any
constructors. GCC/clang are used as the baseline for move
constructors; the tests are adapted to allow more move constructors to
be evoked (but other types are constructors much have matching counts).
This commit also disables output buffering of tests, as the buffering
sometimes results in C++ output ending up in the middle of python
output (or vice versa), depending on the OS/python version.
2016-08-07 17:05:26 +00:00
|
|
|
A(int v) : v(v) { print_created(this, v); }
|
|
|
|
~A() { print_destroyed(this); }
|
|
|
|
A(const A&) { print_copy_created(this); }
|
|
|
|
A& operator=(const A ©) { print_copy_assigned(this); v = copy.v; return *this; }
|
2015-07-05 18:05:44 +00:00
|
|
|
std::string toString() { return "A[" + std::to_string(v) + "]"; }
|
|
|
|
private:
|
|
|
|
int v;
|
|
|
|
};
|
|
|
|
|
|
|
|
class B {
|
|
|
|
public:
|
Improve constructor/destructor tracking
This commit rewrites the examples that look for constructor/destructor
calls to do so via static variable tracking rather than output parsing.
The added ConstructorStats class provides methods to keep track of
constructors and destructors, number of default/copy/move constructors,
and number of copy/move assignments. It also provides a mechanism for
storing values (e.g. for value construction), and then allows all of
this to be checked at the end of a test by getting the statistics for a
C++ (or python mapping) class.
By not relying on the precise pattern of constructions/destructions,
but rather simply ensuring that every construction is matched with a
destruction on the same object, we ensure that everything that gets
created also gets destroyed as expected.
This replaces all of the various "std::cout << whatever" code in
constructors/destructors with
`print_created(this)`/`print_destroyed(this)`/etc. functions which
provide similar output, but now has a unified format across the
different examples, including a new ### prefix that makes mixed example
output and lifecycle events easier to distinguish.
With this change, relaxed mode is no longer needed, which enables
testing for proper destruction under MSVC, and under any other compiler
that generates code calling extra constructors, or optimizes away any
constructors. GCC/clang are used as the baseline for move
constructors; the tests are adapted to allow more move constructors to
be evoked (but other types are constructors much have matching counts).
This commit also disables output buffering of tests, as the buffering
sometimes results in C++ output ending up in the middle of python
output (or vice versa), depending on the OS/python version.
2016-08-07 17:05:26 +00:00
|
|
|
B() { print_default_created(this); }
|
|
|
|
~B() { print_destroyed(this); }
|
|
|
|
B(const B&) { print_copy_created(this); }
|
|
|
|
B& operator=(const B ©) { print_copy_assigned(this); a1 = copy.a1; a2 = copy.a2; return *this; }
|
2015-07-05 18:05:44 +00:00
|
|
|
A &get_a1() { return a1; }
|
|
|
|
A &get_a2() { return a2; }
|
|
|
|
|
|
|
|
A a1{1};
|
|
|
|
A a2{2};
|
|
|
|
};
|
|
|
|
|
2016-09-03 18:54:22 +00:00
|
|
|
test_initializer modules([](py::module &m) {
|
2015-07-05 18:05:44 +00:00
|
|
|
py::module m_sub = m.def_submodule("submodule");
|
|
|
|
m_sub.def("submodule_func", &submodule_func);
|
|
|
|
|
|
|
|
py::class_<A>(m_sub, "A")
|
|
|
|
.def(py::init<int>())
|
|
|
|
.def("__repr__", &A::toString);
|
|
|
|
|
|
|
|
py::class_<B>(m_sub, "B")
|
|
|
|
.def(py::init<>())
|
|
|
|
.def("get_a1", &B::get_a1, "Return the internal A 1", py::return_value_policy::reference_internal)
|
|
|
|
.def("get_a2", &B::get_a2, "Return the internal A 2", py::return_value_policy::reference_internal)
|
|
|
|
.def_readwrite("a1", &B::a1) // def_readonly uses an internal reference return policy by default
|
|
|
|
.def_readwrite("a2", &B::a2);
|
2015-10-13 21:44:25 +00:00
|
|
|
|
|
|
|
m.attr("OD") = py::module::import("collections").attr("OrderedDict");
|
2017-06-07 14:52:50 +00:00
|
|
|
|
|
|
|
// Registering two things with the same name
|
|
|
|
m.def("duplicate_registration", []() {
|
|
|
|
class Dupe1 { };
|
|
|
|
class Dupe2 { };
|
|
|
|
class Dupe3 { };
|
|
|
|
class DupeException { };
|
|
|
|
|
|
|
|
auto dm = py::module("dummy");
|
|
|
|
auto failures = py::list();
|
|
|
|
|
|
|
|
py::class_<Dupe1>(dm, "Dupe1");
|
|
|
|
py::class_<Dupe2>(dm, "Dupe2");
|
|
|
|
dm.def("dupe1_factory", []() { return Dupe1(); });
|
|
|
|
py::exception<DupeException>(dm, "DupeException");
|
|
|
|
|
|
|
|
try {
|
|
|
|
py::class_<Dupe1>(dm, "Dupe1");
|
|
|
|
failures.append("Dupe1 class");
|
|
|
|
} catch (std::runtime_error &) {}
|
|
|
|
try {
|
|
|
|
dm.def("Dupe1", []() { return Dupe1(); });
|
|
|
|
failures.append("Dupe1 function");
|
|
|
|
} catch (std::runtime_error &) {}
|
|
|
|
try {
|
|
|
|
py::class_<Dupe3>(dm, "dupe1_factory");
|
|
|
|
failures.append("dupe1_factory");
|
|
|
|
} catch (std::runtime_error &) {}
|
|
|
|
try {
|
|
|
|
py::exception<Dupe3>(dm, "Dupe2");
|
|
|
|
failures.append("Dupe2");
|
|
|
|
} catch (std::runtime_error &) {}
|
|
|
|
try {
|
|
|
|
dm.def("DupeException", []() { return 30; });
|
|
|
|
failures.append("DupeException1");
|
|
|
|
} catch (std::runtime_error &) {}
|
|
|
|
try {
|
|
|
|
py::class_<DupeException>(dm, "DupeException");
|
|
|
|
failures.append("DupeException2");
|
|
|
|
} catch (std::runtime_error &) {}
|
|
|
|
|
|
|
|
return failures;
|
|
|
|
});
|
2016-09-03 18:54:22 +00:00
|
|
|
});
|